This is an automated email from the ASF dual-hosted git repository.
FrankChen021 pushed a change to branch dependabot/maven/jackson.version-2.22.1
in repository https://gitbox.apache.org/repos/asf/druid.git
omit bf425c42fb1 build(deps): update Jackson license metadata
omit 9b45d8eb905 build(deps): bump jackson.version from 2.21.4 to 2.22.1
add c612a1e82d5 feat: composite partial load matcher and load spec (#19791)
add 4e15d6ef99d fix: fix query context precedence layer for
datasource-level per-segment timeout (#19654)
add 86b6ae95aaf feat: add `skipIntervals` to `DataSourceCompactionConfig`
(#19792)
add 8a2d11cfd45 build(deps): bump io.grpc:grpc-bom from 1.70.0 to 1.83.0
(#19841)
add 87f86146001 build(deps): bump jackson.version from 2.21.4 to 2.22.1
add 37c096f88fc build(deps): update Jackson license metadata
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 (bf425c42fb1)
\
N -- N -- N refs/heads/dependabot/maven/jackson.version-2.22.1
(37c096f88fc)
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:
docs/configuration/index.md | 1 +
docs/data-management/automatic-compaction.md | 13 +
.../compact/AutoCompactionUpgradeTest.java | 2 +-
extensions-contrib/grpc-query/pom.xml | 2 +-
.../catalog/compact/CatalogCompactionTest.java | 4 +-
.../compact/CascadingReindexingTemplate.java | 6 +
licenses.yaml | 12 +-
pom.xml | 5 +-
.../apache/druid/java/util/common/JodaUtils.java | 4 +-
.../apache/druid/query/QueryConfigProvider.java | 2 +-
.../segment/loading/CompositePartialLoadSpec.java | 217 ++++++++
.../loading/PartialClusterGroupLoadSpec.java | 6 +-
.../druid/segment/loading/PartialLoadSpec.java | 41 +-
.../segment/loading/PartialProjectionLoadSpec.java | 6 +-
.../loading/CompositePartialLoadSpecTest.java | 612 +++++++++++++++++++++
.../druid/client/BrokerViewOfBrokerConfig.java | 45 +-
.../apache/druid/guice/PartialLoadSpecModule.java | 10 +-
.../org/apache/druid/server/QueryLifecycle.java | 107 ++--
.../apache/druid/server/QueryLifecycleFactory.java | 23 +-
.../druid/server/broker/BrokerDynamicConfig.java | 36 ++
.../druid/server/broker/QueryConfigSnapshot.java | 91 +++
.../DataSourceCompactibleSegmentIterator.java | 55 +-
.../CatalogDataSourceCompactionConfig.java | 15 +-
.../coordinator/DataSourceCompactionConfig.java | 6 +
.../InlineSchemaDataSourceCompactionConfig.java | 23 +
.../rules/CompositePartialLoadMatcher.java | 198 +++++++
.../coordinator/rules/PartialLoadMatcher.java | 3 +-
.../druid/client/BrokerViewOfBrokerConfigTest.java | 52 ++
...egmentLocalCacheManagerPartialRuleLoadTest.java | 94 ++++
.../server/PerSegmentTimeoutInjectionTest.java | 146 ++---
.../apache/druid/server/QueryLifecycleTest.java | 20 +-
.../org/apache/druid/server/QueryResourceTest.java | 13 +-
.../server/broker/BrokerDynamicConfigTest.java | 45 ++
.../DataSourceCompactibleSegmentIteratorTest.java | 101 +++-
.../compaction/NewestSegmentFirstPolicyTest.java | 33 ++
.../CatalogDataSourceCompactionConfigTest.java | 38 ++
...InlineSchemaDataSourceCompactionConfigTest.java | 17 +
.../coordinator/duty/CompactSegmentsTest.java | 1 +
.../rules/CompositePartialLoadMatcherTest.java | 457 +++++++++++++++
...WildcardClusterGroupPartialLoadMatcherTest.java | 10 +
.../druid/sql/calcite/run/NativeQueryMaker.java | 4 +-
.../query-context-completions.ts | 4 +
42 files changed, 2297 insertions(+), 283 deletions(-)
create mode 100644
processing/src/main/java/org/apache/druid/segment/loading/CompositePartialLoadSpec.java
create mode 100644
processing/src/test/java/org/apache/druid/segment/loading/CompositePartialLoadSpecTest.java
create mode 100644
server/src/main/java/org/apache/druid/server/broker/QueryConfigSnapshot.java
create mode 100644
server/src/main/java/org/apache/druid/server/coordinator/rules/CompositePartialLoadMatcher.java
create mode 100644
server/src/test/java/org/apache/druid/server/coordinator/rules/CompositePartialLoadMatcherTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]