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
There are some places where BYTES_TO_MEGABYTES is used directly, while others apply ceil().
I’m wondering if these different usages could lead to inconsistencies in calculations, potentially accumulating errors over several hours as the system processes millions of replicas.
There are some places where
BYTES_TO_MEGABYTES
is used directly, while others applyceil()
.I’m wondering if these different usages could lead to inconsistencies in calculations, potentially accumulating errors over several hours as the system processes millions of replicas.
Code using
ceil(BYTES_TO_MEGABYTES)
Code using
BYTES_TO_MEGABYTES
The text was updated successfully, but these errors were encountered: