Gian Merlino
f6adacf5d6
SuperSorter: Store readOnly output channels. ( #16928 )
...
Without the call to readOnly, each output channel retains a 1 MB allocator,
leading to excessive memory use. Fixes regression from #16775 .
2024-08-20 23:10:29 -07:00
Akshat Jain
0ce1b6b22f
MSQ window function: Take segment granularity into consideration to fix NPE issues with ingestion ( #16854 )
...
This PR changes the logic for window functions to use the resultShuffleSpecFactory for the last window stage.
2024-08-21 10:06:04 +05:30
Gian Merlino
2bd31603de
FrameFile: Improve error messages. ( #16912 )
...
* FrameFile: Improve error messages.
1) Include frame file path in error messages.
2) Adhere better to style (no space before brackets).
* Fix test.
2024-08-20 11:56:30 -07:00
benkrug
7b8573ed3d
Update index.md - remove the extra word "does" from one sentence. ( #16922 )
...
Co-authored-by: 317brian <53799971+317brian@users.noreply.github.com>
2024-08-20 11:06:12 -07:00
Jakub Matyszewski
82d9ff9cc8
Add docs for log audit manager ( #16927 )
...
* Add docs for log audit manager
* Adjust descriptions
2024-08-20 15:58:31 +05:30
Rishabh Singh
bc4b3a2f91
Filter out tombstone segments from metadata cache ( #16890 )
...
* Fix build
* Support segment metadata queries for tombstones
* Filter out tombstone segments from metadata cache
* Revert some changes
* checkstyle
* Update docs
2024-08-20 11:35:02 +05:30
Clint Wylie
518f642028
remove isDescending from Query interface, move to TimeseriesQuery ( #16917 )
...
* remove isDescending from Query interface, since it is only actually settable and usable by TimeseriesQuery
2024-08-19 23:02:45 -07:00
Vishesh Garg
fb7103ccef
Change dimensionToSchemaMap to dimensionSchemas and override ARRAY_INGEST_MODE to array ( #16909 )
...
A follow-up PR for #16864 . Just renames dimensionToSchemaMap to dimensionSchemas and always overrides ARRAY_INGEST_MODE context value to array for MSQ compaction.
2024-08-20 10:30:24 +05:30
Kashif Faraz
2198001930
Remove unused cachingCost strategy runtime properties ( #16918 )
2024-08-19 10:15:03 +05:30
Vadim Ogievetsky
4e33ce2b21
fix collapsing in column tree ( #16910 )
2024-08-18 15:11:28 -07:00
Akshat Jain
a56b5c018d
Propagate TooManyRowsInAWindowFault error message properly to the user ( #16906 )
...
* Propagate TooManyRowsInAWindowFault error message properly to the user
* Add TooManyRowsInAWindowFault to MSQFaultSerdeTest
2024-08-18 10:03:45 +05:30
Benedict Jin
688b4cf164
Fix flaky test in ParallelMergeCombiningSequenceTest ( #16907 )
2024-08-18 10:02:50 +05:30
Gian Merlino
806649f8af
SQL: Fix nullable DATE, TIMESTAMP reduction. ( #16915 )
...
Reduction of nullable DATE and TIMESTAMP expressions did not perform
a necessary null check, so would in some cases reduce to
1970-01-01 00:00:00 (epoch) rather than NULL.
2024-08-16 22:41:12 -07:00
Vadim Ogievetsky
422183ee70
Web console: expose handoff API ( #16586 )
...
* don't start completions on numbers... it makes numbers hard to enter
* add handoff dialog
* fix placeholder
* Update web-console/src/dialogs/supervisor-handoff-dialog/supervisor-handoff-dialog.tsx
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
* Update web-console/src/dialogs/supervisor-handoff-dialog/supervisor-handoff-dialog.tsx
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
* Update web-console/src/dialogs/supervisor-handoff-dialog/supervisor-handoff-dialog.tsx
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
* feedback fixes
* update snapshot
---------
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
2024-08-16 14:39:16 -07:00
Edgar Melendrez
c968e73171
[Docs] updating transformation during ingestion tutorial ( #16845 )
...
* first major revision of tutorial
* more edits
* re-ID the file to reflect new content + redirect
* renaming file
* Apply suggestions from code review
Co-authored-by: Victoria Lim <vtlim@users.noreply.github.com>
* addressing suggestions
* adding column names
* Update docs/tutorials/tutorial-transform.md
* Update docs/tutorials/tutorial-transform.md
* Addressing suggestions
* Apply suggestions from code review
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
* adding trademark logo and moving paragraph
* decided to shorten final paragraph
---------
Co-authored-by: Victoria Lim <vtlim@users.noreply.github.com>
Co-authored-by: Benedict Jin <asdf2014@apache.org>
Co-authored-by: Katya Macedo <38017980+ektravel@users.noreply.github.com>
2024-08-16 11:39:57 -07:00
Clint Wylie
4283b270e3
rework cursor creation ( #16533 )
...
changes:
* Added `CursorBuildSpec` which captures all of the 'interesting' stuff that goes into producing a cursor as a replacement for the method arguments of `CursorFactory.canVectorize`, `CursorFactory.makeCursor`, and `CursorFactory.makeVectorCursor`
* added new interface `CursorHolder` and new interface `CursorHolderFactory` as a replacement for `CursorFactory`, with method `makeCursorHolder`, which takes a `CursorBuildSpec` as an argument and replaces `CursorFactory.canVectorize`, `CursorFactory.makeCursor`, and `CursorFactory.makeVectorCursor`
* `CursorFactory.makeCursors` previously returned a `Sequence<Cursor>` corresponding to the query granularity buckets, with a separate `Cursor` per bucket. `CursorHolder.asCursor` instead returns a single `Cursor` (equivalent to 'ALL' granularity), and a new `CursorGranularizer` has been added for query engines to iterate over the cursor and divide into granularity buckets. This makes the non-vectorized engine behave the same way as the vectorized query engine (with its `VectorCursorGranularizer`), and simplifies a lot of stuff that has to read segments particularly if it does not care about bucketing the results into granularities.
* Deprecated `CursorFactory`, `CursorFactory.canVectorize`, `CursorFactory.makeCursors`, and `CursorFactory.makeVectorCursor`
* updated all `StorageAdapter` implementations to implement `makeCursorHolder`, transitioned direct `CursorFactory` implementations to instead implement `CursorMakerFactory`. `StorageAdapter` being a `CursorMakerFactory` is intended to be a transitional thing, ideally will not be released in favor of moving `CursorMakerFactory` to be fetched directly from `Segment`, however this PR was already large enough so this will be done in a follow-up.
* updated all query engines to use `makeCursorHolder`, granularity based engines to use `CursorGranularizer`.
2024-08-16 11:34:10 -07:00
Vishesh Garg
e37fe93f09
Add support for a custom DimensionSchema
in DataSourceMSQDestination
( #16864 )
...
This PR adds support for passing in a custom DimensionSchema map to MSQ query destination of type DataSourceMSQDestination
2024-08-16 15:24:49 +05:30
Edgar Melendrez
5b94839d9d
[Docs] Batch08: adding examples to string functions ( #16871 )
...
* batch08 completed
* reviewing batch08
* apply corrections suggestions by @FrankChen021
2024-08-16 10:15:30 +08:00
Hugh Evans
e91f680d50
Removed deprecated deep storage properties ( #16904 )
2024-08-15 11:54:34 -07:00
Hugh Evans
6cfdeb3894
Added a topic listing reserved keywords ( #16843 )
2024-08-15 10:25:09 -07:00
Hugh Evans
8c030feefc
Migration guide fixes ( #16902 )
...
* Fix typo in table header
* Fixed example NVL result
2024-08-15 09:26:34 -07:00
Sree Charan Manamala
964cf47bb5
fix NPE ( #16897 )
2024-08-15 18:12:22 +08:00
Vadim Ogievetsky
8181ef627a
add useConcurrentLocks toggle ( #16899 )
2024-08-14 13:44:53 -07:00
Vadim Ogievetsky
ca82ecd352
bump axios to 1.7.4 ( #16898 )
2024-08-14 13:42:26 -07:00
Maytas Monsereenusorn
c2ddff399d
Fix Parquet Reader when ingestion need to read columns in filter ( #16874 )
2024-08-14 12:31:38 -07:00
Laksh Singla
204533cade
Remove Query ID verification check from MSQ workers ( #16886 )
...
Upgrade/Downgrade between any version till or before Druid 30 where the newer version runs a worker task, while the older version runs a controller task can fail. The patch removes that verification check till its safe to add it back.
2024-08-14 10:22:19 +05:30
Abhishek Radhakrishnan
acadc2df20
Handle Delta StructType, ArrayType and MapType ( #16884 )
...
Handle the following Delta complex types:
a. StructType as JSON
b. ArrayType as Java list
c. MapType as Java map
Generate and add a new Delta table complex-types-table that contains the above complex types for testing.
Update the tests to include a parameterized test with complex-types-table, with the expectations defined in ComplexTypesDeltaTable.java.
2024-08-13 07:50:03 -07:00
Adarsh Sanjeev
c6da2f30e8
Add fieldReader for row based frames ( #16707 )
...
Add a new fieldReaders#makeRAC for RowBasedFrameRowsAndColumns.
2024-08-13 14:04:41 +05:30
Rishabh Singh
f67ff92d07
[bugfix] Run cold schema refresh thread periodically ( #16873 )
...
* Fix build
* Run coldSchemaExec thread periodically
* Bugfix: Run cold schema refresh periodically
* Rename metrics for deep storage only segment schema process
2024-08-13 11:44:01 +05:30
Abhishek Radhakrishnan
d7dfbebf97
[Docs]: Fix typo and update broadcast rules section ( #16882 )
...
* Fix typo in waitUntilSegmentsLoad.
* Add a note on configuring druid.segmentCache.locations for broadcast rules.
* Update docs/operations/rule-configuration.md
Co-authored-by: Victoria Lim <vtlim@users.noreply.github.com>
---------
Co-authored-by: Victoria Lim <vtlim@users.noreply.github.com>
2024-08-12 13:55:33 -07:00
Gian Merlino
efe0044f9e
Use fuzzy matchers for compaction bytes asserts. ( #16870 )
...
* Use fuzzy matchers for compaction bytes asserts.
This still enables us to test that the bytes are zero and nonzero
when they're supposed to be, without having to ge them exactly
right. The need to get bytes exactly right makes it difficult to
ensure ITs pass when making changes to default segment metadata.
* Additional fuzziness.
2024-08-12 10:00:33 +08:00
Rushikesh Bankar
4ef4e75c5d
Fix the issue of missing implementation of IndexerTaskCountStatsProvider for peons ( #16875 )
...
Bug description:
Peons to fail to start up when `WorkerTaskCountStatsMonitor` is used on MiddleManagers.
This is because MiddleManagers pass on their properties to peons and peons are unable to
find `IndexerTaskCountStatsProvider` as that is bound only for indexer nodes.
Fix:
Check if node is an indexer before trying to get instance of `IndexerTaskCountStatsProvider`.
2024-08-10 14:53:16 +05:30
Vadim Ogievetsky
483a03f26c
Web console: Server context defaults ( #16868 )
...
* add server defaults
* null is NULL
* r to d
* add test
* typo
2024-08-09 14:46:59 -07:00
Adithya Chakilam
a7dd436a32
Check if supervisor could be idle on startup ( #16844 )
...
Fixes #13936
In cases where a supervisor is idle and the overlord is restarted for some reason, the supervisor would
start spinning tasks again. In clusters where there are many low throughput streams, this would spike
the task count unnecessarily.
This commit compares the latest stream offset with the ones in metadata during the startup of supervisor
and sets it to idle state if they match.
2024-08-09 14:42:48 +05:30
Akshat Jain
3d6cedb25f
Fix IndexOutOfBoundsException for MSQ window function queries with empty RAC ( #16865 )
...
* Fix IndexOutOfBoundsException for MSQ window function queries with empty RAC
2024-08-09 11:39:53 +05:30
Zoltan Haindrich
01fed27890
update column types
2024-08-09 05:08:35 +00:00
zachjsh
cb09b572e6
Fix Druid table schema resolution when table defined in catalog and has schema manager ( #16869 )
...
* SQL syntax error should target USER persona
* * revert change to queryHandler and related tests, based on review comments
* * add test
* Properly handle Druid schema blending with catalog definition and segment metadata
* * add javadocs
2024-08-08 21:21:03 -04:00
Zoltan Haindrich
769dacc64c
correct resultset
2024-08-08 13:58:27 +00:00
Zoltan Haindrich
f00352cd36
Add kttm-nested dataset and some usage sessions of it
...
Squashed commit of the following:
commit 3075269bdefbbfeeb3c7958751d9c44dd017944f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 13:48:19 2024 +0000
rename files
commit ad8d37a235a89cdf92ea3c1e9fdda9dff87fa7ce
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 13:44:09 2024 +0000
rename
commit 8fc4efe19eba10e7d6a82042aedec0ec7c04c77c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 13:43:31 2024 +0000
cleanup kttm loader
commit 113a4b6f4c0a450581600aa7483a5163ee00e937
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 13:38:10 2024 +0000
weed out infoschema stuff
commit 1eb9b5070c16a42a19ab9774d2b0378e090097df
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 13:17:27 2024 +0000
reduce crap
commit 1745ececc77cae93ed9130fd6e9e83fddd44471a
Merge: 9dd2bff6cc 1f8473d82b
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 09:49:52 2024 +0000
Merge branch 'quidem-msq' into quidem-qa
commit 9dd2bff6ccdb30c927a256ff7ab6ebf491508008
Merge: 7120f84e36 fda0d63e44
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 09:49:08 2024 +0000
Merge branch 'quidem-record' into quidem-qa
commit 1f8473d82be23a57e929fed796e5d5b2dbaccf67
Merge: 4e5d7c9c21 6cd8c6be22
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Aug 8 09:46:40 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-msq
commit 4e5d7c9c219cde28881e9f704d96770e94b28001
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Aug 7 15:58:32 2024 +0000
remove CompositeDruidModule
commit 6cef3eb6e80c152676d1c98e47aac70494010c54
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Aug 7 07:30:25 2024 +0000
disable differently
commit 73904b520d2111d3fe966ba167f97988462ee0e2
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Aug 7 05:48:27 2024 +0000
nested
commit ad5768e5128e457bf9d0c890a8920a13da43aa6f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Aug 7 05:43:20 2024 +0000
migrate assume
commit 039d9c88f83810428834d4dee4bbae040ed942f1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 20:15:16 2024 +0000
mask 2 failing testcases
commit 7a6ba55fa254e40fd8cdfae7046f506b2a6eb3b6
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 20:05:00 2024 +0000
Revert "explore failure"
This reverts commit 5bc32d567888b14cb0d5e48d82beff4f9506cba6.
commit 5bc32d567888b14cb0d5e48d82beff4f9506cba6
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 20:04:58 2024 +0000
explore failure
commit 8a92ec6b2e4a5e589d453edaaccc9b3bd9a4fe22
Merge: dbe2674971 ebea34a814
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 18:46:39 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-msq
commit dbe267497187cc7038ea77937a3f3c6c105a29ca
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:45:43 2024 +0000
remove/cleanup/etc
commit 23c6f3bd96046ff3a10d914a49d52a3eb11c050b
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:33:16 2024 +0000
use other authmapper
commit 7740832995eebda21472166983bc67512c2ec940
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:14:44 2024 +0000
undo
commit 3e2b59f808dcf2cd8aa6b0d55c1190bf06052bd4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:14:16 2024 +0000
Revert "shared tries"
This reverts commit 34651e70e51c64ac581ba6f3a3186453d6f575cf.
commit 34651e70e51c64ac581ba6f3a3186453d6f575cf
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:14:12 2024 +0000
shared tries
commit 449a7f3a733522fda9f36676ca6545f51abd4d3e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 16:13:56 2024 +0000
move stuff
commit 69a39a42da94ae6b645696860b009457d62d2ae2
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 15:28:58 2024 +0000
Revert "connection supplies properties approach"
This reverts commit 2700557a55921145877b4dd51b301cc48815aa09.
commit 2700557a55921145877b4dd51b301cc48815aa09
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 15:28:56 2024 +0000
connection supplies properties approach
commit 42cc5d62a858e16da17b437d1c75ad76449797e7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 15:28:36 2024 +0000
apidoc
commit d5b82af4a98bad9c9fea90333853253a1ff05330
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 14:38:30 2024 +0000
cleanup
commit 21016a28a2bf434bf16f333e5466030c50dad9b3
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 14:21:28 2024 +0000
remove ifs
commit 3f507d86480dbf856d1dab5d8442054690a45cd8
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 14:20:42 2024 +0000
ignore duplicate queries
commit 19fe5867b133240799accd33c3b6f99189f0dada
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 14:13:50 2024 +0000
fix one fixme
commit 941c39aae593d325578f6cf313d12d614bda4e36
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 13:59:13 2024 +0000
it does work
commit 00ee182d7551576a2384a02f95c33f072fd96e82
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 13:55:23 2024 +0000
add fixme/etc
commit 91d5d14bf10d4f44e38dd836db1cde694f2b8d43
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 11:44:02 2024 +0000
remove builtintypes
commit 29b2b559d9221bed24707c30c5e2c3968431beed
Merge: 6d38e8f075 c3aa033e14
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 11:42:04 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-msq
commit 6d38e8f075cb05f46bff1575f2878eb777d58948
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 11:41:54 2024 +0000
clenaup
commit f867db774a6e908ac0cf6dcce4398a42290d3e72
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 10:31:32 2024 +0000
fix pom
commit 61c3b16b17e35d5f6f9afe6d3aa044a83d6d9ad5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 09:44:27 2024 +0000
checkstyle
commit 130252bb5e33dcd6dc35ff880742aff7d14aac37
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 09:20:13 2024 +0000
fix; move class
commit 3b77784e6e73819d0195e0060f9c0eba100a7391
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 08:13:25 2024 +0000
add test
commit 22d8a4b872e3561a693e02d71694bccf52410bf1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 07:37:24 2024 +0000
add compositemodule
commit 34ab9113992019a2eb0aee93183a9f324c52287e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 07:25:42 2024 +0000
fix intellij errors
commit 5e5c94d6d849881c3aba0165f57039c3841e41fc
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 07:23:08 2024 +0000
cleanup
commit 93457c6b3eac56f40849a2e102d5d37230f3bbe0
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 05:50:39 2024 +0000
cleanup
commit 12cfde805e0e3e52c1a15ce92087bf9bb92377eb
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Aug 6 05:50:11 2024 +0000
update
commit c8f91478106a2e78676dcc9ab4a3e2004cbb7af2
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 14:23:54 2024 +0000
minor fixes
commit 6d339d17065bb1401865c10fe3672a422508d940
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 14:21:25 2024 +0000
rename class
commit 181458c8730c3667c26992506162838d29f0e3d0
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 14:19:52 2024 +0000
mask more
commit 4c722f271fbc80e841c131a9a3531b90161152bd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 14:15:06 2024 +0000
Revert "this doesnt work"
This reverts commit 106394874987e1db34bbaed0c4e81393e6429b12.
commit 106394874987e1db34bbaed0c4e81393e6429b12
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 14:15:02 2024 +0000
this doesnt work
commit c40474285c8d73e7a28d2aa2e405ad4cac11a0f9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 13:49:08 2024 +0000
updates
commit f4af51ef7f6994084d3ebcc1bec523c868ea2c5f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 13:41:53 2024 +0000
extend/cleanup/etc
commit bc70443c7f1119061a486bc749fe1b29aac38d67
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 13:20:13 2024 +0000
update few more
commit 841ab462ddf969f99dcbfcff516b33812fd681ab
Merge: 929e68c11a fda0d63e44
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 13:00:59 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit fda0d63e44521f7080bf9f269adf0c656d8eebfe
Merge: bb23ace518 26e3c44f4b
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 13:00:50 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-record
commit 929e68c11a68201477224991a9cae0c33998ed52
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 12:59:50 2024 +0000
undo unrelated
commit 436ba18815edc639b402a378a9c9a6edec2668fe
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 12:59:19 2024 +0000
x
commit 70e46eadb9daa2aaeec93f54c3e1b31cb6905fe3
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 09:07:46 2024 +0000
update
commit 090f937d5825a22cf5ee2d630b5ae2840ff7b055
Merge: 5e81a026e9 bb23ace518
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 09:03:53 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit bb23ace518bc2192ed8b6590e93bac5a99d6d6b2
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 08:59:48 2024 +0000
builtintypes instead nesteddata
commit e6add9ea84c23d8e4718f721b0f6c86d4a792d7d
Merge: a03fb49f4f c7eacd079e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Aug 5 07:04:02 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-record
commit 5e81a026e922827cfa1aa17712f59acdf9d7d621
Merge: 5f6290eb54 a03fb49f4f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 31 15:27:59 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit a03fb49f4fa855071d3609f6838dce6a82525c3c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 16:34:06 2024 +0000
remove exception
commit 5f6290eb54e6ee6faf6193600c4459b9ac364d4f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 16:11:57 2024 +0000
use updated hook class
commit de207c729562d1844e0a2fac5289cb9f1b6f1e9f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 16:04:11 2024 +0000
move key
commit b1ab252b31461e306ac6f38423688a0cd66f6b6b
Merge: 4157a8f105 ca121aa083
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 16:03:33 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit ca121aa083ca01c45e6f457e56aa1a1f1616d27e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 14:29:02 2024 +0000
remove firehose
commit eb2a047e4bd59046978d909e3f5712d3c2d419a2
Merge: 57980066b3 954aaafe0c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 14:24:37 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-record
commit 57980066b3089c4a59203d5aa3aced023a69ee40
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 13:30:52 2024 +0000
rename module
(cherry picked from commit 8d40cca50a3e4c8098f49f5d588c7b7220b76788)
commit 7f99ee24d73a67e882afb2250d5389591deee2ec
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 14:03:46 2024 +0000
fix copy-pasted crap
commit b345dd9d034fc86187a378f56e2e28d7ae606adf
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 13:25:40 2024 +0000
updates/fix style/etc
commit df4224568558f07ebb672a058eeaf4e9e3e00522
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 13:14:51 2024 +0000
add apidoc/etc
commit 9ac26e3a89ee237a38046a7d95949df82b855d4f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 12:29:36 2024 +0000
wire-in hookdispatcher thru connection/etc
commit 78b75d3e8ee776e990094c4e4e5125816bbb6fb9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 10:42:41 2024 +0000
move more to non-static
commit f6cc540368c54480ebaae6e9ecee5caca872e513
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 10:33:38 2024 +0000
use druidhookdispatcherr#1
commit ce667eeb5e43cd42c676ed8a577f2a85149ecc46
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 10:22:28 2024 +0000
move stuff around / prepare to unglobalize
commit 4157a8f105a01a5c101fea076b7e55cc9e305bff
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jul 30 10:16:03 2024 +0000
add/.etc
commit ed9ef1f635e94c86eade743d4af4efd2101a4e09
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 26 03:37:28 2024 +0000
checkstryle
commit 8bb38a04a5e4e895236b6e93b60faedb9bf3556d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 25 03:33:33 2024 +0000
fix FIMXE
commit d705c2759bafe6bc042c440c4ce162a50c80f34c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 25 03:05:04 2024 +0000
cleanup
commit a489e19242601b2c31f593b6381ce08809d957ea
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 17:26:07 2024 +0000
move to new file
commit d010b488a7c2934c1e0fdcd13c0b3976e361c0a3
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 17:23:15 2024 +0000
cleanup
commit 7428da51de61437346dd01b34d4f51121a2af0c4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 17:20:42 2024 +0000
cleanup
commit 0be1f81d7e0921a087e0fde04b1f8999e0de6014
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 17:17:15 2024 +0000
remove druidPrettyprinter
commit 7cfbfdc3ee659f4f2a8f3a2a98740581829569f0
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 17:14:30 2024 +0000
add DruidPrettyPrinter
commit e60a200d95a76f2d030fbaf106bc4452a443cb33
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 15:16:39 2024 +0000
format/etc
commit a9dcb2da4687452a362793b0751271daaa19b10f
Merge: 31e97324ce d227029b6b
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 24 10:59:41 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit d227029b6b6317b54b7cd10ca7576feaa26c3124
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 19:16:46 2024 +0000
undo unrealted change
commit f7247e1bb78b87d9f13ad5ff54707ccce3446e5a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 15:13:17 2024 +0000
use entryset
commit b38935a45065d67a90d94b531b128f008d0f64d9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 11:44:23 2024 +0000
add test; fb
commit 31e97324ceffb4d42ebf6625402ca923661081d5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 11:36:51 2024 +0000
x
commit e2a54b5758995157ad6f5b33e5ef32f1291c2429
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 08:42:58 2024 +0000
update
commit 361149b09714437a0eef5befcfaaedd3d35744e7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 07:29:50 2024 +0000
m
commit bc7174cb6afd7b5107211289b5429447355cd940
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 04:30:15 2024 +0000
cleanup
commit 9cf723adae5f2eb3c2f43102edfb3d7a95296f17
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 04:29:05 2024 +0000
rename
commit 7a34b6e0929b7b90588d6922d396acb6dedec81c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri Jul 19 04:28:02 2024 +0000
cleanup
commit d216b934fc8d0c294d5f207b760d0638b02d2bfc
Merge: 76ff3f26e1 e388140b2a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 18 11:41:21 2024 +0000
Merge remote-tracking branch 'kgyrtkirk/quidem-record' into quidem-record
commit 76ff3f26e1e74bb9b5960e2e316b16bf2455ea5f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 18 07:25:19 2024 +0000
add supress
commit eb4fd9f66c768c24e8e6407d326719b073ff6885
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 18 07:24:56 2024 +0000
removedup
commit e388140b2a25787900eaa85675a00ce4f50f339a
Author: Benedict Jin <asdf2014@apache.org>
Date: Thu Jul 18 15:06:59 2024 +0800
Apply suggestions from code review
commit 47aeb016df3c36e911fd1f19d7c915f46c5621cd
Merge: 70ff2a3e97 06b68b6c89
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 18 05:48:32 2024 +0000
Merge branch 'quidem-record' into quidem-msq
commit 06b68b6c896e3e99a015098c6457775833204d36
Merge: 82436df585 b53c26f5c5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jul 18 05:48:13 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-record
commit 70ff2a3e970eef6ad6e337d292bf57e3b52a9de5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 19:48:08 2024 +0000
add exploratory msqPlan cmd
commit 8b26e490e985c88f6bcadd54c2e41c99a64b397e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 19:30:33 2024 +0000
fix types/resultset/etc
commit c59f1adcc80d02a1e6a7d6feccbc7cf8aa1054ce
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:42:22 2024 +0000
updates
commit 95ca0a9f5d2d955f2cfee4bb92e5e0cc24c62b3c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:41:09 2024 +0000
cleanup
commit b100e982a4673913a8f58dcadb1ff08ebafb33e0
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:40:30 2024 +0000
make/etc
commit 0811d801fb03bdefa78f91f6a15cd50d101271cd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:33:10 2024 +0000
make query run
commit 97c32ca3de7c4df5726992c7ebbad476d54c833a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:19:08 2024 +0000
less crappy way to run it
commit 6790f9cf8bae1a6260c7e1c4c5ef9b0b9f414f70
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:08:32 2024 +0000
move stuff
commit 51d465df6d51c4d64559d3d633f556a158c4aae3
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 16:04:14 2024 +0000
make engine load via injector for msqdrill
commit 0eaf4c61b98e86323573d64038cd383b485ffe0d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 15:51:57 2024 +0000
removePrint
commit f3cf7781151f2de982e86980b67eb621c053f0f4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 15:48:36 2024 +0000
some stuff
commit 42b3086512ec36191f40ac2fc33af3eef7edd7dd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 15:38:50 2024 +0000
msq-test-0
commit 8ada2ff2385e9a65c47fb70a2f5307a69f89e4dd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 14:44:27 2024 +0000
picked akshat's 3e0202811e05dcd07db5ab47791151fab5dd5772
commit 82436df58565ae8eb8be2092b74a35577f081c67
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 14:34:33 2024 +0000
fix test;disable dep-check for module
commit 2a590eb3ae86e1e6394556940c4e7dcd357cd74c
Merge: 20c543dfc2 01d67ae543
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 17 13:27:54 2024 +0000
Merge commit 'apache/master^^^' into quidem-record
commit 7120f84e368b1fd7045ddbf7fe638565480faefa
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 10 15:48:52 2024 +0000
add resultsets
commit ec50ad4f8df7903e621de85c5d48201290c477be
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 10 15:46:24 2024 +0000
x
commit 400c797401e519dcae7817e76e78769b198be8e9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 10 13:42:30 2024 +0000
expand
commit 4ec1f121bb6ed7bfbe883f3e6cf1f2a478218c34
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jul 10 13:41:30 2024 +0000
from sai
commit 3ff292a00f9ecf17fe75af2f5a7a2cb7c4a85635
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 13:01:41 2024 +0000
use kttm dataset stored in maven repo
commit a56c7534a74b76bdc6dbcccd45f14d87ebf58644
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 12:28:39 2024 +0000
update readme
commit 20c543dfc25a553186df3c967c0a7157609aba86
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 12:27:15 2024 +0000
Revert "Revert "Revert "Revert "Revert "add kttm tx"""""
This reverts commit c559bc3422bc337f97a8bd9e3de6516cdca254d6.
commit cc4e0adcbfdfde3e4472eb18166beb387d4b0747
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 12:06:50 2024 +0000
make synch
commit b8992434a93de5022aa7d6447b3d9eaa84306d47
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 11:13:32 2024 +0000
x
commit c559bc3422bc337f97a8bd9e3de6516cdca254d6
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 10:08:01 2024 +0000
Revert "Revert "Revert "Revert "add kttm tx""""
This reverts commit 9a4d04a818291a937ec3a8a889fb2132fa8ed777.
commit e7141e2080725cd765cfe1e13b8b90a2b9c5eaa4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 10:07:48 2024 +0000
Revert "stuff"
This reverts commit 1b7dd8fd3ce76ec22379a2f4a5227892e2d37385.
commit 1b7dd8fd3ce76ec22379a2f4a5227892e2d37385
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 26 10:07:47 2024 +0000
stuff
commit 1a5faf1afbc9366231fe649a278165a131a102fe
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 25 08:13:31 2024 +0000
more pomxml stuff
commit 3dfe5c4a05c4f68e50bd761d2d9c7144a1cf96ec
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 25 07:08:01 2024 +0000
add reflections
commit 6c02cbdf4d5cbb798802dbef92d054dce978a19d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 25 06:38:13 2024 +0000
fixes
commit 0d76a73c4ccef99ed179b8b0ced6a42a672475a7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 25 06:33:45 2024 +0000
remove final
commit 9a4d04a818291a937ec3a8a889fb2132fa8ed777
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 17:45:08 2024 +0000
Revert "Revert "Revert "add kttm tx"""
This reverts commit 26a16fb4febc9348c496497d78be03b5d81c30c9.
commit 0af3b910f1820d870a33915042f934262e31feda
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 17:45:01 2024 +0000
update readme
commit cefdf96a26e30441967e9663d0e30870972229e6
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 16:45:39 2024 +0000
prep
commit 724212381cf8fa7c13500fbe385f4a9c66021d7e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 16:40:06 2024 +0000
close stuff
commit 26a16fb4febc9348c496497d78be03b5d81c30c9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 16:02:09 2024 +0000
Revert "Revert "add kttm tx""
This reverts commit 82f24e61f27de8feb41b1cb5b983ea9447cc477c.
commit 82f24e61f27de8feb41b1cb5b983ea9447cc477c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 16:01:53 2024 +0000
Revert "add kttm tx"
This reverts commit eda48497e2877e267265fe93f0e642daafffc58e.
commit d329686d5c11752fb884964eb4eed90b51b0ba23
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 15:37:13 2024 +0000
fix msq test
commit 6e48cb86d5b6ae107bce9f5ad80bf79ec074025a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 14:41:45 2024 +0000
move annotation
commit ebb27cf462fb5d4e4c1de9894d6ed9f67294ea02
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 14:40:44 2024 +0000
add extension to disabel when not sql compat
commit 604910ceadd7ef9b4c0b5cdf87c51032ff16563c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 14:26:48 2024 +0000
cleanup
commit b2be5abdd5574d0ad86a90b89f4593d183b44c5c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 14:21:56 2024 +0000
fix md
commit eda48497e2877e267265fe93f0e642daafffc58e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu Jun 20 12:55:15 2024 +0000
add kttm tx
commit 4bd80397153b94ac598cc3725ae8cece571ddf64
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 19 16:49:24 2024 +0000
fix delegate
commit 1a0ab2c3b13474a4862d2258cbe598618dce13e2
Merge: fdf115940b 169a8dbd1a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed Jun 19 12:59:26 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-record
commit fdf115940bf00ed33c19741538bac76c2474b0da
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 16:43:10 2024 +0000
disable record by default
commit 61dd67078444c593dccfdb736916f47a2d05c337
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 16:36:41 2024 +0000
remove not needed
commit dffa3310185627d3379c5f97f3111005e9405b59
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 16:33:22 2024 +0000
updates/etc
commit 64a971f893f489b62a5bfa8be60990f5b25fc4cc
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 16:20:53 2024 +0000
fix autostart
commit d14b7374babe455f6180bfebfa16726aa81e4404
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 15:59:29 2024 +0000
add
commit 74c488679b7cffa417e38e13e3819be6292cd449
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 15:43:48 2024 +0000
cleanup
commit 475f5b5830a101ec184015e640ec60f72bf6550c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 15:43:46 2024 +0000
cleanup
commit e725df71100cd1b6334284c6a12150d612e42f10
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 15:43:35 2024 +0000
fix loader
commit 9df6f3341afac41132a87b99420ff6472453538d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 14:29:02 2024 +0000
add test-jar ref
commit 03661925540fb7da80aecf08a01476d16db0123f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 13:07:48 2024 +0000
updates
commit 75c578ae33a5bd04cffc69579dbff0c841806298
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 12:41:21 2024 +0000
cleanup
commit e81591499cbdeaf925a4e77e613def27a727db49
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 18 08:18:32 2024 +0000
update/etc
commit 6dd62fb7c6bb122fbdbf0537f50cf1a9a8b847ee
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 16:25:03 2024 +0000
updates
commit f5720ce97d90dd5a055910c7bcb883e2514567c4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 16:05:29 2024 +0000
u
commit 7eccf5b5184e697b896b6d4d9e8cdeddcfc28456
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 15:42:48 2024 +0000
add some validation/etc
commit e06e54631e4b25ca3678d53a9c47216f814269ef
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 14:26:48 2024 +0000
fix style; emitter
commit a9952292f2b85c4d00ab78f5f3c22f47f4216e72
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 13:44:01 2024 +0000
cleanup
commit 47696a610821d13e064612dd4a711bc3761ca465
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 17 13:05:11 2024 +0000
updates
commit 7a65938fd6ce27aea63817734cbd10c465758d69
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 11 15:55:55 2024 +0000
use druidhook instead Hook
commit 6c6053eee06dc974b9389c7ca58850c71849c946
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 11 15:22:52 2024 +0000
cleanup
commit 002c3056d47ad58d1dcb72a4775ed201a0eb5e55
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 11 15:14:08 2024 +0000
make test indep from java11
commit 298a470713e5ae1f33e7d2c80e4af25b17c692e3
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 11 14:18:47 2024 +0000
try w/o upgrade guice
commit 2fbd7fe47b9005993655d90066178ce8b46ab2af
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 11 14:08:36 2024 +0000
add
commit 0bcfec4c533934ca7124a3f0286c003a8f71a2b5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 10 14:05:03 2024 +0000
trial
commit d75dcea4dc7a4d55c74a04cc911b9609ea8b1f8e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon Jun 10 08:44:08 2024 +0000
undo integration-tests module changes
commit 90c88aeab062469a899a7e3b0b62cc5e8eb6e35f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue Jun 4 10:16:10 2024 +0000
some pom
commit fb4b32e5b7d93ff41c82344e89d68df6e7474dd2
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 29 16:10:38 2024 +0000
updates
commit d1b4587eaedfd8469c0f2405d60dc6b978507bb7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 16:38:47 2024 +0000
uu
commit 88da8d96598edfe55d48dff4d13804ba2b2d6230
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 16:21:04 2024 +0000
rename
commit ff7abeb0f16126c64c308fa26e0efa68689a16c0
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:54:29 2024 +0000
small cleanup
commit 295c09a03cdcb7dffbf558e0ecd4616977ec4817
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:44:22 2024 +0000
launcher-x
commit 07e05a664d76a8bafacdf32c193ffd512a8b2c62
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:30:06 2024 +0000
cleasnup
commit ff31c14dbafdbf0746b48310aa7a8ce1428373b9
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:27:18 2024 +0000
clkeaup
commit a713b663b010e8a901adc32fe490fc6d0964a53d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:23:04 2024 +0000
undo
commit 6c264f29776fa6d9b99dba6bbaaabd100ae7c471
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:22:42 2024 +0000
move stuff
commit ee195719b7873035a8b09d43ef722821c062dbfd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:17:07 2024 +0000
inline class
commit a1b7f981fbf4cad000da0f361939440dd773b9e1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:09:42 2024 +0000
cleanup
commit b20ee99371b87a7fc488054089d2a4d35bb395fe
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 28 15:07:09 2024 +0000
clean
commit 9ae80f05de94fa615f12e4703e2baf999b2a4382
Merge: ec2ecde235 206363c255
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon May 27 10:52:01 2024 +0000
Merge remote-tracking branch 'kgyrtkirk/quidem-runner-extension-submit' into quidem-record
commit ec2ecde2351befd51645014f9dd4ae7b5ffa11b1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon May 27 10:49:38 2024 +0000
updates
commit 206363c255841d5228b660a5dea9b780b61ec382
Merge: e4ca09d756 4e1de50e30
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon May 27 07:01:43 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-runner-extension-submit
commit e4ca09d75623b46be668a40f8c95775607820a7b
Merge: ad64784a29 44ea4e1c51
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 22 18:43:41 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-runner-extension-submit
commit 4595b0c128ab12c6154874c9a4627f921ac33610
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 14:18:55 2024 +0000
u[pdate
commit ba09e7d1ded45fdf3600831340ad42892f7ceba7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 14:00:02 2024 +0000
add
commit 08b73d196973f44622316fd0ec5b4087d89c870b
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 12:02:46 2024 +0000
Revert "some stuff"
This reverts commit 52598d3bca3c63a9563dba2e5b2fa775cc2e9cbd.
commit 52598d3bca3c63a9563dba2e5b2fa775cc2e9cbd
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 12:02:44 2024 +0000
some stuff
commit ad64784a2946f262c8374d2658ef4183b79945aa
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 06:57:26 2024 +0000
fix test expectation
commit ecdcd0f621f65c9cc15fe5b9e9e714d02b8ce746
Merge: 453c11f9f5 c948201507
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 21 06:53:46 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-runner-extension-submit
commit 453c11f9f56d1a6c633cb19a3352f93dc88ac732
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri May 17 07:12:12 2024 +0000
update exceptions;test output
commit 652cc20597cff33270b03e59f535d897bd4235f8
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri May 17 07:00:57 2024 +0000
use lower_camel for config names
commit 94f93865e8fe39e40e8d79c5242c048d036a1982
Merge: b7b73fa7fe 435b58f101
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 14:22:03 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-runner-extension-submit
commit e7e119b55920307f03a7d0e05c1864daa75cf080
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 13:33:27 2024 +0000
reduce copypaste
commit fc9a6c7740231a5c429b0e7b05c04af948219de7
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 13:23:45 2024 +0000
move/etc
commit cabf2a31c3ebfed34f44a26e5ad61e5c905f8022
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 13:19:30 2024 +0000
fix
commit 1d2a79f5becbc081a4972a652b853a68ae55ff5f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 13:01:53 2024 +0000
cleanup
commit 1fb9fac1592c98177f90a0a2d5c4ab38dbfa97e1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 12:59:20 2024 +0000
remove cl
commit 76ffbfb7cf896779f7cf0e452c3c5c09c13a0b0f
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 12:50:38 2024 +0000
cl
commit e2986ae6120399e7282a89f9b00666e36367a881
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 12:49:10 2024 +0000
cleanup
commit f4c73e149984ea25113e204b2aae0abd811334f5
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:31:28 2024 +0000
make old defaults to overides
commit 59be71c0684e2a639e54d97c977a61505d0b05e4
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:23:26 2024 +0000
add other
commit 607ef174c5ab28dadfe0d646920cbbb5195ffa01
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:18:54 2024 +0000
indent
commit 3658ab24c3d36dc3397ca85b0f387dcce64f1985
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:18:24 2024 +0000
remove f
commit bec1f38a0e14f8cc7d2657f8e4f9e7591acab505
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:17:05 2024 +0000
move sqlmodule down
commit 688611eab3e1c0c9d88bed1bf87a214996d9a266
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:11:55 2024 +0000
undo
commit 93892b65240cf8406c512fc71b199a02863be099
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:11:03 2024 +0000
undo some
commit b63a80e5b74691ff554925070a010a9f508646b1
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 11:01:39 2024 +0000
passes basic test
commit 118eb61939788311b28afae246719af018d9331c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 10:31:38 2024 +0000
there - with 1 boot
commit 28ea884e19dbbc6053e8d559d670499a6df5c222
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 10:01:22 2024 +0000
almost ready?
commit 27735f2621c46051c0995e07e1ff11bd132b9635
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:50:10 2024 +0000
move disco
commit cab3d945beb36db85ca32bfff5ed5089b3b5ba89
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:48:18 2024 +0000
up
commit c9638b78361d9e4e6cbae66828a466695cd76fab
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:44:16 2024 +0000
update
commit 7e10df1ffaccdf14d8f1938eb14547bc4c6fb277
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:33:51 2024 +0000
...
commit 4a47b0229e4fec35b37d7f7c47afab0114e65bba
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:31:21 2024 +0000
no roles
commit 5f552a2997399881b0b4aa6c7e9a8b9336526e85
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 09:30:41 2024 +0000
c
commit 074161dfde780815b0625fe16f2c0cc1af68ad38
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Thu May 16 05:53:42 2024 +0000
add some service crap
commit 55b2051f9d3714a7bdf9f48fdd8e23897600f816
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 15 16:23:11 2024 +0000
workinhg stuff
commit 8ee41f58d04651ee06fcd3c1a4bc1d5186fe5b4e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 15 15:14:43 2024 +0000
it does work
commit d4b052a5795962748af31ae96aba891422eeffde
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 15 11:57:13 2024 +0000
stuff
commit 73011267afef8bf09712913ef77b940d0d49f96c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Wed May 15 10:34:48 2024 +0000
triaks
commit a16f982699bef52bdb5f50c70e5a5e0d3debc337
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 16:04:19 2024 +0000
remove crap
commit 43fd8af63c3fddbc5c223216435dc77fcc90cc0d
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 09:39:04 2024 +0000
Revert "add"
This reverts commit 3fbb3cb853456bebccfbf8fc16ba7f30a810c26c.
commit 3fbb3cb853456bebccfbf8fc16ba7f30a810c26c
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 09:39:02 2024 +0000
add
commit b7b73fa7fe507e36ee18b19486886bfa0ee5f71e
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 08:53:01 2024 +0000
fix context key order
commit 9578953678a0797afa13a551ccc22eb384bf04ca
Merge: 3132c12781 18a4722d11
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 07:36:48 2024 +0000
Merge remote-tracking branch 'apache/master' into quidem-runner-extension-submit
commit 3132c12781c6ea99f6d462081ad9c7d9c1a6a9bf
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Tue May 14 07:36:07 2024 +0000
remove unnecessary \\
commit e36c46a85aff2e33be81d99b451903099d513612
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Mon May 13 14:11:19 2024 +0000
fix import
style fixes
clenaup
commit e13d560b6e802449143c40d785be9d6d9cf10a8a
Author: Zoltan Haindrich <kirk@rxd.hu>
Date: Fri May 10 13:27:47 2024 +0000
Enable quidem shadowing for decoupled testcases
* Altered `QueryTestBuilder` to be able to switch to a backing quidem test
* added a small crc to ensure that the shadow testcase does not deviate from the original one
* Packaged all decoupled related things into a a single `DecoupledExtension` to reduce copy-paste
* `DecoupledTestConfig#quidemReason` must describe why its being used
* `DecoupledTestConfig#separateDefaultModeTest` can be used to make multiple case files based on `NullHandling` state
* fixed a cosmetic bug during decoupled join translation
* enhanced `!druidPlan` to report the final logical plan in non-decoupled mode as well
* add check to ensure that only supported params are present in a druidtest uri
* enabled shadow testcases for previously disabled testcases
2024-08-08 13:51:12 +00:00
Clint Wylie
6cd8c6be22
fix IndexedStringDruidPredicateIndexes to not needlessly lookup index of values ( #16860 )
2024-08-07 23:29:56 -07:00
Akshat Jain
7f67d26dfa
Reduce logging in RetryableS3OutputStream ( #16853 )
...
This PR reduces logging in RetryableS3OutputStream.
2024-08-08 10:42:40 +05:30
Zoltan Haindrich
408702e100
Add ability to run MSQ in Quidem tests ( #16798 )
...
* implements some jdbc facade to enable msq usage
* adds an !msqPlan command
* adds more guice usage to testsystem startup
2024-08-08 06:37:06 +02:00
Hardik Bajaj
1cf3f4bebe
Fix Concurrent Task Insertion in pendingCompletionTaskGroups ( #16834 )
...
Fix streaming task failures that may arise due to concurrent task insertion in pendingCompletionTaskGroups
2024-08-08 08:37:27 +05:30
aaronm-bi
ceed4a0634
Docs: Update list of ingestion types that support concurrent append and replace ( #16852 )
2024-08-08 08:06:22 +05:30
Vadim Ogievetsky
56c03582cf
support kinesis input format ( #16850 )
2024-08-07 10:24:28 -07:00
Rishabh Singh
c6a7ab005f
Increase query cancellation timeout in the router ( #16656 )
...
* Fix build
* Increase query cancellation timeout in router
* Increase cancellation timeout to 5 seconds
2024-08-07 20:29:35 +05:30
Atul Mohan
76ad17fb4c
Add config for http client connect timeout ( #16831 )
...
Adds a configuration clientConnectTimeout to our http client config which controls the connection timeout for our http client requests.
It was observed that on busy K8S clusters, the default connect timeout of 500ms is sometimes not enough time to complete syn/acks for a request and in these cases, the requests timeout with the error:
exceptionType=java.net.SocketTimeoutException, exceptionMessage=Connect Timeout
This behavior was mostly observed on the router while forwarding queries to the broker.
Having a slightly higher connect timeout helped resolve these issues.
2024-08-07 19:31:10 +05:30
Sree Charan Manamala
84192b11d7
Benchmark for window functions ( #16824 )
2024-08-07 11:07:11 +02:00
Sree Charan Manamala
1f6d2c41d2
Update doc for dynamic parameters supporting array ( #16660 )
...
Update dynamic parameter docs to provide how it can used to replace an Array
2024-08-07 12:33:37 +05:30
Rishabh Singh
99313e9996
Revised IT to detect backward incompatible change ( #16779 )
...
Added a new revised IT group BackwardCompatibilityMain. The idea is to catch potential backward compatibility issues that may arise during rolling upgrade.
This test group runs a docker-compose cluster with Overlord & Coordinator service on the previous druid version.
Following env vars are required in the GHA file .github/workflows/unit-and-integration-tests-unified.yml to run this test
DRUID_PREVIOUS_VERSION -> Previous druid version to test backward incompatibility.
DRUID_PREVIOUS_VERSION_DOWNLOAD_URL -> URL to fetch the tar.
2024-08-07 11:13:35 +05:30