[PR] Add support for orphan segment cleanup [pinot]

2025-02-26 Thread via GitHub
9aman opened a new pull request, #15142: URL: https://github.com/apache/pinot/pull/15142 Instructions: 1. The PR has to be tagged with at least one of the following labels (*): 1. `feature` 2. `bugfix` 3. `performance` 4. `ui` 5. `backward-incompat` 6. `

Re: [PR] Support for groovy static analysis for groovy scripts [pinot]

2025-02-26 Thread via GitHub
abhishekbafna commented on PR #14844: URL: https://github.com/apache/pinot/pull/14844#issuecomment-2686987484 > @abhishekbafna > > > one thing to note is, the controller config would be applied on the table update and creation. It would not apply on any existing ingestion config. For

Re: [PR] Add a non-blocking groupBy implementation [pinot]

2025-02-26 Thread via GitHub
wirybeaver commented on PR #14698: URL: https://github.com/apache/pinot/pull/14698#issuecomment-2686913884 @xiangfu0 Glad to see the master is working on the partitioned groupBy algorithm. Do we plan to support disk spilled mode? https://github.com/apache/pinot/issues/12080 -- This is an

Re: [PR] Close `ChunkReaderContext` to improve projection/scan based filter memory for raw columns [pinot]

2025-02-26 Thread via GitHub
itschrispeck commented on code in PR #15139: URL: https://github.com/apache/pinot/pull/15139#discussion_r1972677661 ## pinot-core/src/main/java/org/apache/pinot/core/operator/dociditerators/SVScanDocIdIterator.java: ## @@ -138,6 +138,7 @@ public MutableRoaringBitmap applyAnd(Bat

Re: [PR] Optimize lookup table in join operator [pinot]

2025-02-26 Thread via GitHub
yashmayya commented on PR #14972: URL: https://github.com/apache/pinot/pull/14972#issuecomment-2686775523 @Jackie-Jiang thanks for the info and you're right, it was actually the Object based structure that I was comparing earlier and I didn't notice that you're using a regular `HashMap` in

Re: [PR] [Multi-stage] Fix literal handling [pinot]

2025-02-26 Thread via GitHub
codecov-commenter commented on PR #15140: URL: https://github.com/apache/pinot/pull/15140#issuecomment-2686787499 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/15140?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

