| 1234567891011121314151617181920212223242526 | [[mapping-size-field]]=== `_size`The `_size` field allows to automatically index the size of the original`_source` indexed. By default, it's disabled. In order to enable it, setthe mapping to:[source,js]--------------------------------------------------{    "tweet" : {        "_size" : {"enabled" : true}    }}--------------------------------------------------In order to also store it, use:[source,js]--------------------------------------------------{    "tweet" : {        "_size" : {"enabled" : true, "store" : true }    }}--------------------------------------------------
 |