Skip to content
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
b3634fb
start dynamic filters
adriangb Aug 17, 2025
5a2d721
start blog post
adriangb Aug 19, 2025
0e7ae50
update image
adriangb Aug 19, 2025
ccc195d
finish first draft
adriangb Aug 19, 2025
e1904e8
cleanup
adriangb Aug 19, 2025
bb0c116
fix typos
adriangb Aug 21, 2025
2da25de
Update content/blog/2025-08-16-dynamic-filters.md
adriangb Aug 21, 2025
33fb6dd
Update content/blog/2025-08-16-dynamic-filters.md
adriangb Aug 21, 2025
48a343a
Update content/blog/2025-08-16-dynamic-filters.md
adriangb Aug 21, 2025
7849385
Update date + titl
alamb Aug 22, 2025
57484b4
Render markdown tables
alamb Aug 22, 2025
c23d62f
update
alamb Aug 22, 2025
3f1941d
Fix images
alamb Aug 22, 2025
367d77b
Add about author, about DataFusion sections, correct reference
alamb Aug 22, 2025
44c82ca
Start filling out some more background
alamb Aug 22, 2025
85b5cac
more
alamb Aug 22, 2025
c6dd733
Update date
alamb Sep 5, 2025
9c80a36
Take a pass at background / content
alamb Sep 5, 2025
8abc822
Take a pass at background / content
alamb Sep 5, 2025
04b58ba
More content obsession
alamb Sep 5, 2025
77f2582
footnotes
alamb Sep 5, 2025
15521d6
update
alamb Sep 5, 2025
d7ff105
AI proofreading
alamb Sep 5, 2025
ebffcac
tweak
alamb Sep 5, 2025
34e23a0
Work on join section
alamb Sep 8, 2025
3eb3b1e
add acknowledgements
alamb Sep 8, 2025
ddaf336
update future work
alamb Sep 8, 2025
249436d
complete
alamb Sep 8, 2025
a960eb6
proofread
alamb Sep 8, 2025
bc0bcd5
proofread
alamb Sep 8, 2025
e4ed7f5
proofread
alamb Sep 8, 2025
3e15d0a
proofread
alamb Sep 8, 2025
585ca17
cleanups, thanks claude
alamb Sep 8, 2025
beacd15
tweaks
alamb Sep 9, 2025
8615af9
Update results chart
alamb Sep 9, 2025
73efd75
Update join performance figure
alamb Sep 9, 2025
05be777
tweak capitalization
alamb Sep 9, 2025
c6bd806
clarify hash join section and add bullet points
alamb Sep 9, 2025
e560c2c
Add djanderson to aknowledgemnts
alamb Sep 9, 2025
a4a779c
clarify join selectivity comment
alamb Sep 10, 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
642 changes: 642 additions & 0 deletions content/blog/2025-09-10-dynamic-filters.md

Large diffs are not rendered by default.

94 changes: 94 additions & 0 deletions content/images/dynamic-filters/execution-time.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,9 @@
'metadata': False,
'elements': False,
'permalinks': False,
'tables': False,
'tables': True,
'headings': False,


'toc': False,

'debug': False,
}

Expand All @@ -68,6 +65,7 @@
MARKDOWN = {
'extension_configs': {
'markdown.extensions.fenced_code': {},
'markdown.extensions.tables': {},
},
'output_format': 'html5',
}