You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2021/01/18 22:14:29 UTC

[incubator-pinot] branch pinot-internode-tls updated (f2f4aae -> 29e999e)

This is an automated email from the ASF dual-hosted git repository.

apucher pushed a change to branch pinot-internode-tls
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard f2f4aae  use global tls config only
 discard b45fbae  cover even more controller-bases with TLS
 discard 5a9ef90  test fixes round 1
 discard 2d5c355  review fixes round 2
 discard af7003d  test fixes round 3
 discard 00be12e  test fixes round 2
 discard 1113259  test fixes round 1
 discard 15b50d0  dynamic tls upgrade for netty
 discard 0573834  multi-ingress support
 discard 2f29846  review fixes subbu 1
 discard f35a8c6  add protocol param to admin commands
 discard 45ad478  support TLS defaults and overrides
 discard 8a20892  license headers
 discard 2fac06c  strings to constants
 discard 8226da3  unified client and internode TLS
 discard d64c0fa  more assertions
 discard 325c780  exception on unsupported broker client protocol
 discard fccd6d8  review fixes jackie
 discard 1236563  client-broker TLS support
     add 19e3d51  [TE] endpoint - harleyjj/rca - add forecast, upper, lower, and yoXy to aggregate/chunk enpoint (#6432)
     add 33830cb  [TE] suppress the anomaly if current value is NaN (#6428)
     add 68fbb9c  [TE] frontend - harleyjj/rca - display metric funnel in metrics table when forecast selected (#6333)
     add 99fe289  [TE] fix dimensional summary in emails (#6443)
     add 72a7849  Support confluent schema registry (#6434)
     add 832ece7  Bug Fix column metadata, read from the correct property config for hasFSTIndex (#6441)
     add 8d3d4d4  Merge H3-index branch to master (#6409)
     add e8c4636  Fixing the issue that raw table name extracts from segment metadata might contain _OFFLINE suffix (#6445)
     add 950295a  Fix gcs listFiles (#6426)
     add d83e371  Adding ImportData sub command in pinot admin (#6396)
     add 28882ba  Adding pinot minion component into helm (#6430)
     add 8085fb7  setting default Data Type while setting type in Add Schema dialog (#6452)
     add 26f1db8  client-broker TLS support
     add bac66ed  review fixes jackie
     add abc0d16  exception on unsupported broker client protocol
     add 77d95a3  more assertions
     add 0a133ab  unified client and internode TLS
     add 82cef1b  strings to constants
     add dfbd95a  license headers
     add 2caab57  support TLS defaults and overrides
     add 5a9203e  add protocol param to admin commands
     add 6b83ddb  review fixes subbu 1
     add fc9f327  multi-ingress support
     add 55c8efb  dynamic tls upgrade for netty
     add 47a214c  test fixes round 1
     add 0a68db3  test fixes round 2
     add 73e13eb  test fixes round 3
     add 03612ad  review fixes round 2
     add 2dd106f  test fixes round 1
     add 72db488  cover even more controller-bases with TLS
     add 29e999e  use global tls config only

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f2f4aae)
            \
             N -- N -- N   refs/heads/pinot-internode-tls (29e999e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 kubernetes/helm/index.yaml                         |   44 +-
 kubernetes/helm/pinot-0.2.3.tgz                    |  Bin 0 -> 24307 bytes
 kubernetes/helm/pinot/Chart.yaml                   |    4 +-
 kubernetes/helm/pinot/README.md                    |   21 +
 kubernetes/helm/pinot/templates/_helpers.tpl       |   23 +
 .../templates/{broker => minion}/configmap.yaml    |   12 +-
 .../{server => minion}/service-headless.yaml       |    8 +-
 .../templates/{server => minion}/service.yaml      |    8 +-
 .../templates/{server => minion}/statefulset.yml   |   58 +-
 kubernetes/helm/pinot/values.yaml                  |   50 +
 .../PinotSegmentUploadDownloadRestletResource.java |    2 +-
 .../helix/ControllerRequestURLBuilder.java         |    3 +
 .../Homepage/Operations/SchemaComponent.tsx        |   42 +-
 pinot-core/pom.xml                                 |    4 +
 .../org/apache/pinot/core/common/DataSource.java   |    7 +
 .../realtime/LLRealtimeSegmentDataManager.java     |    3 +-
 .../transform/function/ScalarFunctions.java        |   27 +
 .../transform/function/StDistanceFunction.java     |   40 +-
 .../generator/SegmentGeneratorConfig.java          |   24 +-
 .../indexsegment/mutable/MutableSegmentImpl.java   |   36 +-
 .../core/operator/filter/FilterOperatorUtils.java  |   15 +-
 .../operator/filter/H3IndexFilterOperator.java     |  246 +
 .../org/apache/pinot/core/plan/FilterPlanNode.java |   40 +
 .../core/realtime/impl/RealtimeSegmentConfig.java  |   31 +-
 .../realtime/impl/geospatial/MutableH3Index.java   |   78 +
 ...dexCreator.java => GeoSpatialIndexCreator.java} |   10 +-
 .../creator/impl/SegmentColumnarIndexCreator.java  |   47 +-
 .../core/segment/creator/impl/V1Constants.java     |    3 +-
 .../impl/inv/geospatial/BaseH3IndexCreator.java    |  168 +
 .../creator/impl/inv/geospatial/H3IndexConfig.java |   50 +
 .../impl/inv/geospatial/H3IndexResolution.java     |   71 +
 .../impl/inv/geospatial/OffHeapH3IndexCreator.java |  218 +
 .../OnHeapH3IndexCreator.java}                     |   25 +-
 .../segment/index/column/ColumnIndexContainer.java |    6 +
 .../index/column/PhysicalColumnIndexContainer.java |   20 +
 .../segment/index/datasource/BaseDataSource.java   |   13 +-
 .../index/datasource/ImmutableDataSource.java      |    2 +-
 .../index/datasource/MutableDataSource.java        |    6 +-
 .../segment/index/loader/IndexLoadingConfig.java   |   61 +-
 .../segment/index/loader/SegmentPreProcessor.java  |    8 +
 .../{JsonIndexHandler.java => H3IndexHandler.java} |   99 +-
 .../segment/index/metadata/ColumnMetadata.java     |    2 +-
 .../index/readers/BitmapInvertedIndexReader.java   |   87 +-
 .../{TextIndexReader.java => H3IndexReader.java}   |   19 +-
 .../readers/geospatial/ImmutableH3IndexReader.java |   84 +
 .../pinot/core/segment/store/ColumnIndexType.java  |    3 +-
 .../virtualcolumn/VirtualColumnIndexContainer.java |    6 +
 .../core/startree/v2/store/StarTreeDataSource.java |    5 +-
 .../BloomFilterCreator.java => util/H3Utils.java}  |   25 +-
 .../apache/pinot/core/util/TableConfigUtils.java   |    4 +-
 .../transform/StDistanceFunctionTest.java          |    8 +-
 .../inv/geospatial/H3IndexResolutionTest.java}     |   17 +-
 .../core/segment/index/ColumnMetadataTest.java     |    1 +
 .../pinot/core/segment/index/H3IndexTest.java      |  110 +
 .../apache/pinot/queries/H3IndexQueriesTest.java   |  233 +
 .../org/apache/pinot/minion/MinionStarter.java     |   14 +-
 .../SegmentGenerationAndPushTaskExecutor.java      |    4 +-
 .../batch/common/SegmentGenerationTaskRunner.java  |    7 +
 .../apache/pinot/plugin/filesystem/GcsPinotFS.java |   19 +-
 ...aConfluentSchemaRegistryAvroMessageDecoder.java |    2 +-
 .../apache/pinot/spi/config/table/FieldConfig.java |    2 +-
 .../pinot/spi/config/table/IndexingConfig.java     |    1 +
 pinot-tools/pom.xml                                |   12 +-
 ...ventsQuickstart.java => GenericQuickstart.java} |  100 +-
 .../pinot/tools/admin/PinotAdministrator.java      |    2 +
 .../tools/admin/command/ImportDataCommand.java     |  390 ++
 .../tools/admin/command/StartMinionCommand.java    |    8 +-
 ...t-server-log4j2.xml => pinot-minion-log4j2.xml} |    6 +-
 .../main/resources/conf/pinot-service-log4j2.xml   |    8 +
 .../ingestionJobSpec.yaml                          |   10 +-
 .../batch/starbucksStores/rawdata/data.csv         | 6444 ++++++++++++++++++++
 .../starbucksStores_offline_table_config.json      |   34 +
 .../starbucksStores/starbucksStores_schema.json    |   29 +
 .../stream/meetupRsvp/meetupRsvp_schema.json       |    2 +-
 .../upsert_meetupRsvp_realtime_table_config.json   |   10 +
 .../meetupRsvp/upsert_meetupRsvp_schema.json       |    2 +-
 pom.xml                                            |    6 +
 .../resources/v2/RootCauseMetricResource.java      |   61 +-
 .../dashboard/resources/v2/RootCauseResource.java  |   11 +-
 .../pods/components/rootcause-metrics/component.js |  220 +-
 .../pods/partials/rootcause/metrics/template.hbs   |    1 +
 .../app/pods/rootcause/controller.js               |  687 ++-
 .../services/rootcause-aggregates-cache/service.js |   74 +-
 ...tricsTableColumns.js => metricFunnelColumns.js} |   48 +-
 .../resources/v2/BaselineParsingUtils.java         |   15 +-
 .../detection/DetectionPipelineTaskRunner.java     |    4 +-
 .../rootcause/timeseries/BaselineAggregate.java    |   21 +
 87 files changed, 9659 insertions(+), 832 deletions(-)
 create mode 100644 kubernetes/helm/pinot-0.2.3.tgz
 copy kubernetes/helm/pinot/templates/{broker => minion}/configmap.yaml (75%)
 copy kubernetes/helm/pinot/templates/{server => minion}/service-headless.yaml (86%)
 copy kubernetes/helm/pinot/templates/{server => minion}/service.yaml (86%)
 copy kubernetes/helm/pinot/templates/{server => minion}/statefulset.yml (58%)
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/filter/H3IndexFilterOperator.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/realtime/impl/geospatial/MutableH3Index.java
 copy pinot-core/src/main/java/org/apache/pinot/core/segment/creator/{JsonIndexCreator.java => GeoSpatialIndexCreator.java} (83%)
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/segment/creator/impl/inv/geospatial/BaseH3IndexCreator.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/segment/creator/impl/inv/geospatial/H3IndexConfig.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/segment/creator/impl/inv/geospatial/H3IndexResolution.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/segment/creator/impl/inv/geospatial/OffHeapH3IndexCreator.java
 copy pinot-core/src/main/java/org/apache/pinot/core/segment/creator/impl/inv/{json/OnHeapJsonIndexCreator.java => geospatial/OnHeapH3IndexCreator.java} (55%)
 copy pinot-core/src/main/java/org/apache/pinot/core/segment/index/loader/invertedindex/{JsonIndexHandler.java => H3IndexHandler.java} (58%)
 copy pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/{TextIndexReader.java => H3IndexReader.java} (68%)
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/geospatial/ImmutableH3IndexReader.java
 copy pinot-core/src/main/java/org/apache/pinot/core/{segment/creator/BloomFilterCreator.java => util/H3Utils.java} (72%)
 copy pinot-core/src/test/java/org/apache/pinot/core/{metadata/MetadataExtractorFactoryTest.java => segment/creator/impl/inv/geospatial/H3IndexResolutionTest.java} (65%)
 create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/segment/index/H3IndexTest.java
 create mode 100644 pinot-core/src/test/java/org/apache/pinot/queries/H3IndexQueriesTest.java
 copy pinot-tools/src/main/java/org/apache/pinot/tools/{GitHubEventsQuickstart.java => GenericQuickstart.java} (55%)
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/ImportDataCommand.java
 copy pinot-tools/src/main/resources/conf/{pinot-server-log4j2.xml => pinot-minion-log4j2.xml} (88%)
 copy pinot-tools/src/main/resources/examples/batch/{baseballStats => starbucksStores}/ingestionJobSpec.yaml (95%)
 create mode 100644 pinot-tools/src/main/resources/examples/batch/starbucksStores/rawdata/data.csv
 create mode 100644 pinot-tools/src/main/resources/examples/batch/starbucksStores/starbucksStores_offline_table_config.json
 create mode 100644 pinot-tools/src/main/resources/examples/batch/starbucksStores/starbucksStores_schema.json
 copy thirdeye/thirdeye-frontend/app/shared/{metricsTableColumns.js => metricFunnelColumns.js} (66%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org