-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed as not planned
Closed as not planned
Copy link
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge?
The large number of small examples in DataFusion leads to multiple problems:
- Makes it harder to find the relevant examples
- Unnecessarily large amounts of disk space on a full build (each example binary takes 100+ MB)
- Larger
cargo ttime (each binary must be linked / created)
Thus I think the fewer examples we have the
- easier it will be to find the relevant examples
- faster our dev experience will be
Describe the solution you'd like
I would like to consolidate the common SQL based examples and common dataframe based query examples
- Consolidate the contents of https://github.com/apache/datafusion/blob/main/datafusion-examples/examples/regexp.rs into the following two files, as appropriate:
- SQL queries: https://github.com/apache/datafusion/blob/main/datafusion-examples/examples/sql_query.rs
- Dataframe: https://github.com/apache/datafusion/blob/main/datafusion-examples/examples/dataframe.rs
Then update the readme page:
Describe alternatives you've considered
No response
Additional context
I think this is a good first issue as the task is straightforward and doesn't require deep understanding of the DataFusion codebase
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request