From 06bb1782e4fb64a05f2de54710b81edbb2dd09e4 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 25 Apr 2026 01:30:11 -0700 Subject: [PATCH] docs(parquet-design): unify side-index paths under system-prefix The vector-index and position-delete-bitmap path examples still used the old "/table/_seaweed_index/" form, contradicting the rule (added in 605907f5) that side indexes live outside the table prefix. Update both examples to use the system-prefix/table_uuid/.../identity layout. --- PARQUET_PUSHDOWN_DESIGN.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PARQUET_PUSHDOWN_DESIGN.md b/PARQUET_PUSHDOWN_DESIGN.md index b251b8f02..3ab3f5c0c 100644 --- a/PARQUET_PUSHDOWN_DESIGN.md +++ b/PARQUET_PUSHDOWN_DESIGN.md @@ -306,7 +306,7 @@ Possible index types: Index layout: ```text -/table/_seaweed_index/.../vector.embedding.ivf/ +//...//vector.embedding.ivf/ centroids list_000001 list_000002 @@ -571,7 +571,7 @@ Iceberg uses two delete mechanisms, with different implications for indexing: Position deletes name `(data_file, row_position)` pairs. They can be merged into a per-data-file roaring bitmap and cached as a side index: ```text -/table/_seaweed_index/.../deletes.position.bitmap +//...//deletes.position.bitmap ``` Pushdown subtracts this bitmap from candidate row sets before returning results.