-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does append() work on OSX? #48
Comments
I am having the same issue - collection.append() is not appending any data. these are my environment details: MacOS Catalina 10.15.7 When i first tried to run my app with pystore I got an error saying I need to install fsspec and to run the following command: |
further update - I realised I hadn't set my dataframe timestamp column to a datetime type and hadnt either set it as the index. Once I had done this: df['time-stamp'] = pd.to_datetime(df['time-stamp']) the append works fine. My hunch is that it was using a different column as index which happened to be the same value for each entry so was regarding the appended item as a duplicate. |
I had similar issues as jen-co and the advice helped! I converted the data types to ensure they match the existing pystore dtypes. I also changed the index to prevent duplicates (I am not using a specified index column) from being dropped and was able to get the append function to run, but had some serious issues with the result. For other people having similar issues:
Couple questions for you @jen-co : What did you experience for the run time of the append on a large dataset? Also, what was the size/format of the parquet files that it updated? For me, the runtime was very long compared to other pystore functionality. It also used way more RAM than I was expecting. Also, it squeezed all of the data into a single parquet file (which may contribute to slow runtime): Any help is appreciated! |
Has anyone been able to make append() work in a recent release?
Could anyone share with me a set of deps that allow collection.append() to work.
I've been through the various threads on this, but all seem to result in a silent failure.
I also get a lot of deprecation warnings of this sort...
I realise deprecation warnings aren't necessarily a problem, but perhaps they point to some underlying problem with deps.
I haven't included any particular config as I've been through many with varying degrees of error all centered around append() So I'm hoping someone has already trodden this same path more successfully than me :-)
The text was updated successfully, but these errors were encountered: