You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2019/07/17 05:10:08 UTC

[incubator-pinot] branch kafka_2.0 updated (72d7f59 -> 91e00ad)

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

xiangfu pushed a change to branch kafka_2.0
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 72d7f59  address comments
 discard ee87138  fixing the bytes type conversion and adding consumer test
 discard cad9466  Adding support for Kafka 2.0
 discard 220df69  WIP: adding kafka 2 stream provider
     add 12e77bd  #4401 Reuse a ThreadLocal byte[] when reading String elements from the variable length value reader. (#4432)
     add e720448  Remove the massive console print and log from CalciteSqlCompilerTest (#4434)
     add 67afc71  Cleanup un-necessary setups in HelixSetupUtils (#4430)
     add b1d28fd  Fix potential resource leak in the way we close a collection of closeables (#4418)
     add d2b2981  add download excel (#4403)
     add 7b1715c  3891: Check for validity of segment start/end time during segment generation (#4368)
     add 625482a  [TE] Renamed some classes to making it accurate and consistent (#4439)
     add 90f3eb5  WIP: adding kafka 2 stream provider
     add c2eb015  Adding support for Kafka 2.0
     add 1ad7c88  fixing the bytes type conversion and adding consumer test
     add 91e00ad  address 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   (72d7f59)
            \
             N -- N -- N   refs/heads/kafka_2.0 (91e00ad)

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/utils/CommonConstants.java |   3 +-
 .../org/apache/pinot/common/utils/FileUtils.java   |  59 ++++-
 .../org/apache/pinot/common/utils/StringUtil.java  |   4 +-
 .../apache/pinot/common/utils/time/TimeUtils.java  |  15 ++
 .../pinot/sql/parsers/CalciteSqlCompilerTest.java  |  68 ++---
 .../apache/pinot/controller/ControllerStarter.java |  20 +-
 .../controller/api/upload/SegmentValidator.java    |   2 +-
 .../helix/core/PinotTableIdealStateBuilder.java    |  24 --
 .../helix/core/util/HelixSetupUtils.java           | 240 +++++++-----------
 .../src/main/resources/static/css/pinot.css        |  16 +-
 .../src/main/resources/static/js/init.js           |  10 +
 .../src/main/resources/static/query/index.html     |   8 +-
 .../helix/ControllerPeriodicTaskStarterTest.java   |  38 +--
 .../pinot/controller/helix/ControllerTest.java     |  54 +---
 .../controller/helix/PinotControllerModeTest.java  | 275 +++++++++++----------
 .../helix/core/PinotHelixResourceManagerTest.java  | 106 ++++----
 .../generator/SegmentGeneratorConfig.java          |  10 +
 .../impl/FixedByteSingleValueMultiColReader.java   |  16 +-
 .../core/io/util/FixedBitIntReaderWriter.java      |  16 +-
 .../core/io/util/FixedByteValueReaderWriter.java   |  16 +-
 .../io/util/VarLengthBytesValueReaderWriter.java   |  40 ++-
 .../impl/FixedByteSingleValueMultiColWriter.java   |  23 +-
 .../apache/pinot/core/minion/SegmentConverter.java |  18 +-
 .../converter/RealtimeSegmentConverter.java        |   6 +
 .../creator/impl/SegmentColumnarIndexCreator.java  | 148 +++++++++--
 .../fwd/SingleValueSortedForwardIndexCreator.java  |  10 +-
 .../inv/OffHeapBitmapInvertedIndexCreator.java     |  26 +-
 .../pinot/core/data/readers/PinotSegmentUtil.java  |  74 ++++--
 .../util/VarLengthBytesValueReaderWriterTest.java  |  52 ++++
 .../pinot/core/minion/SegmentConverterTest.java    |  16 +-
 ...adataAndDictionaryAggregationPlanMakerTest.java |  12 +
 .../core/segment/index/ColumnMetadataTest.java     |   6 +
 .../segment/index/SegmentMetadataImplTest.java     |   6 +
 .../SegmentV1V2ToV3FormatConverterTest.java        |   6 +
 .../SegmentGenerationWithTimeColumnTest.java       |  36 ++-
 .../index/loader/SegmentPreProcessorTest.java      |   6 +
 .../startree/StarTreeIndexTestSegmentHelper.java   |   6 +
 .../pinot/core/startree/TestStarTreeMetadata.java  |   6 +
 .../hll/SegmentWithHllIndexCreateHelper.java       |   6 +
 .../org/apache/pinot/core/util/CrcUtilsTest.java   |   6 +
 .../pinot/queries/BaseMultiValueQueriesTest.java   |   6 +
 .../pinot/queries/BaseSingleValueQueriesTest.java  |   6 +
 .../apache/pinot/queries/FastHllQueriesTest.java   |   6 +
 .../segments/v1/creator/DictionariesTest.java      |   6 +
 .../pinot/segments/v1/creator/IntArraysTest.java   |   6 +
 .../test/java/org/apache/pinot/util/TestUtils.java |  32 +--
 ...a => MetricAnomaliesEmailContentFormatter.java} |  11 +-
 .../anomaly/alert/util/AnomalyReportGenerator.java |   2 +-
 .../anomaly/alert/v2/AlertTaskRunnerV2.java        |   2 +-
 .../alert/scheme/DetectionEmailAlerter.java        |   2 +-
 ...ly-report.ftl => metric-anomalies-template.ftl} |   0
 .../commons/TestEmailContentFormatterFactory.java  |   6 +-
 ...HierarchicalAnomaliesEmailContentFormatter.java |   2 +-
 ... TestMetricAnomaliesEmailContentFormatter.java} |   6 +-
 ...st-hierarchical-metric-anomalies-template.html} |   0
 ...er.html => test-metric-anomalies-template.html} |   0
 56 files changed, 986 insertions(+), 616 deletions(-)
 rename thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/alert/content/{MultipleAnomaliesEmailContentFormatter.java => MetricAnomaliesEmailContentFormatter.java} (94%)
 rename thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/{holiday-anomaly-report.ftl => metric-anomalies-template.ftl} (100%)
 rename thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/alert/content/{TestMultipleAnomaliesEmailContentFormatter.java => TestMetricAnomaliesEmailContentFormatter.java} (96%)
 rename thirdeye/thirdeye-pinot/src/test/resources/{test-hierarchical-anomalies-email-content-formatter.html => test-hierarchical-metric-anomalies-template.html} (100%)
 rename thirdeye/thirdeye-pinot/src/test/resources/{test-multiple-anomalies-email-content-formatter.html => test-metric-anomalies-template.html} (100%)


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