pvary commented on code in PR #16961:
URL: https://github.com/apache/iceberg/pull/16961#discussion_r3528857465


##########
format/index.md:
##########
@@ -0,0 +1,309 @@
+---
+title: "Index Spec"
+---
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements.  See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -->
+
+# Iceberg Index Specification
+
+## Background and Motivation
+
+Indexes enable query engines to locate relevant rows without scanning entire 
datasets.
+They can accelerate point lookups, range predicates, and other retrieval 
patterns
+while preserving Iceberg's table format, snapshot isolation, and 
interoperability.
+
+Indexes are optional. Engines may choose to create, maintain, consume, or 
ignore them.
+
+## Goals
+
+- Define a portable metadata format for indexes
+- Provide a common storage architecture for index data
+- Expose indexes as catalog-managed objects
+- Allow indexes to be operated independently from source table metadata
+- Enable index sharing across engines
+- Provide a framework for defining new index types and transform functions
+
+## Overview
+
+Indexes are stored as a collection of files with some Iceberg table like 
semantics. At a high level they consist of a tracking file (similar to a root 
manifest file) which contains listings for a defined set of leaf files (similar 
to data files.) Leaf files store an ordered set of rows, each containing at 
least a key, the path of the Iceberg table data file, and the position within 
that file where the row for that key is stored. The organization of leaf files 
is defined by an Index Transform Function which varies based on the type of 
index. This structure is recorded in an Index metadata.json file which contains 
a set of snapshots, each of which points to a single tracking file mapping to 
the complete state of an Iceberg table at a given Iceberg table snapshot.

Review Comment:
   ```suggestion
   Indexes are stored as a collection of files with some Iceberg table like 
semantics. At a high level they consist of a tracking file (similar to a root 
manifest file) which contains listings for a defined set of leaf files (similar 
to data files). Leaf files store an ordered set of rows, each containing at 
least a key, the path of the Iceberg table data file, and the position within 
that file where the row for that key is stored. The organization of leaf files 
is defined by an Index Transform Function which varies based on the type of 
index. This structure is recorded in an Index metadata.json file which contains 
a set of snapshots, each of which points to a single tracking file mapping to 
the complete state of an Iceberg table at a given Iceberg table snapshot.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to