This is an automated email from the ASF dual-hosted git repository. gortiz pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
from 1d251b8b1f Make KafkaConsumerFactory compatible with multi-topics ingestion (#15094) add ad7780d20e Implement MdcExecutor to manage MDC context for query execution (#15072) No new revisions were added by this update. Summary of changes: .../query/executor/ServerQueryExecutorV1Impl.java | 23 ++- .../core/query/request/ServerQueryRequest.java | 9 + .../pinot/core/query/scheduler/QueryScheduler.java | 26 +-- .../apache/pinot/query/runtime/QueryRunner.java | 107 +++++----- .../runtime/executor/OpChainSchedulerService.java | 3 + .../pinot/query/runtime/operator/OpChain.java | 6 + .../runtime/plan/OpChainExecutionContext.java | 14 ++ .../plan/server/ServerPlanRequestUtils.java | 21 +- .../spi/executor/DecoratorExecutorService.java | 215 +++++++++++++++++++++ .../org/apache/pinot/spi/executor/MdcExecutor.java | 107 ++++++++++ .../apache/pinot/spi/trace/LoggerConstants.java | 73 +++++++ pinot-tools/src/main/resources/log4j2.xml | 7 +- 12 files changed, 547 insertions(+), 64 deletions(-) create mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/executor/DecoratorExecutorService.java create mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/executor/MdcExecutor.java create mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/trace/LoggerConstants.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org