WARNING: Version 1.5 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
_size
edit_size
editThe _size
field allows to automatically index the size of the original
_source
indexed. By default, it’s disabled. In order to enable it, set
the mapping to:
{ "tweet" : { "_size" : {"enabled" : true} } }
In order to also store it, use:
{ "tweet" : { "_size" : {"enabled" : true, "store" : true } } }