This is an automated email from the ASF dual-hosted git repository.
jlli pushed a change to branch return-live-segments
in repository https://gitbox.apache.org/repos/asf/pinot.git.
discard b8795b4 Add parameter to list segments which can be queried
add fcccf1b Pass in Headers when creating PinotConnection. Fix #7773
(#7824)
add 8627819 support large payload in zk put API (#7364)
add 24504b3 Add bootstrap mode for PinotServiceManager to avoid glitch
for health check (#7880)
add af2858a update log4j 2 to avoid CVE-2021-44228 (#7889)
add cf628c8 README.md of pinot-presto Dockerfile (#7884)
add fbae529 add validator for SDF (#7804)
add 12edbdb GRPC broker request handler (#7838)
add fb12a50 Improve error message for unsupported function call (#7609)
(#7877)
add ae443e2 Support non-selection-only GRPC server request handler (#7839)
add 9c57b4d Update helm charts to honour readinessEnabled probes flags on
the Controller, Broker, Server and Minion StatefulSets (#7891)
add d9054f2 Add parameter to list segments which can be queried
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 (b8795b4)
\
N -- N -- N refs/heads/return-live-segments (d9054f2)
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:
LICENSE-binary | 8 +-
docker/images/pinot-presto/README.md | 5 +-
.../helm/pinot/templates/broker/statefulset.yml | 2 +-
.../pinot/templates/controller/statefulset.yaml | 2 +-
.../helm/pinot/templates/minion/statefulset.yml | 2 +-
.../helm/pinot/templates/server/statefulset.yml | 2 +-
.../api/resources/PinotBrokerHealthCheck.java | 7 +-
.../broker/broker/BrokerAdminApiApplication.java | 2 +
.../broker/broker/helix/BaseBrokerStarter.java | 22 +-
.../requesthandler/BaseBrokerRequestHandler.java | 4 -
.../requesthandler/GrpcBrokerRequestHandler.java | 156 +++++++++++
.../SingleConnectionBrokerRequestHandler.java | 4 +
.../java/org/apache/pinot/client/PinotDriver.java | 5 +
.../org/apache/pinot/common/utils/DataTable.java | 6 +
.../pinot/controller/BaseControllerStarter.java | 2 +
.../api/resources/PinotControllerHealthCheck.java | 8 +-
.../api/resources/ZookeeperResource.java | 87 +++---
.../helix/ControllerRequestURLBuilder.java | 4 +
.../pinot/controller/ControllerTestUtils.java | 20 ++
.../controller/api/ZookeeperResourceTest.java | 86 ++++++
.../core/common/datatable/DataTableImplV2.java | 17 ++
.../core/common/datatable/DataTableImplV3.java | 18 ++
.../StreamingInstanceResponseOperator.java | 62 +++++
.../operator/blocks/InstanceResponseBlock.java | 4 +
.../function/TransformFunctionFactory.java | 7 +-
.../apache/pinot/core/plan/CombinePlanNode.java | 2 +-
.../pinot/core/plan/InstanceResponsePlanNode.java | 6 +-
...java => StreamingInstanceResponsePlanNode.java} | 21 +-
.../core/plan/maker/InstancePlanMakerImplV2.java | 20 +-
.../query/executor/ServerQueryExecutorV1Impl.java | 3 +-
.../postaggregation/PostAggregationFunction.java | 11 +-
.../pinot/core/query/reduce/BaseReduceService.java | 305 +++++++++++++++++++++
.../core/query/reduce/BrokerReduceService.java | 244 +----------------
.../core/query/reduce/ResultReducerFactory.java | 10 +
.../reduce/SelectionOnlyStreamingReducer.java | 98 +++++++
.../core/query/reduce/StreamingReduceService.java | 153 +++++++++++
.../reduce/StreamingReducer.java} | 19 +-
.../request/context/utils/QueryContextUtils.java | 9 +
.../pinot/core/transport/ServerInstance.java | 36 +++
.../apache/pinot/core/util/SchemaUtilsTest.java | 22 ++
.../pinot/integration/tests/ClusterTest.java | 29 +-
.../tests/GrpcBrokerClusterIntegrationTest.java | 131 +++++++++
.../MultiNodesOfflineClusterIntegrationTest.java | 7 -
.../tests/OfflineClusterIntegrationTest.java | 69 -----
.../tests/OfflineGRPCServerIntegrationTest.java | 277 +++++++++++++++++++
.../local/function/InbuiltFunctionEvaluator.java | 12 +-
.../pinot/segment/local/utils/SchemaUtils.java | 39 ++-
.../server/api/resources/HealthCheckResource.java | 9 +-
.../server/starter/helix/AdminApiApplication.java | 2 +
.../server/starter/helix/BaseServerStarter.java | 2 +-
.../helix/DefaultHelixStarterServerConfig.java | 1 -
.../apache/pinot/server/api/AccessControlTest.java | 7 +
.../apache/pinot/server/api/BaseResourceTest.java | 7 +
.../server/api/PinotServerAppConfigsTest.java | 13 +-
.../pinot/spi/data/DateTimeFormatPatternSpec.java | 13 +-
.../apache/pinot/spi/data/DateTimeFormatSpec.java | 4 +-
.../apache/pinot/spi/utils/CommonConstants.java | 5 +
.../pinot/tools/service/PinotServiceManager.java | 13 +-
.../service/PinotServiceManagerStatusCallback.java | 12 +-
pom.xml | 2 +-
60 files changed, 1719 insertions(+), 436 deletions(-)
create mode 100644
pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/GrpcBrokerRequestHandler.java
create mode 100644
pinot-controller/src/test/java/org/apache/pinot/controller/api/ZookeeperResourceTest.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/operator/StreamingInstanceResponseOperator.java
copy
pinot-core/src/main/java/org/apache/pinot/core/plan/{InstanceResponsePlanNode.java
=> StreamingInstanceResponsePlanNode.java} (59%)
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/reduce/BaseReduceService.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/reduce/SelectionOnlyStreamingReducer.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/reduce/StreamingReduceService.java
copy pinot-core/src/main/java/org/apache/pinot/core/{plan/Plan.java =>
query/reduce/StreamingReducer.java} (70%)
create mode 100644
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/GrpcBrokerClusterIntegrationTest.java
create mode 100644
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineGRPCServerIntegrationTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]