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
We need to define in schema, what will be destination precision of metrics values, in case of DECIMAL type metrics like d:12.345.
In Python, there is a Decimal object and context global state, when we define prec value - here is the spec.
This something easy to implement with one two-digit value (max. 28), but in other languages, we can define two values (precision and scale in BigDecimal class) e.g. in Java language it's like this spec.
Another example, from the data engineering world is definition for AVRO schema in Kafka ecosystem. We can express Decimals in schema definition like in Java lang. e.g.
We need to define in schema, what will be destination precision of metrics values, in case of DECIMAL type metrics like
d:12.345
.In Python, there is a Decimal object and context global state, when we define
prec
value - here is the spec.This something easy to implement with one two-digit value (max. 28), but in other languages, we can define two values (
precision
andscale
inBigDecimal
class) e.g. in Java language it's like this spec.Another example, from the data engineering world is definition for AVRO schema in Kafka ecosystem. We can express Decimals in schema definition like in Java lang. e.g.
We are open to proposals here.
The text was updated successfully, but these errors were encountered: