This is an automated email from the ASF dual-hosted git repository.
jlli pushed a change to branch create-lead-controller-resource
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
omit 871fb40 Create leadControllerResource in Helix cluster
add cb7dab4 add more types parsing for string coerceValueIntoField
(#4133)
add 7abbcd2 [TE] Refactor cube algorithm code for adding ratio cube in
the future. (#4213)
add 7bb797d Remove kafka dependency from PartitionFunction (#4234)
add 45a8430 Add metric on ControllerLeadershipManager (#4236)
add fcfcd88 Remove depependency on Kafka stream implementation classes
from pinot-core and pinot-controller tests (#4233)
add 4694f67 Skip pipeline validation when disabling it (#4240)
add c12ff31 Create leadControllerResource in Helix cluster
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 (871fb40)
\
N -- N -- N refs/heads/create-lead-controller-resource (c12ff31)
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:
.../apache/pinot/common/config/Deserializer.java | 21 +-
.../pinot/common/metrics/ControllerGauge.java | 3 +
.../controller/ControllerLeadershipManager.java | 13 +-
.../apache/pinot/controller/ControllerStarter.java | 5 +-
.../resources/PinotTableRestletResourceTest.java | 29 +-
.../controller/api/resources/TableViewsTest.java | 26 +-
.../PinotLLCRealtimeSegmentManagerTest.java | 60 +--
.../helix/core/realtime/SegmentCompletionTest.java | 16 +-
.../segment/FlushThresholdUpdaterTest.java | 23 +-
.../rebalance/DefaultRebalanceStrategyTest.java | 31 +-
.../sharding/SegmentAssignmentStrategyTest.java | 15 +-
.../data/partition/ByteArrayPartitionFunction.java | 11 +-
.../data/partition/MurmurPartitionFunction.java | 63 ++-
.../data/partition/PartitionFunctionFactory.java | 3 +
.../realtime/LLRealtimeSegmentDataManagerTest.java | 52 +-
.../core/data/partition/PartitionFunctionTest.java | 85 ++++
.../fakestream/FakePartitionLevelConsumer.java | 121 +++++
.../impl/fakestream/FakeStreamConfigUtils.java | 168 +++++++
.../impl/fakestream/FakeStreamConsumerFactory.java | 101 ++++
.../impl/fakestream/FakeStreamLevelConsumer.java | 37 +-
.../impl/fakestream/FakeStreamMessageBatch.java | 56 +++
.../impl/fakestream/FakeStreamMessageDecoder.java | 71 +++
.../fakestream/FakeStreamMetadataProvider.java | 59 +++
.../core/realtime/stream/StreamConfigTest.java | 277 ++++++-----
.../data/fakestream/fake_stream_avro_data.tar.gz | Bin 0 -> 809609 bytes
.../data/fakestream/fake_stream_avro_schema.avsc | 524 +++++++++++++++++++++
.../data/fakestream/fake_stream_pinot_schema.json | 335 +++++++++++++
.../thirdeye/client/diffsummary/HierarchyNode.java | 296 ------------
.../client/diffsummary/ThirdEyeSummaryClient.java | 278 -----------
.../thirdeye/cube/additive/AdditiveCubeNode.java | 183 +++++++
.../thirdeye/cube/additive/AdditiveDBClient.java | 98 ++++
.../Row.java => cube/additive/AdditiveRow.java} | 94 ++--
.../additive}/MultiDimensionalSummary.java | 37 +-
.../additive}/MultiDimensionalSummaryCLITool.java | 14 +-
.../cost}/BalancedCostFunction.java | 42 +-
.../cost}/ChangeRatioCostFunction.java | 28 +-
.../ContributionToOverallChangeCostFunction.java | 11 +-
.../pinot/thirdeye/cube/cost/CostFunction.java | 41 ++
.../diffsummary => cube/data/cube}/Cube.java | 182 ++++---
.../pinot/thirdeye/cube/data/cube/CubeUtils.java | 85 ++++
.../data/cube}/DimNameValueCostEntry.java | 38 +-
.../cube/data/dbclient/BaseCubePinotClient.java | 261 ++++++++++
.../thirdeye/cube/data/dbclient/CubeClient.java | 70 +++
.../data/dbclient/CubePinotClient.java} | 49 +-
.../thirdeye/cube/data/dbclient/CubeSpec.java | 123 +++++
.../data/dbclient/CubeTag.java} | 10 +-
.../dbclient/ThirdEyeRequestMetricExpressions.java | 63 +++
.../data/dbrow/BaseRow.java} | 36 +-
.../data/dbrow}/DimensionValues.java | 2 +-
.../data/dbrow}/Dimensions.java | 5 +-
.../apache/pinot/thirdeye/cube/data/dbrow/Row.java | 78 +++
.../thirdeye/cube/data/node/BaseCubeNode.java | 144 ++++++
.../pinot/thirdeye/cube/data/node/CubeNode.java | 211 +++++++++
.../thirdeye/cube/data/node/CubeNodeUtils.java | 72 +++
.../summary}/BaseResponseRow.java | 4 +-
.../diffsummary => cube/summary}/DPArray.java | 8 +-
.../diffsummary => cube/summary}/Summary.java | 164 ++++---
.../summary}/SummaryGainerLoserResponseRow.java | 2 +-
.../summary}/SummaryResponse.java | 46 +-
.../summary}/SummaryResponseRow.java | 2 +-
.../summary}/SummaryResponseTree.java | 106 +++--
.../dashboard/resources/SummaryResource.java | 31 +-
.../thirdeye/detection/yaml/YamlResource.java | 28 +-
.../impl/MetricComponentAnalysisPipeline.java | 3 +-
.../client/diffsummary/HierarchyNodeTest.java | 182 -------
.../MultiDimensionalSummaryCLIToolTest.java | 5 +-
.../cost}/BalancedCostFunctionTest.java | 5 +-
.../diffsummary => cube/data/cube}/CubeTest.java | 75 +--
.../data/cube}/DimNameValueCostEntryTest.java | 9 +-
.../data/dbrow}/DimensionValuesTest.java | 3 +-
.../data/dbrow}/DimensionsTest.java | 3 +-
.../thirdeye/cube/data/node/CubeNodeTest.java | 187 ++++++++
72 files changed, 4055 insertions(+), 1564 deletions(-)
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakePartitionLevelConsumer.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamConfigUtils.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamConsumerFactory.java
copy
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/views/diffsummary/BaseResponseRow.java
=>
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamLevelConsumer.java
(57%)
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamMessageBatch.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamMessageDecoder.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamMetadataProvider.java
create mode 100644
pinot-core/src/test/resources/data/fakestream/fake_stream_avro_data.tar.gz
create mode 100644
pinot-core/src/test/resources/data/fakestream/fake_stream_avro_schema.avsc
create mode 100644
pinot-core/src/test/resources/data/fakestream/fake_stream_pinot_schema.json
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/client/diffsummary/HierarchyNode.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/client/diffsummary/ThirdEyeSummaryClient.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/additive/AdditiveCubeNode.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/additive/AdditiveDBClient.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/Row.java
=> cube/additive/AdditiveRow.java} (50%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/additive}/MultiDimensionalSummary.java (76%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/additive}/MultiDimensionalSummaryCLITool.java (95%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/costfunctions
=> cube/cost}/BalancedCostFunction.java (75%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/costfunctions
=> cube/cost}/ChangeRatioCostFunction.java (81%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/costfunctions
=> cube/cost}/ContributionToOverallChangeCostFunction.java (83%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/cost/CostFunction.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/cube}/Cube.java (74%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/cube/CubeUtils.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/cube}/DimNameValueCostEntry.java (72%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/dbclient/BaseCubePinotClient.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/dbclient/CubeClient.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/OLAPDataBaseClient.java
=> cube/data/dbclient/CubePinotClient.java} (54%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/dbclient/CubeSpec.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary/costfunctions/CostFunction.java
=> cube/data/dbclient/CubeTag.java} (76%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/dbclient/ThirdEyeRequestMetricExpressions.java
copy
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary/BaseResponseRow.java
=> cube/data/dbrow/BaseRow.java} (54%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/dbrow}/DimensionValues.java (98%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/dbrow}/Dimensions.java (96%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/dbrow/Row.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/node/BaseCubeNode.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/node/CubeNode.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/cube/data/node/CubeNodeUtils.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/BaseResponseRow.java (90%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/DPArray.java (91%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/Summary.java (73%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/SummaryGainerLoserResponseRow.java (95%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/SummaryResponse.java (88%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/SummaryResponseRow.java (96%)
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/diffsummary
=> cube/summary}/SummaryResponseTree.java (66%)
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/client/diffsummary/HierarchyNodeTest.java
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/additive}/MultiDimensionalSummaryCLIToolTest.java (92%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary/costfunctions
=> cube/cost}/BalancedCostFunctionTest.java (86%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/cube}/CubeTest.java (69%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/cube}/DimNameValueCostEntryTest.java (76%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/dbrow}/DimensionValuesTest.java (96%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{client/diffsummary
=> cube/data/dbrow}/DimensionsTest.java (97%)
create mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/cube/data/node/CubeNodeTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]