Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a1bca9a
Update README.md
tonyalaribe Apr 15, 2025
3ff06fe
add support for date based partitioning
tonyalaribe Apr 15, 2025
78fe58d
pin datafusion-postgres version
tonyalaribe Apr 15, 2025
ca5c0e0
example .env
tonyalaribe Apr 15, 2025
2af695d
add usage examples
tonyalaribe Apr 16, 2025
3243f9e
fix schema
tonyalaribe Apr 19, 2025
eef2360
implement a batch queue and make insert query handling async
tonyalaribe Apr 19, 2025
801152f
checkpoint vacuum
tonyalaribe May 17, 2025
656ab93
no dry run on vacuum
tonyalaribe May 18, 2025
50ab97d
implement optimize
tonyalaribe May 18, 2025
4b8f472
schedule vacuum and optimize at an interval
tonyalaribe May 18, 2025
1a8796c
compact and optimize immediately
tonyalaribe May 18, 2025
9065dde
optimize and vacuum
tonyalaribe May 18, 2025
905bfc3
zstd level 6
tonyalaribe May 21, 2025
2c830a0
feat : object store foundation laid
May 30, 2025
30bea44
a file based implementation
Jun 1, 2025
df05516
a file based implementation
Jun 1, 2025
2315692
fininishing up
Jun 2, 2025
f521af1
refactored hybrid cache
Jun 5, 2025
3c607da
reduced errors
Jun 7, 2025
5a3131a
finishing up
Jun 8, 2025
8e6185e
completed
Jun 9, 2025
1956e91
refactored list
Jun 9, 2025
d1e625f
formatting
Jun 9, 2025
94c01e8
formatting
Jun 9, 2025
059f774
tests passed
Jun 15, 2025
6edcef0
fix : versioning errors
Jun 16, 2025
c327111
fix : arrow feature issues
Jun 16, 2025
b10f1b4
fix : revert version changes
Jun 16, 2025
d45569d
fix : revert version changes
Jun 16, 2025
c8203d3
fix : revert version changes
Jun 16, 2025
6ad00f2
fix : revert version changes
Jun 16, 2025
364a465
extra version changes
Jun 28, 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
17 changes: 17 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
AWS_REGION=
AWS_S3_BUCKET=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
PGWIRE_PORT=5432
PORT=80
TIMEFUSION_TABLE_PREFIX=timefusion

# Batch insert configuration
# Interval between batch inserts in milliseconds (default: 1000)
BATCH_INTERVAL_MS=1000
# Maximum number of rows to process in a single batch (default: 1000)
MAX_BATCH_SIZE=1000
# Set to "true" to enable batching queue (default: false = direct insertion)
ENABLE_BATCH_QUEUE=false
# Maximum number of concurrent PostgreSQL connections (default: 100)
MAX_PG_CONNECTIONS=100
Loading
Loading