Skip to content

v0.0.87

Choose a tag to compare

@bakwc bakwc released this 29 Jun 18:38
· 35 commits to master since this release

New Features

🎉 Customizable PARTITION BY Support for ClickHouse Tables

  • New Configuration Option: Added partition_bys config section with database/table filtering capabilities (similar to existing indexes configuration)
  • Custom Expressions: Override the default intDiv(id, 4294967) partitioning with user-defined partition logic

Configuration Example

partition_bys:
  - databases: '*'
    tables: ['orders', 'user_events']
    partition_by: 'toYYYYMM(created_at)'
  - databases: ['analytics']
    tables: ['*']
    partition_by: 'toYYYYMMDD(event_date)'

Full Changelog: v0.0.86...v0.0.87