I'm trying to figure out what numbers I can represent using scaled_float.
In the documentation here https://www.elastic.co/guide/en/elasticsearch/reference/master/number.html I first read:
scaled_float
A floating point number that is backed by a long, scaled by a fixed double scaling factor.
So it seems that the size in memory is fixed: a long, that would take 64 bits in memory (the scaling factor being fixed, it's the same for every value and so it doesn't appear in the memory representation of the numbers)
But later on the same page I read, about scaled_float:
High values of scaling_factor improve accuracy but also increase space requirements. This parameter is required.
So it seems, actually the size of a scaled_float is not fixed? Could I represent very, very big numbers and very, very small numbers in the same field if I wanted to? Or are there limits and if so what are those limits?