Support for streaming/batch processing? #332
Replies: 3 comments
-
Hi @mcrumiller , thank you for the suggestion! Indeed, it is desirable to support |
Beta Was this translation helpful? Give feedback.
-
Continuing on the with the same discussion, also I would like to ask what are the alternates for utilising this parameter ? |
Beta Was this translation helpful? Give feedback.
-
there are soo many ways to handle a dataframe via streaming once "local" but fetching from a db is still a "load everything into memory" type affair which uses a lot of ram the larger the datasets. anyone found solutions for it? for anyone that is curious... i sort of came up with a lame "solution" for sqlalchemy connecting to oracle. this isn't the right place for it since its not using connectorx (i came here looking for streaming options on read_sql). the idea is to stream in and then for each batch write out a temp file and at the end combine them into the outputed file
|
Beta Was this translation helpful? Give feedback.
-
In pandas, batch-processing of a resultset is possible via chunking:
Is there something similar in connector-x which would enable us to work on a large resultset in batches?
Beta Was this translation helpful? Give feedback.
All reactions