Skip to content

v1.15.3 - Fix issue with vector cache limit (introduced in v1.15.1)

Compare
Choose a tag to compare
@etiennedi etiennedi released this 28 Sep 11:49

Breaking Changes

none

New Features

none

Fixes

  • Fix issue with vector cache limit introduced in v1.15.1 by @etiennedi in #2240
    v1.15.1 changed the default for the vector cache limit to the maximum value of an int64. This could lead to isssues when an implicit int->float conversion happened. Depending on the architecture, this would resolve in either an error or an overflow, thus leading to a negative cache limit.
    This version fixes this by explicitly handling the error, and setting the default to a safer value (1 Trillion), which will effectively act as unlimited.

Full Changelog: v1.15.2...v1.15.3