This is an automated email from the ASF dual-hosted git repository.
jenniferdai pushed a change to branch cleanup
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard a8ab052 Fixing test
discard aff5441 Adding preprocess test
add 7c7b6cc Support transform functions with AVG aggregation function
(#4557)
add 9b5775e [Issue #4551] Remove memory allocation for virtual columns in
consumi⦠(#4555)
add d8d0bb5 Add metrics on Helix and Pinot controller leadership (#4561)
add 38c73aa Fix the issue of scheduling task on all tables (#4563)
add 23ffd67 Handle the virtual column logic in FieldSpec instead of
Schema (#4562)
add c2f6b25 Indexed table (#4547)
add 9edb2cc [TE] frontend - harleyjj/alert-details - add rule and
modifier columns to anomaly table (#4564)
add 77446e7 [TE] support entity group expression (#4377)
add e98efcb [TE] fix multi-day granularity alignment issue (#4566)
add 9180dac fixed "StartTree" typo (#4571)
add 16cd4fa fixed hyperlink to PinotFS (#4570)
add c30ef17 [TE] only store evaluations for top dimensions (#4572)
add 3216159 Support aws s3 with Parquet in pinot-tools (#4556)
add fbc28d8 [TE] Add timeout for all tasks and clean up RUNNING states if
timeout (#4554)
add 9df877d Use docker compose for pinot quickstart (#4575)
add 584368d Merge LLC related integration tests (#4573)
add f3aa4db Retrieve routing table by exact table name instead of by
prefix (#3037)
add a1c5af7 [TE] Return the anomaly details to render snapshot (#4576)
add 8712a59 Adding preprocess test
add fa00ab3 Fixing test
add e9b0ea0 Addressing comments
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 (a8ab052)
\
N -- N -- N refs/heads/cleanup (e9b0ea0)
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:
docker/Dockerfile | 5 +-
docker/README.md | 33 ++-
docker/docker-build.sh | 11 +-
docker/docker-compose.yml | 82 ++++++
docs/architecture.rst | 2 +-
docs/pluggable_storage.rst | 2 +-
.../routing/HelixExternalViewBasedRouting.java | 4 +-
.../org/apache/pinot/common/data/FieldSpec.java | 11 +
.../java/org/apache/pinot/common/data/Schema.java | 17 +-
.../pinot/common/metrics/ControllerGauge.java | 6 +
.../pinot/controller/LeadControllerManager.java | 10 +
.../helix/core/minion/PinotTaskManager.java | 11 +-
.../core/periodictask/ControllerPeriodicTask.java | 14 +-
.../pinot/controller/helix/ControllerTest.java | 2 +-
.../apache/pinot/core/data/order/OrderByUtils.java | 295 +++++++++++++++++++++
.../apache/pinot/core/data/readers/FileFormat.java | 2 +-
.../core/data/table/ConcurrentIndexedTable.java | 137 ++++++++++
.../apache/pinot/core/data/table/IndexedTable.java | 69 +++++
.../java/org/apache/pinot/core/data/table/Key.java | 49 ++--
.../{plan/Plan.java => data/table/Record.java} | 28 +-
.../pinot/core/data/table/SimpleIndexedTable.java | 126 +++++++++
.../org/apache/pinot/core/data/table/Table.java | 68 +++++
.../pinot/core/indexsegment/IndexSegment.java | 2 +-
.../generator/SegmentGeneratorConfig.java | 8 +-
.../immutable/ImmutableSegmentImpl.java | 27 +-
.../immutable/ImmutableSegmentLoader.java | 6 +-
.../indexsegment/mutable/MutableSegmentImpl.java | 117 +++++---
.../operator/docvalsets/TransformBlockValSet.java | 6 +
.../creator/impl/SegmentColumnarIndexCreator.java | 5 +-
.../impl/SegmentIndexCreationDriverImpl.java | 20 +-
.../VirtualColumnProviderFactory.java | 6 +-
.../pinot/core/data/order/OrderByUtilsTest.java | 265 ++++++++++++++++++
.../pinot/core/data/table/IndexedTableTest.java | 275 +++++++++++++++++++
.../MutableSegmentImplAggregateMetricsTest.java | 30 ++-
.../apache/pinot/queries/TransformQueriesTest.java | 267 +++++++++++++++++++
.../pinot/hadoop/job/SegmentPreprocessingJob.java | 2 +-
.../job/mappers/SegmentPreprocessingMapper.java | 26 +-
.../tests/LLCRealtimeClusterIntegrationTest.java | 100 ++++---
...CRealtimeClusterSplitCommitIntegrationTest.java | 44 ---
...abledLeadControllerResourceIntegrationTest.java | 31 ---
...ime_Performance_2014_100k_subset_nonulls.schema | 5 -
.../apache/pinot/perf/BenchmarkIndexedTable.java | 218 +++++++++++++++
pinot-tools/pom.xml | 20 ++
.../tools/admin/command/CreateSegmentCommand.java | 74 +++++-
.../query/comparison/SegmentInfoProvider.java | 43 +--
.../airlineStats_offline_table_config.json | 0
.../airlineStats_realtime_table_config.json | 6 +-
pom.xml | 5 +
.../app/pods/components/alert-details/component.js | 30 ++-
.../app/pods/components/alert-details/template.hbs | 26 ++
.../content/EntityGroupKeyContentFormatter.java | 1 +
.../anomaly/monitor/MonitorTaskRunner.java | 23 +-
.../pinot/thirdeye/anomaly/task/TaskDriver.java | 47 +++-
.../anomaly/task/TaskDriverConfiguration.java | 9 +
.../pinot/thirdeye/datalayer/bao/TaskManager.java | 2 +
.../datalayer/bao/jdbc/TaskManagerImpl.java | 7 +
.../thirdeye/detection/DefaultDataProvider.java | 4 +-
.../pinot/thirdeye/detection/DetectionUtils.java | 6 -
.../pinot/thirdeye/detection/ExpressionParser.java | 141 ++++++++++
.../detection/algorithm/DimensionWrapper.java | 19 +-
.../components/TriggerConditionGrouper.java | 20 +-
.../detection/algorithm/DimensionWrapperTest.java | 32 +--
.../algorithm/LegacyDimensionWrapperTest.java | 12 +-
.../detection/components/ExpressionParserTest.java | 90 +++++++
.../components/TriggerConditionGrouperTest.java | 37 +--
65 files changed, 2659 insertions(+), 439 deletions(-)
create mode 100644 docker/docker-compose.yml
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/data/order/OrderByUtils.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/data/table/ConcurrentIndexedTable.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/data/table/IndexedTable.java
copy
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/rootcause/util/FilterPredicate.java
=> pinot-core/src/main/java/org/apache/pinot/core/data/table/Key.java (57%)
copy pinot-core/src/main/java/org/apache/pinot/core/{plan/Plan.java =>
data/table/Record.java} (65%)
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/data/table/SimpleIndexedTable.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/data/table/Table.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/data/order/OrderByUtilsTest.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/data/table/IndexedTableTest.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/queries/TransformQueriesTest.java
delete mode 100644
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/LLCRealtimeClusterSplitCommitIntegrationTest.java
delete mode 100644
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/LLCRealtimeClusterWithEnabledLeadControllerResourceIntegrationTest.java
create mode 100644
pinot-perf/src/main/java/org/apache/pinot/perf/BenchmarkIndexedTable.java
copy pinot-tools/src/main/resources/sample_data/{ =>
docker}/airlineStats_offline_table_config.json (100%)
copy pinot-tools/src/main/resources/sample_data/{kafka_2.0 =>
docker}/airlineStats_realtime_table_config.json (86%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/ExpressionParser.java
create mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/components/ExpressionParserTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]