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

xiangfu pushed a change to branch 
Add-queue-based-throttling-to-ThrottleOnCriticalHeapUsageExecutor
in repository https://gitbox.apache.org/repos/asf/pinot.git


 discard e2531ebc0bb Implement comprehensive queue-based throttling for 
ThrottleOnCriticalHeapUsageExecutor
     add b6f801d46f7 Bump software.amazon.awssdk:bom from 2.35.5 to 2.35.6 
(#17013)
     add 500f73eb8fa Bump net.openhft:chronicle-bom from 2.27ea80 to 2.27ea81 
(#17012)
     add eb041ce45c6 smart distinct count based on hllplus (#17011)
     add 5f6f80cb749 Bump com.squareup.okio:okio-bom from 3.16.1 to 3.16.2 
(#17020)
     add 55e652cc0ca Bump software.amazon.awssdk:bom from 2.35.6 to 2.35.7 
(#17019)
     add 3426cb46deb [controller] Refactor segment reload APIs into dedicated 
resource class (#17016)
     add 01912c4aa88  Ensure proper exception is returned when query is 
cancelled/killed (#17009)
     add 481a5aa1e15 Remove non splitter grpc sender (#17003)
     add dd91fe6d44c Bump software.amazon.awssdk:bom from 2.35.7 to 2.35.8 
(#17026)
     add 9d32f376d83 Bump avro.version from 1.12.0 to 1.12.1 (#17025)
     add 96986806664 Implement comprehensive queue-based throttling for 
ThrottleOnCriticalHeapUsageExecutor

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   (e2531ebc0bb)
            \
             N -- N -- N   
refs/heads/Add-queue-based-throttling-to-ThrottleOnCriticalHeapUsageExecutor 
(96986806664)

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/metrics/ServerMeter.java   |  16 +-
 .../api/resources/PinotSegmentRestletResource.java | 346 --------------
 .../api/resources/PinotTableReloadResource.java    | 504 +++++++++++++++++++++
 .../resources/PinotSegmentRestletResourceTest.java |  44 --
 .../resources/PinotTableReloadResourceTest.java    |  87 ++++
 .../ThrottleOnCriticalHeapUsageExecutor.java       |  23 +-
 .../query/NonScanBasedAggregationOperator.java     |  14 +
 .../StreamingInstanceResponseOperator.java         |  14 +-
 .../pinot/core/plan/AggregationPlanNode.java       |   3 +-
 .../function/AggregationFunctionFactory.java       |   2 +
 ...tinctCountSmartHLLPlusAggregationFunction.java} | 216 ++++-----
 .../core/query/reduce/BrokerReduceService.java     |  20 +-
 .../pinot/core/query/scheduler/QueryScheduler.java |  56 ++-
 .../core/transport/InstanceRequestHandler.java     |   2 +-
 .../ThrottleOnCriticalHeapUsageExecutorTest.java   | 106 +++++
 .../pinot/queries/DistinctCountQueriesTest.java    |  87 ++++
 .../tests/BaseQueryKillingIntegrationTest.java     | 209 +++++++++
 .../CpuBasedBrokerQueryKillingIntegrationTest.java | 123 +++++
 .../CpuBasedServerQueryKillingIntegrationTest.java | 120 +++++
 ...moryBasedServerQueryKillingIntegrationTest.java | 119 +++++
 .../MultiNodesOfflineClusterIntegrationTest.java   |  27 ++
 .../tests/MultiStageEngineSmallBufferTest.java     |   3 -
 .../tests/OOMProtectionEnabledIntegrationTest.java | 107 -----
 ...flineClusterCpuBasedServerQueryKillingTest.java | 239 ----------
 ...flineClusterMemBasedBrokerQueryKillingTest.java | 241 ----------
 ...flineClusterMemBasedServerQueryKillingTest.java | 331 --------------
 ...rMemBasedServerResourceUsageAccountantTest.java | 302 ------------
 .../OfflineClusterResourceUsageAccountantTest.java | 272 -----------
 .../tests/OfflineGRPCServerIntegrationTest.java    |  30 ++
 ...OfflineGRPCServerMultiStageIntegrationTest.java |   7 +-
 ...lineGRPCServerOOMAccountingIntegrationTest.java |  56 ---
 .../OfflineSecureGRPCServerIntegrationTest.java    |   2 +
 .../pinot/query/mailbox/GrpcSendingMailbox.java    |  84 ++--
 .../query/mailbox/InMemorySendingMailbox.java      |  18 +-
 .../apache/pinot/query/mailbox/MailboxService.java |  27 +-
 .../pinot/query/mailbox/ReceivingMailbox.java      | 129 +++---
 .../mailbox/channel/MailboxContentObserver.java    |  21 +-
 .../apache/pinot/query/runtime/QueryRunner.java    |   2 +-
 .../runtime/executor/OpChainSchedulerService.java  |  18 +-
 .../runtime/operator/MailboxSendOperator.java      |  36 +-
 .../utils/BlockingMultiStreamConsumer.java         |   6 +-
 .../query/service/dispatch/QueryDispatcher.java    |   2 +
 .../pinot/query/mailbox/MailboxServiceTest.java    | 113 ++---
 .../pinot/query/mailbox/ReceivingMailboxTest.java  |  54 ++-
 .../pinot/segment/spi/AggregationFunctionType.java |   2 +
 .../spi/executor/DecoratorExecutorService.java     |   2 +-
 .../apache/pinot/spi/utils/CommonConstants.java    |  13 +-
 pom.xml                                            |   8 +-
 48 files changed, 1844 insertions(+), 2419 deletions(-)
 create mode 100644 
pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableReloadResource.java
 create mode 100644 
pinot-controller/src/test/java/org/apache/pinot/controller/api/resources/PinotTableReloadResourceTest.java
 copy 
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/{DistinctCountSmartHLLAggregationFunction.java
 => DistinctCountSmartHLLPlusAggregationFunction.java} (64%)
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/query/executor/ThrottleOnCriticalHeapUsageExecutorTest.java
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/CpuBasedBrokerQueryKillingIntegrationTest.java
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/CpuBasedServerQueryKillingIntegrationTest.java
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/MemoryBasedServerQueryKillingIntegrationTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OOMProtectionEnabledIntegrationTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterCpuBasedServerQueryKillingTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedBrokerQueryKillingTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerQueryKillingTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerResourceUsageAccountantTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterResourceUsageAccountantTest.java
 delete mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineGRPCServerOOMAccountingIntegrationTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to