anshul98ks123 commented on PR #16191: URL: https://github.com/apache/pinot/pull/16191#issuecomment-3001794980
it's similar to H3 Index https://docs.pinot.apache.org/basics/indexing/geospatial-support#how-to-use-geoindex for that as well, i see structure is similar in old, we use indexType and properties in new, we use the indexes so we should be cleaning fieldConfig.properties as well along with indexes after moving to new format ``` "fieldConfigList": [ { "name": "studentID", "encodingType": "DICTIONARY", "indexTypes": [], "indexes": { "vector": { "version": 1, "properties": { "vectorIndexType": "HNSW", "vectorDimension": "1536", "vectorDistanceFunction": "COSINE", "version": "1" }, "vectorDistanceFunction": "COSINE", "vectorIndexType": "HNSW", "vectorDimension": 1536, "disabled": false } }, "properties": null, "tierOverwrites": null } ], ``` just pushed a commit to do this -- 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]
