Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ nav:
- NPY Codec: reference/specs/npy-codec.md
- Data Operations:
- Data Manipulation: reference/specs/data-manipulation.md
- Staged Insert: reference/specs/staged-insert.md
- AutoPopulate: reference/specs/autopopulate.md
- Job Metadata: reference/specs/job-metadata.md
- Object Store Configuration: reference/specs/object-store-configuration.md
Expand Down
2 changes: 1 addition & 1 deletion src/reference/specs/data-manipulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Equivalent to `insert((row,), **kwargs)`.

### 2.9 Staged Insert for Large Objects

For large objects (Zarr arrays, HDF5 files), use staged insert to write directly to object storage:
For large objects (Zarr arrays, HDF5 files), use staged insert to write directly to object storage. The lifecycle, codec protocol, atomicity model, and codec compatibility matrix are specified in detail in [Staged Insert Specification](staged-insert.md).

```python
with table.staged_insert1 as staged:
Expand Down
Loading
Loading