Hi,
I'm using ES 1.7, and I want to be able to limit my int fields.
For example, I have a field that represents percentages. So I want the value to be 0-100. If the value is not in that range, then ES should have null/not insert anything.
Is there's a way to do this with ES, or should I find a way to "fix" the index once all the data is inserted? (BTW, I'm using elasticsearch-py to insert the data)
Thanks!