Skip to content

v0.4.0

Choose a tag to compare

@sgrebnov sgrebnov released this 10 Nov 18:22

What's Changed

Memory Configuration

The SpiceClient uses an Arrow RootAllocator to manage off-heap memory. By default, it utilizes all available memory. Starting with the 0.4.0 release, you can configure a memory limit:

SpiceClient client = SpiceClient.builder()
    .withArrowMemoryLimitMB(1024) // 1GB limit
    .build();

New Contributors

Full Changelog: v0.3.0...v0.4.0