v0.4.0
What's Changed
- Add configurable Arrow memory limit -
withArrowMemoryLimitMBby @kczimm in #32 - Fix integration tests: Use quickstart dataset for Cloud by @sgrebnov in #33
- Fix accelerated dataset refresh by @sgrebnov in 28cdd2f
- Update version to 0.4.0 by @sgrebnov in 2b56127
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