You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bucket creating methods such as this one should return an error or panic if the bucket sizes overflow. Overflow behavior is inconsistent between cpu architectures:
x86 -> The last two buckets become equal negatives [..., -2562047h47m16.854775808s, -2562047h47m16.854775808s]
ARM -> The last two buckets are equal positives [..., 2562047h47m16.854775807s, 2562047h47m16.854775807s]
Given customers are already living with this behavior we should be careful about the repair
returning an error/panic could cause startup issues where there were none before
silently detecting and removing overflows inline could create inconsistent bucket sizes
etc..
The text was updated successfully, but these errors were encountered:
The bucket creating methods such as this one should return an error or panic if the bucket sizes overflow. Overflow behavior is inconsistent between cpu architectures:
For inputs like
x86 -> The last two buckets become equal negatives
[..., -2562047h47m16.854775808s, -2562047h47m16.854775808s]
ARM -> The last two buckets are equal positives
[..., 2562047h47m16.854775807s, 2562047h47m16.854775807s]
Given customers are already living with this behavior we should be careful about the repair
The text was updated successfully, but these errors were encountered: