Skip to main content

BLOB Storage

Primary-key tables can store top-level BLOB, ARRAY<BLOB>, and MAP<K, BLOB> payloads in table-managed files. Unlike the positional BLOB files used by append tables, managed BLOB payloads have stable descriptors. MergeTree sorting, deduplication, and compaction can therefore reorder or remove rows without rewriting the surviving payload bytes.

This mode stores:

  • a serialized BlobDescriptor for each scalar value, non-null array element, or non-null map value;
  • the payload in an immutable .managed.blob pack; and
  • one .blobref sidecar for every data file, containing the exact managed packs referenced by that file.

For general BLOB concepts and read options, see BLOB Storage.

Create a Table

Use blob-field to mark scalar, array, or map fields whose payloads should be stored in managed BLOB files. blob-descriptor-field and blob-view-field are inline forms: their serialized descriptor or view metadata stays in the normal data file and is not materialized into a managed BLOB file.

The following example accepts both a scalar value and an ordered array of values:

CREATE TABLE media (
id BIGINT,
name STRING,
content BYTES COMMENT '__BLOB_FIELD; media content',
attachments ARRAY<BYTES> COMMENT '__BLOB_FIELD; related files',
renditions MAP<STRING, BYTES> COMMENT '__BLOB_FIELD; named renditions',
PRIMARY KEY (id) NOT ENFORCED
) WITH (
'merge-engine' = 'deduplicate',
'changelog-producer' = 'none',
'blob.target-file-size' = '128 mb'
);

INSERT INTO media VALUES
(1, 'logo', X'89504E470D0A1A0A', ARRAY[X'25504446', NULL], MAP['thumbnail', X'89504E47']);

For a primary-key table, every non-null Blob value in a blob-field is externalized before it enters the MergeTree sort buffer. Its payload is copied into a new table-managed BLOB pack regardless of the value's backing representation. Reads return the payload bytes by default; the existing blob-as-descriptor read option can expose descriptors instead. A blob-descriptor-field is written inline to the normal data file and does not participate in managed storage or its reference sidecars.

When descriptor-backed BLOBs are copied to another table, the target normally rebuilds a FileIO from its catalog context. For a managed blob-field, this is a copy flow: the target writes the payload into its own BLOB storage and does not retain the source descriptor. If the source table uses table-scoped credentials, configure blob-descriptor.source-table on the target so that the source table's FileIO is used to materialize the payload:

ALTER TABLE media_copy SET TBLPROPERTIES (
'blob-descriptor.source-table' = 'db.media$branch_rt'
);

Use blob-descriptor-field to retain literal descriptors, or blob-view-field to retain a logical, no-copy reference to an upstream row. Other blob-descriptor.* filesystem options remain sufficient when the source storage can be accessed with static configuration; source-table is for table-scoped FileIO credentials.

The source table must belong to the same catalog. A branch suffix is supported. Target tables without a catalog loader, including external tables in REST catalogs, are not supported. When this option is set, it takes precedence over other blob-descriptor.* options; remove it before switching back to descriptor-specific filesystem configuration.

ARRAY<BLOB> is externalized element by element. Every non-null Blob element is copied into managed storage, while array order, a null array, and null elements are preserved. An empty array writes no payload. ARRAY<BLOB> uses blob-field; blob-descriptor-field and blob-view-field remain scalar-only declarations.

MAP<K, BLOB> is externalized value by value. Keys remain in the normal data file and every non-null value is replaced with a descriptor to managed storage. A null map, an empty map, and null values are preserved. Supported key types are the integer family, BOOLEAN, DECIMAL, DATE, TIME, BINARY, VARBINARY (BYTES), CHAR, and VARCHAR; blob-descriptor-field and blob-view-field remain scalar-only declarations.

blob.target-file-size controls when a writer rolls to a new managed payload pack. A pack can contain payloads from multiple rows, and a row descriptor records its URI, offset, and length.

note

On append tables, blob-descriptor-field is descriptor-only storage and non-null values must provide a descriptor. Append-table blob-field storage still requires row tracking and data evolution. The managed raw-byte externalization described here is specific to supported primary-key tables.

Requirements and Limitations

Primary-key managed BLOB storage has the following requirements:

ItemRequirement
Managed BLOB declarationBLOB, ARRAY<BLOB>, and MAP<K, BLOB> use blob-field; blob-descriptor-field remains inline
Merge enginededuplicate, partial-update, or first-row
Changelog producernone only
Key usageA managed BLOB column cannot be a primary, partition, bucket, or sequence key
External data pathsdata-file.external-paths is not supported
PK clustering overridepk-clustering-override is not supported

row-tracking.enabled and data-evolution.enabled are not required for this primary-key mode.

Partial-update with BLOB fields

Primary-key tables may use merge-engine=partial-update with scalar blob-descriptor-field, managed blob-field (BLOB, ARRAY<BLOB>, or MAP<K, BLOB>), and scalar blob-view-field:

ModePartial-updateChangelogNotes
Scalar blob-descriptor-fieldSupportedSame as other PU tablesInline descriptor bytes
blob-field (managed scalar, array, or map)Supportedchangelog-producer=none onlyPayload in .managed.blob
Scalar blob-view-fieldSupportedSame as other PU tablesResolve on read via catalog
ARRAY / MAP descriptor or viewNot supportedScalar only

The ordering fields on the left-hand side of fields.<ordering-field[,ordering-field...]>.sequence-group cannot contain BLOB values. This includes BLOB, ARRAY<BLOB>, and MAP<K, BLOB> fields in any storage mode. BLOB fields are supported on the right-hand side as fields protected by the sequence group.

