Marketplace Jobs
Latest Versions
Name | Image | Version | Link |
---|---|---|---|
Data Compaction | iomete_data_compaction | 1.2.11 | Open ↗ |
File Streaming | iomete_file_streaming | 0.3.0 | Open ↗ |
Catalog Sync | iom-catalog-sync | 4.3.3 | Open ↗ |
MySQL Sync | iomete_mysql_sync | 3.0.0 | Open ↗ |
Kafka Iceberg Stream | kafka-iceberg-stream | 1.2.0 | Open ↗ |
Recent Releases
October 21, 2025
Data Compaction Job - v1.2.11
🚀 New Features
- Time-based Snapshot Expiration:
-
Added support to remove Iceberg snapshots older than a set number of days using
expire_snapshot.older_than_days
. -
Works together with
retain_last
. If both are set, we keep snapshots that match either rule. We always keep at least 1 snapshot. -
Config examples:
// Remove snapshots older than 7 days (keep at least 1)
expire_snapshot: { older_than_days: 7 }
// Keep last 3 OR anything newer than 7 days (whichever is more)
expire_snapshot: { retain_last: 3, older_than_days: 7 }
// Table-specific override
table_overrides: {
production.critical_table: {
expire_snapshot: { retain_last: 10, older_than_days: 30 }
}
} -
Retention rules:
Configuration Behavior None specified Keeps 1 snapshot (default) Only retain_last
Keeps the last N snapshots Only older_than_days
Removes snapshots older than N days (minimum 1 snapshot always kept) Both specified Keeps snapshots matching EITHER condition (maximum retention)
-
⚡ Improvements
- Selective Operation Execution: Added support for fine-grained control over compaction operations through an
enabled
flag at both global and table-specific levels. You can now selectively enable or disable specific operations.
🐛 Bug Fixes
- Table Name Resolution:
- Fixed an issue where table names provided without a database prefix (e.g.,
my_table
instead ofdb.my_table
) intable_include
,table_exclude
, ortable_overrides
would incorrectly run on the entire database. - The job now correctly resolves such tables using the
databases
parameter, ensuring targeted execution.
- Fixed an issue where table names provided without a database prefix (e.g.,
- Rewrite Data Files with WHERE Filter:
- Fixed an issue where the
where
filter failed due to incorrect string handling. - The job now correctly wraps SQL expressions, allowing compaction with both static and dynamic date filters.
- Config examples:
rewrite_data_files: {
// Static date filter
where: "date >= '2025-01-01'"
// Dynamic filters (recommended - no manual date updates needed)
// where: "date <= CURRENT_DATE - 30" // Data older than 30 days
// where: "event_time <= CURRENT_TIMESTAMP - INTERVAL 1 DAY" // Data older than 1 day
}
- Fixed an issue where the