[PR] [Multi-stage] Fix literal handling [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang opened a new pull request, #15140: URL: https://github.com/apache/pinot/pull/15140 (no comment) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe,

Re: [PR] support to enable Map encoded custom forward index [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on code in PR #15006: URL: https://github.com/apache/pinot/pull/15006#discussion_r1972717022 ## pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/ColumnMetadata.java: ## @@ -93,4 +94,6 @@ default boolean isMinMaxValueInvalid() { Map, Long> ge

Re: [PR] Close `ChunkReaderContext` to improve projection/scan based filter memory for raw columns [pinot]

2025-02-26 Thread via GitHub
codecov-commenter commented on PR #15139: URL: https://github.com/apache/pinot/pull/15139#issuecomment-2686690025 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/15139?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

Re: [PR] Close `ChunkReaderContext` to improve projection/scan based filter memory for raw columns [pinot]

2025-02-26 Thread via GitHub
itschrispeck commented on code in PR #15139: URL: https://github.com/apache/pinot/pull/15139#discussion_r1972677661 ## pinot-core/src/main/java/org/apache/pinot/core/operator/dociditerators/SVScanDocIdIterator.java: ## @@ -138,6 +138,7 @@ public MutableRoaringBitmap applyAnd(Bat

[PR] Close `ChunkReaderContext` to improve projection/scan based filter memory for raw columns [pinot]

2025-02-26 Thread via GitHub
itschrispeck opened a new pull request, #15139: URL: https://github.com/apache/pinot/pull/15139 Closes `ChunkReaderContext` in `ProjectionOperator` and scan based iterators to reduce direct buffer usage. Lightly tested in a local staging cluster - will add some more query shapes soon.

(pinot) branch master updated: Allow Query Plan while dropResult=true (#15136)

2025-02-26 Thread jackie
This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git The following commit(s) were added to refs/heads/master by this push: new d195edf414 Allow Query Plan while dropResult=true

Re: [PR] Emits lag metric when caught up [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on PR #15102: URL: https://github.com/apache/pinot/pull/15102#issuecomment-2686553842 Do you mean the gauge must be present for alert to function? Take a look at the TODO in `RealtimeSegmentDataManager.setIngestionDelayToZero()`, which should be the proper fix then.

Re: [PR] Allow Query Plan while dropResult=true [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang merged PR #15136: URL: https://github.com/apache/pinot/pull/15136 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot

Re: [PR] Add `DATE_TRUNC` Optimizer [pinot]

2025-02-26 Thread via GitHub
ashishjayamohan commented on code in PR #14385: URL: https://github.com/apache/pinot/pull/14385#discussion_r1972592399 ## pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/custom/TimestampIndexMseTest.java: ## @@ -85,23 +85,6 @@ public void timestampIndexS

[PR] Add Flag to Disable Fast Filtered Count Optimization for Benchmarking [pinot]

2025-02-26 Thread via GitHub
J-HowHuang opened a new pull request, #15138: URL: https://github.com/apache/pinot/pull/15138 Fast Filtered Count Optimization is tuned automatically (#8411), despite the startree index present in the table. This flag is added so benchmarking could be done to test out the performance

Re: [PR] Emits lag metric when caught up [pinot]

2025-02-26 Thread via GitHub
noob-se7en commented on PR #15102: URL: https://github.com/apache/pinot/pull/15102#issuecomment-2686372979 Gauge might not exist for new server which is caught up. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the UR

Re: [I] MergeRollupTaskGenerator incorrectly calculates earliest start time of in_progress segments [pinot]

2025-02-26 Thread via GitHub
kate-yq commented on issue #15128: URL: https://github.com/apache/pinot/issues/15128#issuecomment-2686344008 I'll work on this. Thx. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific c

Re: [PR] Allow Query Plan while dropResult=true [pinot]

2025-02-26 Thread via GitHub
codecov-commenter commented on PR #15136: URL: https://github.com/apache/pinot/pull/15136#issuecomment-2686327333 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/15136?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972443473 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,226 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972442713 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,226 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972440509 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,226 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972439379 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,226 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972438842 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,226 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972437026 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,188 @@ public void testR

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972435892 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,188 @@ public void testR

Re: [PR] Fix for #10375: Inconsistent segment file extension for TarGzPush and MetadataPush [pinot]

2025-02-26 Thread via GitHub
codecov-commenter commented on PR #14971: URL: https://github.com/apache/pinot/pull/14971#issuecomment-2686183756 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/14971?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

Re: [PR] Fix for #10375: Inconsistent segment file extension for TarGzPush and MetadataPush [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on code in PR #14971: URL: https://github.com/apache/pinot/pull/14971#discussion_r1972340163 ## pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/SegmentUploader.java: ## @@ -35,4 +34,11 @@ public interface SegmentUploader { * wait f

Re: [PR] Add BrokerGrpcServer for a streaming response fetching endpoint [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on code in PR #15088: URL: https://github.com/apache/pinot/pull/15088#discussion_r1972308667 ## pinot-broker/src/main/java/org/apache/pinot/broker/broker/helix/BaseBrokerStarter.java: ## @@ -146,6 +147,7 @@ public abstract class BaseBrokerStarter implement

Re: [PR] Bump com.thoughtworks.paranamer:paranamer from 2.8 to 2.8.1 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] commented on PR #15112: URL: https://github.com/apache/pinot/pull/15112#issuecomment-2686061511 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let

(pinot) branch master updated: Update collaborators list (#15122)

2025-02-26 Thread jackie
This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git The following commit(s) were added to refs/heads/master by this push: new 6c43bccf14 Update collaborators list (#15122) 6c4

(pinot) branch yashmayya-patch-1 deleted (was 2be73175f6)

2025-02-26 Thread jackie
This is an automated email from the ASF dual-hosted git repository. jackie pushed a change to branch yashmayya-patch-1 in repository https://gitbox.apache.org/repos/asf/pinot.git was 2be73175f6 Update collaborators list The revisions that were on this branch are still contained in other re

Re: [PR] Update collaborators list [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang merged PR #15122: URL: https://github.com/apache/pinot/pull/15122 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972321929 ## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/assignment/instance/InstanceAssignmentDriver.java: ## @@ -55,40 +55,67 @@ public InstanceAss

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972321436 ## pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableRestletResource.java: ## @@ -1303,7 +1303,7 @@ private void handleLegacySchemaC

Re: [I] `ArrayIndexOutOfBoundsException` error for multi-stage query [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on issue #15121: URL: https://github.com/apache/pinot/issues/15121#issuecomment-2686066441 @dang-stripe Is it constantly reproducible with the below query? If you can provide the minimum query that can reproduce this issue, we can also try to reproduce it loca

(pinot) branch dependabot/maven/com.thoughtworks.paranamer-paranamer-2.8.1 deleted (was c19bb3fae0)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/com.thoughtworks.paranamer-paranamer-2.8.1 in repository https://gitbox.apache.org/repos/asf/pinot.git was c19bb3fae0 Bump com.thoughtworks.paranamer:paranamer from 2.8

Re: [PR] Bump com.thoughtworks.paranamer:paranamer from 2.8 to 2.8.1 [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on PR #15112: URL: https://github.com/apache/pinot/pull/15112#issuecomment-2686061424 Not compatible with Jackson -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specif

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972316987 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/assignment/instance/InstanceAssignmentTest.java: ## @@ -504,6 +505,208 @@ public void testMi

Re: [PR] Bump com.thoughtworks.paranamer:paranamer from 2.8 to 2.8.1 [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang closed pull request #15112: Bump com.thoughtworks.paranamer:paranamer from 2.8 to 2.8.1 URL: https://github.com/apache/pinot/pull/15112 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to t

Re: [I] `ArrayIndexOutOfBoundsException` error for multi-stage query [pinot]

2025-02-26 Thread via GitHub
dang-stripe commented on issue #15121: URL: https://github.com/apache/pinot/issues/15121#issuecomment-2686060396 @yashmayya The only other server logs around that time look like this. I've tried searching for `ArrayIndexOutOfBoundsException` and haven't been able to find a full stacktrace u

Re: [PR] Support for groovy static analysis for groovy scripts [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on PR #14844: URL: https://github.com/apache/pinot/pull/14844#issuecomment-2686041453 @abhishekbafna > one thing to note is, the controller config would be applied on the table update and creation. It would not apply on any existing ingestion config. For that i

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972270210 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/assignment/instance/InstanceAssignmentTest.java: ## @@ -504,6 +505,208 @@ public void testMi

Re: [PR] Optimize lookup table in join operator [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on PR #14972: URL: https://github.com/apache/pinot/pull/14972#issuecomment-2685996914 @yashmayya > Are there any benchmark results showing performance improvements? I've tested it in a custom build release and observed good performance when all keys are u

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972269922 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,188 @@ public void tes

Re: [PR] Pauseless Consumption #3: Disaster Recovery with Reingestion [pinot]

2025-02-26 Thread via GitHub
lnbest0707-uber commented on code in PR #14920: URL: https://github.com/apache/pinot/pull/14920#discussion_r1972268037 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/realtime/writer/StatelessRealtimeSegmentWriter.java: ## @@ -0,0 +1,464 @@ +/** + * Licensed

Re: [PR] Allow Query Plan while dropResult=true [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on code in PR #15136: URL: https://github.com/apache/pinot/pull/15136#discussion_r1972266435 ## pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/HybridClusterIntegrationTest.java: ## @@ -342,6 +342,36 @@ public void testDropResults(

Re: [PR] Allow Query Plan while dropResult=true [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang commented on code in PR #15136: URL: https://github.com/apache/pinot/pull/15136#discussion_r1972265073 ## pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseSingleStageBrokerRequestHandler.java: ## @@ -882,7 +882,7 @@ protected BrokerResponse doHa

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972259795 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,188 @@ public void tes

Re: [PR] Pauseless Consumption #3: Disaster Recovery with Reingestion [pinot]

2025-02-26 Thread via GitHub
lnbest0707-uber commented on code in PR #14920: URL: https://github.com/apache/pinot/pull/14920#discussion_r1972260409 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/realtime/writer/StatelessRealtimeSegmentWriter.java: ## @@ -0,0 +1,464 @@ +/** + * Licensed

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972258491 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancerClusterStatelessTest.java: ## @@ -886,6 +886,188 @@ public void tes

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972234452 ## pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/assignment/instance/InstanceAssignmentTest.java: ## @@ -504,6 +505,208 @@ public void testMi

[I] [Parent Issue] Improve observability for multi-stage query engine [pinot]

2025-02-26 Thread via GitHub
Jackie-Jiang opened a new issue, #15137: URL: https://github.com/apache/pinot/issues/15137 - Improve error handling and reporting: #14950 - Improve execution stats: #15057 - Improve query logging -- This is an automated message from the Apache Git Service. To respond to the message

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
somandal commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972101287 ## pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableRestletResource.java: ## @@ -1303,7 +1303,7 @@ private void handleLegacySchemaCon

Re: [PR] Add minimizeDataMovement to Rebalacne API [pinot]

2025-02-26 Thread via GitHub
J-HowHuang commented on code in PR #15110: URL: https://github.com/apache/pinot/pull/15110#discussion_r1972069279 ## pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableRestletResource.java: ## @@ -1303,7 +1303,7 @@ private void handleLegacySchemaC

[PR] Allow Query Plan while dropResult=true [pinot]

2025-02-26 Thread via GitHub
J-HowHuang opened a new pull request, #15136: URL: https://github.com/apache/pinot/pull/15136 For single stage query, explain queries like ```sql SET dropResult = true; EXPLAIN PLAN FOR SELECT * FROM table; ``` will drop the returned query plan. (in contrast, multi-stage qu

Re: [PR] Bump com.puppycrawl.tools:checkstyle from 10.21.2 to 10.21.3 [pinot]

2025-02-26 Thread via GitHub
tibrewalpratik17 merged PR #15114: URL: https://github.com/apache/pinot/pull/15114 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@p

[PR] Refactor DispatchableSubPlan to store fragments by stage id [pinot]

2025-02-26 Thread via GitHub
gortiz opened a new pull request, #15135: URL: https://github.com/apache/pinot/pull/15135 Previously, they were stored on a list whose id was the stage id. This made sense when stage ids formed a dense set, but spools broke that assumption. -- This is an automated message from the Apache

(pinot) branch master updated (b1803dcf33 -> af48ae2fe7)

2025-02-26 Thread pratik
This is an automated email from the ASF dual-hosted git repository. pratik pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from b1803dcf33 Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final (#15132) add af48ae2fe7 Bump com.puppycraw

(pinot) branch dependabot/maven/com.puppycrawl.tools-checkstyle-10.21.3 deleted (was 1c1c70d52d)

2025-02-26 Thread pratik
This is an automated email from the ASF dual-hosted git repository. pratik pushed a change to branch dependabot/maven/com.puppycrawl.tools-checkstyle-10.21.3 in repository https://gitbox.apache.org/repos/asf/pinot.git was 1c1c70d52d Bump com.puppycrawl.tools:checkstyle from 10.21.2 to 10.2

(pinot) branch master updated (4ea733a612 -> b1803dcf33)

2025-02-26 Thread pratik
This is an automated email from the ASF dual-hosted git repository. pratik pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from 4ea733a612 Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.28 (#15134) add b1803dcf33 Bump io.netty:netty-bo

(pinot) branch dependabot/maven/io.netty-netty-bom-4.1.119.Final deleted (was b1fbba41e8)

2025-02-26 Thread pratik
This is an automated email from the ASF dual-hosted git repository. pratik pushed a change to branch dependabot/maven/io.netty-netty-bom-4.1.119.Final in repository https://gitbox.apache.org/repos/asf/pinot.git was b1fbba41e8 Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final The

Re: [PR] Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final [pinot]

2025-02-26 Thread via GitHub
tibrewalpratik17 merged PR #15132: URL: https://github.com/apache/pinot/pull/15132 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@p

Re: [I] `ArrayIndexOutOfBoundsException` error for multi-stage query [pinot]

2025-02-26 Thread via GitHub
gortiz commented on issue #15121: URL: https://github.com/apache/pinot/issues/15121#issuecomment-2684895058 We are trying to improve the user experience dealing with errors. I've created https://github.com/apache/pinot/issues/14950 to have all the improvements we want to show in a single pl

(pinot) branch dependabot/maven/com.nimbusds-nimbus-jose-jwt-10.0.2 deleted (was 1a31afebfc)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch dependabot/maven/com.nimbusds-nimbus-jose-jwt-10.0.2 in repository https://gitbox.apache.org/repos/asf/pinot.git was 1a31afebfc Bump com.nimbusds:nimbus-jose-jwt from 10.0.1 to 10.0.2 T

(pinot) branch dependabot/maven/com.gradle-develocity-maven-extension-1.23.2 deleted (was e49d9bc112)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch dependabot/maven/com.gradle-develocity-maven-extension-1.23.2 in repository https://gitbox.apache.org/repos/asf/pinot.git was e49d9bc112 Bump com.gradle:develocity-maven-extension from 1

(pinot) branch master updated (f160fc10ae -> 4ea733a612)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from f160fc10ae Bump com.nimbusds:nimbus-jose-jwt from 10.0.1 to 10.0.2 (#15133) add 4ea733a612 Bump software.amazo

(pinot) branch master updated (44a2d6fd83 -> f160fc10ae)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from 44a2d6fd83 Bump com.google.cloud:libraries-bom from 26.54.0 to 26.55.0 (#15113) add f160fc10ae Bump com.nimbus

(pinot) branch dependabot/maven/software.amazon.awssdk-bom-2.30.28 deleted (was 350c4e6c8d)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch dependabot/maven/software.amazon.awssdk-bom-2.30.28 in repository https://gitbox.apache.org/repos/asf/pinot.git was 350c4e6c8d Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.28 Th

Re: [PR] Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.28 [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15134: URL: https://github.com/apache/pinot/pull/15134 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

Re: [PR] Bump com.nimbusds:nimbus-jose-jwt from 10.0.1 to 10.0.2 [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15133: URL: https://github.com/apache/pinot/pull/15133 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

(pinot) branch dependabot/maven/com.puppycrawl.tools-checkstyle-10.21.3 updated (918a1f958d -> 1c1c70d52d)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/com.puppycrawl.tools-checkstyle-10.21.3 in repository https://gitbox.apache.org/repos/asf/pinot.git discard 918a1f958d Bump com.puppycrawl.tools:checkstyle from 10.21.2 to

Re: [PR] Bump com.puppycrawl.tools:checkstyle from 10.21.2 to 10.21.3 [pinot]

2025-02-26 Thread via GitHub
yashmayya commented on PR #15114: URL: https://github.com/apache/pinot/pull/15114#issuecomment-2684849793 @dependabot rebase -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment.

(pinot) branch dependabot/maven/com.google.cloud-libraries-bom-26.55.0 deleted (was c3673c8320)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch dependabot/maven/com.google.cloud-libraries-bom-26.55.0 in repository https://gitbox.apache.org/repos/asf/pinot.git was c3673c8320 Bump com.google.cloud:libraries-bom from 26.54.0 to 26.

(pinot) branch master updated (ec93d15541 -> 44a2d6fd83)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from ec93d15541 Bump com.gradle:develocity-maven-extension from 1.23.1 to 1.23.2 (#15124) add 44a2d6fd83 Bump com.g

Re: [PR] Bump com.google.cloud:libraries-bom from 26.54.0 to 26.55.0 [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15113: URL: https://github.com/apache/pinot/pull/15113 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

(pinot) branch dependabot/maven/io.netty-netty-bom-4.1.119.Final updated (624e357640 -> b1fbba41e8)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/io.netty-netty-bom-4.1.119.Final in repository https://gitbox.apache.org/repos/asf/pinot.git discard 624e357640 Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final

(pinot) branch master updated (7eb8940e15 -> 209b7f8c24)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from 7eb8940e15 Bump slf4j.version from 2.0.16 to 2.0.17 (#15131) add 209b7f8c24 Fix delete function behaviour for G

(pinot) branch dependabot/maven/io.netty-netty-bom-4.1.119.Final updated (33db3174f8 -> 624e357640)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/io.netty-netty-bom-4.1.119.Final in repository https://gitbox.apache.org/repos/asf/pinot.git omit 33db3174f8 Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final

(pinot) branch master updated (209b7f8c24 -> ec93d15541)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from 209b7f8c24 Fix delete function behaviour for GCS FS when the directory or file is missing (#15123) add ec93d15

Re: [PR] Bump com.gradle:develocity-maven-extension from 1.23.1 to 1.23.2 [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15124: URL: https://github.com/apache/pinot/pull/15124 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

Re: [PR] Bump slf4j.version from 2.0.16 to 2.0.17 [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15131: URL: https://github.com/apache/pinot/pull/15131 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

Re: [PR] The delete function behaviour for GCSPinotFS is different from that of S3PinotFS, LocalPinotFS. [pinot]

2025-02-26 Thread via GitHub
yashmayya merged PR #15123: URL: https://github.com/apache/pinot/pull/15123 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.ap

(pinot) branch dependabot/maven/slf4j.version-2.0.17 deleted (was 72b91c1647)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch dependabot/maven/slf4j.version-2.0.17 in repository https://gitbox.apache.org/repos/asf/pinot.git was 72b91c1647 Bump slf4j.version from 2.0.16 to 2.0.17 The revisions that were on this

(pinot) branch master updated (ca43a859cc -> 7eb8940e15)

2025-02-26 Thread yashmayya
This is an automated email from the ASF dual-hosted git repository. yashmayya pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git from ca43a859cc Always return metadata block when leaf stage operator is early terminated (#15129) add 7eb8940e15 B

Re: [PR] Optimize creation and memory usage of eagerly-loaded dimension table. [pinot]

2025-02-26 Thread via GitHub
codecov-commenter commented on PR #15130: URL: https://github.com/apache/pinot/pull/15130#issuecomment-2684765002 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/15130?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

Re: [PR] Always return metadata block when leaf stage operator is early terminated [pinot]

2025-02-26 Thread via GitHub
gortiz merged PR #15129: URL: https://github.com/apache/pinot/pull/15129 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apach

(pinot) branch master updated: Always return metadata block when leaf stage operator is early terminated (#15129)

2025-02-26 Thread gortiz
This is an automated email from the ASF dual-hosted git repository. gortiz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git The following commit(s) were added to refs/heads/master by this push: new ca43a859cc Always return metadata block when leaf

(pinot) branch dependabot/maven/com.nimbusds-nimbus-jose-jwt-10.0.2 created (now 1a31afebfc)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/com.nimbusds-nimbus-jose-jwt-10.0.2 in repository https://gitbox.apache.org/repos/asf/pinot.git at 1a31afebfc Bump com.nimbusds:nimbus-jose-jwt from 10.0.1 to 10.0.2

(pinot) branch dependabot/maven/software.amazon.awssdk-bom-2.30.27 deleted (was 1f550b728a)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/software.amazon.awssdk-bom-2.30.27 in repository https://gitbox.apache.org/repos/asf/pinot.git was 1f550b728a Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.27 T

Re: [PR] Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.27 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] closed pull request #15125: Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.27 URL: https://github.com/apache/pinot/pull/15125 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to th

[PR] Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.28 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] opened a new pull request, #15134: URL: https://github.com/apache/pinot/pull/15134 Bumps software.amazon.awssdk:bom from 2.30.25 to 2.30.28. Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- |

[PR] Bump com.nimbusds:nimbus-jose-jwt from 10.0.1 to 10.0.2 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] opened a new pull request, #15133: URL: https://github.com/apache/pinot/pull/15133 Bumps [com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 10.0.1 to 10.0.2. Changelog Sourced from https://bitbucket.org/connect2id/nimbus-jose-jwt/

Re: [PR] Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.27 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] commented on PR #15125: URL: https://github.com/apache/pinot/pull/15125#issuecomment-2684716868 Superseded by #15134. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific

(pinot) branch dependabot/maven/software.amazon.awssdk-bom-2.30.28 created (now 350c4e6c8d)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/software.amazon.awssdk-bom-2.30.28 in repository https://gitbox.apache.org/repos/asf/pinot.git at 350c4e6c8d Bump software.amazon.awssdk:bom from 2.30.25 to 2.30.28 N

(pinot) branch dependabot/maven/io.netty-netty-bom-4.1.119.Final created (now 33db3174f8)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/io.netty-netty-bom-4.1.119.Final in repository https://gitbox.apache.org/repos/asf/pinot.git at 33db3174f8 Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final

[PR] Bump io.netty:netty-bom from 4.1.118.Final to 4.1.119.Final [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] opened a new pull request, #15132: URL: https://github.com/apache/pinot/pull/15132 Bumps [io.netty:netty-bom](https://github.com/netty/netty) from 4.1.118.Final to 4.1.119.Final. Commits https://github.com/netty/netty/commit/fb7c786f2df57867bcfe049b13a42e764606f

[PR] Bump slf4j.version from 2.0.16 to 2.0.17 [pinot]

2025-02-26 Thread via GitHub
dependabot[bot] opened a new pull request, #15131: URL: https://github.com/apache/pinot/pull/15131 Bumps `slf4j.version` from 2.0.16 to 2.0.17. Updates `org.slf4j:slf4j-api` from 2.0.16 to 2.0.17 Updates `org.slf4j:jcl-over-slf4j` from 2.0.16 to 2.0.17 Updates `org.slf4j:jul-

(pinot) branch dependabot/maven/slf4j.version-2.0.17 created (now 72b91c1647)

2025-02-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/slf4j.version-2.0.17 in repository https://gitbox.apache.org/repos/asf/pinot.git at 72b91c1647 Bump slf4j.version from 2.0.16 to 2.0.17 No new revisions were added by

Re: [PR] Add BrokerGrpcServer for a streaming response fetching endpoint [pinot]

2025-02-26 Thread via GitHub
xiangfu0 commented on code in PR #15088: URL: https://github.com/apache/pinot/pull/15088#discussion_r1971430813 ## pinot-broker/src/main/java/org/apache/pinot/broker/grpc/BrokerGrpcRequestBuilder.java: ## @@ -0,0 +1,116 @@ +/** + * Licensed to the Apache Software Foundation (ASF

  1   2   >