rahil-c commented on code in PR #19317:
URL: https://github.com/apache/hudi/pull/19317#discussion_r3839899410


##########
hudi-common/src/main/avro/HoodieMetadata.avsc:
##########
@@ -554,6 +554,147 @@
                 }
             ],
             "default" : null
+        },
+        {
+            "name": "VectorIndexMetadata",
+            "doc": "Typed metadata records for the MDT-backed IVF + RaBitQ 
vector index.",
+            "type": [
+                "null",
+                {
+                    "type": "record",
+                    "name": "HoodieVectorIndexActiveManifest",
+                    "fields": [
+                        {"name": "indexVersion", "type": "int", "doc": 
"Persisted vector-index format version."},
+                        {"name": "activeGeneration", "type": ["null", "int"], 
"default": null,
+                         "doc": "Reader-visible generation ordinal, or null 
before first activation."}
+                    ]
+                },
+                {
+                    "type": "record",
+                    "name": "HoodieVectorIndexManifest",
+                    "fields": [
+                        {"name": "indexVersion", "type": "int"},
+                        {"name": "generationId", "type": "string", "doc": 
"Creating Hudi instant + optional human tag. The gen ordinal lives in the 
key."},
+                        {"name": "state", "type": "string", "doc": "BUILDING | 
ACTIVE | RETIRED. Readers serve only the generation referenced by the singleton 
active manifest."},
+                        {"name": "dim", "type": "int"},

Review Comment:
   is dim here dimension?



-- 
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]

Reply via email to