Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
793abb9
Add an example of embedding indexes inside a parquet file
zhuqi-lucas Jun 13, 2025
1f480ee
Add page image
zhuqi-lucas Jun 13, 2025
2a0ecac
Add prune file example
zhuqi-lucas Jun 13, 2025
4e61d0e
Fix clippy
zhuqi-lucas Jun 13, 2025
a8da658
polish code
zhuqi-lucas Jun 13, 2025
c1ab4b9
Fmt
zhuqi-lucas Jun 13, 2025
baf0311
address comments
zhuqi-lucas Jun 13, 2025
18e7028
Add debug
zhuqi-lucas Jun 13, 2025
66dc5e4
Add new example, but it will fail with page index
zhuqi-lucas Jun 14, 2025
eb9b62e
add debug
zhuqi-lucas Jun 14, 2025
310576e
add debug
zhuqi-lucas Jun 14, 2025
fbeecfe
polish
zhuqi-lucas Jun 15, 2025
88fc6a6
debug
zhuqi-lucas Jun 15, 2025
32abcb9
Using low level API to support
zhuqi-lucas Jun 18, 2025
284510c
polish
zhuqi-lucas Jun 18, 2025
0410bd8
fix
zhuqi-lucas Jun 18, 2025
56ad7f6
Merge remote-tracking branch 'upstream/main' into embedding_indexes
zhuqi-lucas Jun 18, 2025
12ce9c2
merge
zhuqi-lucas Jun 18, 2025
0c093ac
fix
zhuqi-lucas Jun 18, 2025
a789084
Merge remote-tracking branch 'upstream/main' into embedding_indexes
zhuqi-lucas Jun 18, 2025
9c75814
complte solution
zhuqi-lucas Jun 19, 2025
13c1706
Merge remote-tracking branch 'upstream/main' into embedding_indexes
zhuqi-lucas Jun 19, 2025
06d6f08
polish comments
zhuqi-lucas Jun 19, 2025
6bd7d3e
adjust image
zhuqi-lucas Jun 19, 2025
23d7125
add comments part 1
zhuqi-lucas Jun 20, 2025
13b74ac
pin to new arrow-rs
zhuqi-lucas Jun 21, 2025
1b0501c
pin to new arrow-rs
zhuqi-lucas Jun 21, 2025
c344843
add comments part 2
zhuqi-lucas Jun 21, 2025
b0dc1b4
merge upstream
zhuqi-lucas Jul 1, 2025
f848a11
Merge remote-tracking branch 'upstream/main' into embedding_indexes
zhuqi-lucas Jul 1, 2025
2c5c362
merge upstream
zhuqi-lucas Jul 1, 2025
f808980
polish code
zhuqi-lucas Jul 1, 2025
a76b5c6
Rename example and add it to the list
alamb Jul 1, 2025
e7389ea
Merge remote-tracking branch 'apache/main' into embedding_indexes
alamb Jul 1, 2025
13ac3bb
Work on comments
alamb Jul 1, 2025
d7d4324
More documentation
alamb Jul 2, 2025
54a9e61
Documentation obession, encapsulate example
alamb Jul 2, 2025
95c0d59
Update datafusion-examples/examples/parquet_embedded_index.rs
alamb Jul 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions datafusion-examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ cargo run --example dataframe
- [`flight_sql_server.rs`](examples/flight/flight_sql_server.rs): Run DataFusion as a standalone process and execute SQL queries from JDBC clients
- [`function_factory.rs`](examples/function_factory.rs): Register `CREATE FUNCTION` handler to implement SQL macros
- [`optimizer_rule.rs`](examples/optimizer_rule.rs): Use a custom OptimizerRule to replace certain predicates
- [`parquet_embedded_index.rs`](examples/parquet_embedded_index.rs): Store a custom index inside a Parquet file and use it to speed up queries
- [`parquet_encrypted.rs`](examples/parquet_encrypted.rs): Read and write encrypted Parquet files using DataFusion
- [`parquet_index.rs`](examples/parquet_index.rs): Create an secondary index over several parquet files and use it to speed up queries
- [`parquet_exec_visitor.rs`](examples/parquet_exec_visitor.rs): Extract statistics by visiting an ExecutionPlan after execution
Expand Down
Loading