Loading filters #995
Replies: 2 comments 3 replies
-
I would like the ability to automatically filter data after reading or even as part of reading. Some random questions to better understand why this would be more useful than what is already available.
|
Beta Was this translation helpful? Give feedback.
-
Hi @saulpw and @geekscrapy Has there been any more discussion on this? Having more control of what is loaded into the limited available memory seems important when working with large data sources. Here are some quick takes: I like the idea of having two types of filters, the Python and the native, which default to Python for loaders that don't have a backend that supports filtering. Native filters would use whatever syntax is native to the backend, like the SQL For the native filter it is seems like it would be to be able helpful to handle as much of the range of filtering that the backend supports. It seems like it should be able to handle arbtrary queries too. How would you limit input from a Spatialite database or graphql source? Or use the full range of where clauses with subqueries, special functions, or even |
Beta Was this translation helpful? Give feedback.
-
I've thought a few times now that it would be awesome to have some kind of filtering capability built in at two key points (below). This would allow the user to filter rows from the source and allow some flexibility around sheet reloading.
The places where I think filtering could be implemented:
This could have quite a few uses, firstly the SQL loader could filter based on an SQL statement, calls to APIs could be filtered. This could enable faster loading of files where you know a lot of content is not required.
Beta Was this translation helpful? Give feedback.
All reactions