CREATE TABLE media_meta (
id BIGINT,
name STRING,
content BYTES COMMENT '__BLOB_DESCRIPTOR_FIELD; external video',
ts INT,
PRIMARY KEY (id) NOT ENFORCED
) WITH (
'merge-engine' = 'partial-update',
'fields.ts.sequence-group' = 'name,content'
);

For managed BLOB columns, set changelog-producer=none (same as deduplicate managed BLOB tables). Managed BLOB retract records do not retain payload values. When a managed BLOB field is protected by a sequence group and retract records are processed, it therefore cannot use an aggregate function that depends on the original retract payload. last_value is supported because it always clears the field on retract; other aggregate functions require fields.<field-name>.ignore-retract=true. This restriction does not apply when ignore-delete=true or when the managed BLOB field is not protected by a sequence group.

CREATE TABLE training_chunks (
id BIGINT,
name STRING,
chunk BYTES COMMENT '__BLOB_FIELD; raw training block',
PRIMARY KEY (id) NOT ENFORCED
) WITH (
'merge-engine' = 'partial-update',
'changelog-producer' = 'none',
'blob-field' = 'chunk'
);

Non-null values update the corresponding column; null values do not update the field (standard partial-update semantics). Within a sequence group, a null sequence value skips the entire group. Without aggregate functions, an incoming sequence value that is newer or equal replaces every field in the group, including replacing a BLOB value with null; an older record is ignored. With aggregate functions, every record with a non-null sequence value participates in aggregation or retraction, even when its sequence value is older. For example, last_value clears the field for both newer and older retract records.

Managed BLOB partial updates externalize each non-null scalar BLOB, array element, or map value into a .managed.blob pack. Empty collections and collections containing only null values write no payload. BLOB garbage collection for orphaned packs is not implemented yet; repeated updates can leave unreachable storage until a future collector is available.

blob-view-field columns store serialized view structs inline. Reads resolve upstream blob bytes through the catalog when blob-view.resolve.enabled is true (default). Append upstream tables used by sys.blob_view(...) must enable row-tracking.enabled and data-evolution.enabled.

First-row with BLOB fields

Primary-key tables may use merge-engine=first-row with managed blob-field (BLOB, ARRAY<BLOB>, or MAP<K, BLOB>):

ModeFirst-rowChangelogNotes
blob-field (managed scalar, array, or map)Supportedchangelog-producer=none onlyKeeps the first non-retract row and its managed payload

For managed BLOB columns, set changelog-producer=none. first-row normally also supports the lookup changelog producer, but managed BLOB storage requires none.

first-row keeps the earliest surviving row for the same primary key. Later updates to the same key therefore do not replace an existing managed BLOB payload. This differs from deduplicate, which keeps the latest row.

By default, first-row does not accept DELETE or UPDATE_BEFORE records. Configure ignore-delete=true if your pipeline may emit them.

CREATE TABLE training_chunks (
id BIGINT,
name STRING,
chunk BYTES COMMENT '__BLOB_FIELD; raw training block',
PRIMARY KEY (id) NOT ENFORCED
) WITH (
'merge-engine' = 'first-row',
'changelog-producer' = 'none',
'blob-field' = 'chunk'
);

Managed BLOB Update, Delete, and Compaction

Each incoming non-null scalar BLOB, array element, or map value is written as a new descriptor and payload before merge rules are applied. An update later discarded by partial-update or sequence rules can therefore leave an orphaned payload pack. A delete record does not write a new payload. The merge engine determines the logical final row during reads and compaction. Each data file's .blobref sidecar records managed packs referenced by non-retract key-values in that file, which may include intermediate partial-update payloads before compaction.

Compaction preserves descriptors for surviving values and creates new .blobref sidecars from the compacted output. It does not copy the referenced payload bytes into new .managed.blob packs. This keeps ordinary compaction cost proportional to row metadata instead of BLOB size.

The .blobref file is owned by its data file through DataFileMeta.extraFiles, so it follows the data file through snapshot, tag, branch, rollback, expiration, and deletion lifecycles. Shared .managed.blob packs are deliberately not extra files because more than one retained data file can reference the same pack.

Garbage Collection

Garbage collection of unreferenced .managed.blob packs is not implemented yet. Updates, deletes, compaction, or an ambiguous writer failure can therefore leave payload packs that are no longer reachable from current rows.

The ordinary orphan-file cleaner intentionally preserves all .managed.blob files. This fail-safe behavior prevents it from deleting a payload that is still reachable from a snapshot, tag, branch, or another retained root, but it also means unused BLOB storage can grow until a root-aware BLOB garbage collector is available.

A future collector must compute reachability across all retained roots and treat a missing, corrupt, or unsupported .blobref sidecar as unsafe to delete. An empty, valid sidecar is different from a missing sidecar: it explicitly states that the data file references no managed payload pack.

Reference Metadata

The BLOB reference set is recorded in a data-file-owned .blobref sidecar rather than IndexManifest. BLOB reachability is an exact dependency of one data file, and DataFileMeta.extraFiles already provides the required lifecycle for such metadata. Using IndexManifest would require a new snapshot-level index lifecycle and would be a larger compatibility change.

Each sidecar is immutable, versioned, checksummed, and deterministic. It stores only managed payload identities; descriptor and view fields remain inline and are not added to the managed reference set. Managed pack identity is derived from the descriptor URI and its reserved .managed.blob suffix, so a valid reference is retained even when the pack and the data file are in different directories.