mirror of
https://github.com/apache/druid.git
synced 2025-02-17 15:35:56 +00:00
log allocation of conversionBuf
This commit is contained in:
parent
fe105d52ee
commit
8933685884
@ -1404,7 +1404,9 @@ public class IndexMaker
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
this.dimSet = dimSet;
|
this.dimSet = dimSet;
|
||||||
this.conversionBuf = ByteBuffer.allocateDirect(dimSet.size() * Ints.BYTES).asIntBuffer();
|
final int bufferSize = dimSet.size() * Ints.BYTES;
|
||||||
|
log.info("Allocating new dimension conversion buffer of size[%,d]", bufferSize);
|
||||||
|
this.conversionBuf = ByteBuffer.allocateDirect(bufferSize).asIntBuffer();
|
||||||
|
|
||||||
this.currIndex = 0;
|
this.currIndex = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user