Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
47925aa
fix: Close exposure to potential NPE in S3Utils.useHttps (#19504)
capistrant May 22, 2026
b3b1ff2
docs: Stop Referring to MSQ as an extension (#19507)
GWphua May 22, 2026
50ce465
refactor: remove deprecated zookeeper-based task runner (#19500)
clintropolis May 22, 2026
f0d06c4
ci: fix unit tests, bump actions-timeline (#19509)
clintropolis May 23, 2026
215f415
feat: partial segment cache infrastructure (#19496)
clintropolis May 23, 2026
06ef24c
feat: ingest support for numeric typed ExpressionLambdaAggregatorFact…
clintropolis May 23, 2026
177cada
fix: OrcInputFormat concurrent FileSystem init race condition (#19491…
Shekharrajak May 25, 2026
ab12df6
feat: add getDimensionRangeSet support to LikeDimFilter for equality …
clintropolis May 28, 2026
7bdbc2d
Remove raw types in ChainedExecutionQueryRunner (#19529)
GWphua May 28, 2026
5ba191b
perf: disable processing thread renaming by default (#19518)
GWphua May 28, 2026
2f35573
build(deps): Bump jackson to `2.21.3` (#19528)
amaechler May 29, 2026
cf27558
feat: resetOffsetsAndBackfill using bounded stream supervisor (#19477)
aho135 May 30, 2026
efa6ed4
Bump caffeine to 3.2.4 and errorprone to 2.49.0 (#19527)
amaechler May 31, 2026
530a30a
feat: Web console support for resetToLatestAndBackfill (#19533)
aho135 Jun 1, 2026
120be6e
refactor: adjust diskNormalized strategy to scale cost exponentially …
jtuglu1 Jun 1, 2026
e61fddc
feat: add simd add/sub/mul expressions (#19512)
clintropolis Jun 1, 2026
b876851
refactor: remove deprecated curator ServiceAnnouncer stuff (#19523)
clintropolis Jun 1, 2026
b210c99
minor: scale AWSClientConfig default maxConnections with available pr…
clintropolis Jun 2, 2026
fd6befe
Fix a small typo in bin/start-druid (#19544)
winsmith Jun 2, 2026
11b0b59
feat: Include supervisorId in Kafka consumer metrics. (#19525)
gianm Jun 3, 2026
03ab4e2
feat: Background fetching of files for SQL EXTERN. (#19539)
gianm Jun 3, 2026
9d82a0e
fix: Retain exception that triggered Dart query cancellation. (#19553)
gianm Jun 4, 2026
4f83cee
fix: Track load completion in StorageLocationVirtualStorageManager. (…
gianm Jun 4, 2026
7426949
fix: thrownAway reason incorrectly defaulting to null for streaming t…
jtuglu1 Jun 5, 2026
d06aa83
fix: retry transient AWS credential resolution failures (#19558)
jtuglu1 Jun 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/unit-and-integration-tests-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !cancelled() }}
steps:
- uses: Kesin11/actions-timeline@54d513e0b5ff1158f1cf8321108d666a5a6c1fca
- uses: Kesin11/actions-timeline@44c9c178ffb2fb1d9859614a3ffa79ccfb77565e
20 changes: 20 additions & 0 deletions benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,26 @@

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<inherited>true</inherited>
<configuration>
<release>${maven.compiler.release}</release>
<annotationProcessors>
<annotationProcessor>org.openjdk.jmh.generators.BenchmarkProcessor</annotationProcessor>
</annotationProcessors>
<annotationProcessorPaths combine.children="append">
<path>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down
Loading
Loading