(INot sure if this is the best place to post my question. Please direct me to a better location if one exists!)
So I have a large XYZ point dataset stored in a geopandas dataframe that I'd like to persist to permanent storage and query from there. The dataset has about 50 million records and occupies about 10 GB when exported to sqlite (unfortunately it's too big to export to a single db file without my system running out of memory). The data will also need to be spatially indexed and I will be running queries against the entire dataset at once.
How would you accomplish something like this? Oracle SDE is available, but I'm looking for alternatives even if they sacrifice performance somewhat...mainly to avoid the bureaucracy associated with anything that involves servers at my organization. If I can store this on my C drive that would be perfect! Using ArcGIS Pro 2.9.
BTW - I'm finding that GeoPandas is easier to work with than arcpy for the tasks I'll be doing using this dataset, so hopefully whatever storage I ultimately use is reasonably compatible with pandas.
Thanks!