Overview
Tables in oleander live inside your privateoleander Iceberg catalog. There are two namespaces:
oleander.default: tables you create, upload, or sync from S3oleander.telemetry: platform-managed tables written automatically as your pipelines run (run_events,traces,logs)
User tables (default namespace)
Tables in oleander.default are yours to create and manage. You can:
- Run a
CREATE TABLEstatement in the lake SQL editor - Upload a parquet file via the upload dialog
- Schedule an S3 sync to automatically import parquet files from your S3 bucket on a daily cadence
- Write via DuckDB import from any external source
Table health and maintenance
Every table inoleander.default shows a health status dot at the end of its row in the catalog tree: green for healthy, amber for warning, red for critical, or grey for unknown - a writer that recorded no snapshot statistics, so there’s nothing to grade. Hover the dot for row and delete-file counts, size, and (when degraded) what’s driving the grade.
The usual cause is delete-file pressure: a CDC sink or streaming writer (Debezium, Kafka Connect, Flink, Fivetran) issues equality or position deletes that accumulate between compactions. A table with heavy delete pressure is routed to Spark for queries rather than DuckDB or Bloom, since applying a large equality-delete anti-join is what makes those queries slow to the point of not returning rather than just slow - explicitly requesting a different engine still runs it there, with a warning, instead of silently overriding your choice.
Click the dot to schedule maintenance - it reads Schedule maintenance on a healthy or ungradeable table and Run maintenance on one that needs it. Maintenance compacts the table on Spark, rewriting data files and clearing the delete files that rewrite strands. Runs can fire once or on a recurring schedule; scheduled maintenance is listed under Maintenance in the lake panel’s Schedules tab, next to scheduled queries and transfers, with pause/resume/delete, per-operation toggles, and run history. Every run also appears on the Pipelines page like any other job.
Telemetry tables (telemetry namespace)
The telemetry namespace is populated automatically. These tables capture everything that flows through oleander’s observability pipeline - you can query them like any other table.