This is an automated email from the ASF dual-hosted git repository. kishoreg pushed a change to branch h3-index in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
from e0d406f Reformat H3 index config spec (#6398) add 35f1257 Add real-time H3 index reader (#6400) No new revisions were added by this update. Summary of changes: .../org/apache/pinot/core/common/DataSource.java | 2 +- .../realtime/LLRealtimeSegmentDataManager.java | 6 +- .../indexsegment/mutable/MutableSegmentImpl.java | 22 +++++-- .../operator/filter/H3IndexFilterOperator.java | 3 +- .../core/realtime/impl/RealtimeSegmentConfig.java | 42 +++++++++--- .../impl/geospatial/RealtimeH3IndexReader.java | 76 ++++++++++++++++++++++ .../creator/impl/geospatial/H3IndexCreator.java | 9 --- .../segment/index/column/ColumnIndexContainer.java | 4 +- .../index/column/PhysicalColumnIndexContainer.java | 8 +-- .../segment/index/datasource/BaseDataSource.java | 3 +- .../index/datasource/MutableDataSource.java | 2 +- .../{TextIndexReader.java => H3IndexReader.java} | 21 +++--- ...ndexReader.java => ImmutableH3IndexReader.java} | 8 ++- .../virtualcolumn/VirtualColumnIndexContainer.java | 4 +- .../impl/geospatial/RealtimeH3IndexReaderTest.java | 65 ++++++++++++++++++ .../impl/geospatial/H3IndexCreatorTest.java | 4 +- .../meetupRsvp_realtime_table_config.json | 10 +++ .../stream/meetupRsvp/meetupRsvp_schema.json | 2 +- 18 files changed, 236 insertions(+), 55 deletions(-) create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/realtime/impl/geospatial/RealtimeH3IndexReader.java copy pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/{TextIndexReader.java => H3IndexReader.java} (68%) rename pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/geospatial/{H3IndexReader.java => ImmutableH3IndexReader.java} (94%) create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/geospatial/RealtimeH3IndexReaderTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org