This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a change to branch upgrade_zk_version in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard ab35518 Upgrade zookeeper version to 3.5.8 add 162d0e6 [TE]frontend - Upgrade from ember v2.18 to v3.0.0 (#6553) add d03629e add optional http basic auth to pinot broker (#6552) add 2ee498c [TE] escape Pinot timespect SQL query (#6566) add 8013a2d Use minion data directory as tmp directory for SegmentGenerationAndPushTask (#6560) add a6196ba Adding metrics for minion tasks status (#6549) add 779422f [TE] update date format when send to Jira API (#6563) add e4503a3 Support S3 with server side encryption mode aws:kms (#6565) add 503d0fe Update ADLSGen2PinotFS auth; Introduce unit tests (#6531) add 1e6e49a Upgrade zookeeper version to 3.5.8 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 (ab35518) \ N -- N -- N refs/heads/upgrade_zk_version (1e6e49a) 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: .../etc/jmx_prometheus_javaagent/configs/pinot.yml | 5 + .../pinot/broker/api/HttpRequesterIdentity.java | 30 +- .../broker/api/resources/PinotClientRequest.java | 33 +- .../broker/BasicAuthAccessControlFactory.java | 169 + .../broker/broker/BasicAuthAccessControlTest.java | 152 + .../pinot/common/metrics/ControllerGauge.java | 5 +- pinot-connectors/pinot-spark-connector/pom.xml | 2 +- .../api/resources/PinotQueryResource.java | 15 +- .../helix/core/minion/PinotTaskManager.java | 42 +- ...lerUpdater.java => TaskTypeMetricsUpdater.java} | 23 +- .../tests/SimpleMinionClusterIntegrationTest.java | 49 +- .../org/apache/pinot/minion/MinionStarter.java | 6 + .../SegmentGenerationAndPushTaskExecutor.java | 6 +- .../v0_deprecated/pinot-spark/pom.xml | 2 +- pinot-plugins/pinot-file-system/pinot-adls/pom.xml | 38 +- .../pinot/plugin/filesystem/ADLSGen2PinotFS.java | 202 +- .../datalake/store/MockADLFileInputStream.java | 94 - .../filesystem/test/ADLSGen2PinotFSTest.java | 395 + .../plugin/filesystem/test/AzurePinotFSTest.java | 8 +- .../org.mockito.plugins.MockMaker | 4 + pinot-plugins/pinot-file-system/pinot-s3/pom.xml | 2 +- .../apache/pinot/plugin/filesystem/S3PinotFS.java | 132 +- pom.xml | 4 +- thirdeye/thirdeye-frontend/.eslintrc.js | 7 +- thirdeye/thirdeye-frontend/README.md | 5 + .../thirdeye-frontend/config/ember-cli-update.json | 21 + thirdeye/thirdeye-frontend/package.json | 12 +- thirdeye/thirdeye-frontend/testem.js | 13 +- thirdeye/thirdeye-frontend/yarn.lock | 9049 ++++++++++---------- .../datasource/pinot/PinotDataSourceTimeQuery.java | 3 +- .../pinot/thirdeye/datasource/pinot/SqlUtils.java | 2 +- .../notification/commons/ThirdEyeJiraClient.java | 9 +- 32 files changed, 5636 insertions(+), 4903 deletions(-) copy thirdeye/thirdeye-dashboard/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/pojo/WowSummary.java => pinot-broker/src/main/java/org/apache/pinot/broker/api/HttpRequesterIdentity.java (57%) create mode 100644 pinot-broker/src/main/java/org/apache/pinot/broker/broker/BasicAuthAccessControlFactory.java create mode 100644 pinot-broker/src/test/java/org/apache/pinot/broker/broker/BasicAuthAccessControlTest.java copy pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/{TableTaskSchedulerUpdater.java => TaskTypeMetricsUpdater.java} (64%) delete mode 100644 pinot-plugins/pinot-file-system/pinot-adls/src/test/java/com/microsoft/azure/datalake/store/MockADLFileInputStream.java create mode 100644 pinot-plugins/pinot-file-system/pinot-adls/src/test/java/org/apache/pinot/plugin/filesystem/test/ADLSGen2PinotFSTest.java create mode 100644 pinot-plugins/pinot-file-system/pinot-adls/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker create mode 100644 thirdeye/thirdeye-frontend/config/ember-cli-update.json --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org