This is an automated email from the ASF dual-hosted git repository.

yashmayya 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 dafb4f0180 Include column name for v4 raw fwd index build failure 
(#14613)
dafb4f0180 is described below

commit dafb4f0180b014c9c6fa35ce646bec5fae190b37
Author: Christopher Peck <27231838+itschrisp...@users.noreply.github.com>
AuthorDate: Thu Dec 5 21:36:34 2024 -0800

    Include column name for v4 raw fwd index build failure (#14613)
---
 .../segment/local/io/writer/impl/VarByteChunkForwardIndexWriterV4.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/writer/impl/VarByteChunkForwardIndexWriterV4.java
 
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/writer/impl/VarByteChunkForwardIndexWriterV4.java
index 332c52d0c5..f685890e0f 100644
--- 
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/writer/impl/VarByteChunkForwardIndexWriterV4.java
+++ 
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/writer/impl/VarByteChunkForwardIndexWriterV4.java
@@ -136,7 +136,8 @@ public class VarByteChunkForwardIndexWriterV4 implements 
VarByteChunkWriter {
 
   @Override
   public void putBytes(byte[] bytes) {
-    Preconditions.checkState(_chunkOffset < (1L << 32), "exceeded 4GB of 
compressed chunks");
+    Preconditions.checkState(_chunkOffset < (1L << 32),
+        "exceeded 4GB of compressed chunks for: " + _dataBuffer.getName());
     int sizeRequired = Integer.BYTES + bytes.length;
     if (_chunkBuffer.position() > _chunkBuffer.capacity() - sizeRequired) {
       flushChunk();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to