Skip to content
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

Loading data to FS offline - MemoryError #3468

Closed
doxenix opened this issue Jan 28, 2023 · 1 comment
Closed

Loading data to FS offline - MemoryError #3468

doxenix opened this issue Jan 28, 2023 · 1 comment
Labels
kind/bug priority/p2 wontfix This will not be worked on

Comments

@doxenix
Copy link

doxenix commented Jan 28, 2023

Machine: Ubuntu 20.04 LTS, python3.8, feast0.28, 16 GB RAM

I’m trying to load data to my Feature Store offline locally from .parquet file stored on my computer. The FileSource is only one – my one .parquet file.
I’m using this code to load data:

offline_feature_data = store.get_historical_features(
   entity_df=entity_df,
   features=features_bucket
).to_df()

However I got MemoryError: Unable to allocate 22.4 GiB for an array with shape (30, 100000000) and data type int64
My dataset: 66 columns x 10 000 rows
First of all why I got wired dimension of array in my message error - (30, 100000000)?
After I reduced data to 66 columns x 1000 rows, loading fs offline is ok.
In pandas, I’m able to work with much larger datasets without any memory problem on the same machine.
Does FEAST are not able to deal with larger datasets? What is the limit?
Anyway, 66 columns x 10 000 rows are still not a big data…

@stale
Copy link

stale bot commented Jun 10, 2023

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix This will not be worked on label Jun 10, 2023
@stale stale bot closed this as completed Sep 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug priority/p2 wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

1 participant