We have data in Elasticsearch which is mapped using _source and properties in the mapping configuration.
Now we want to see what's in the properties fields but can't seem to find a way to make em shown in the {index}/doc/{docid} output.
The data is stored because when we query on a field from a property it shows the correct result.
Any idea what I am missing?
How to view stored properties data in elasticsearch?
87 views Asked by Quisse At
1
docvalue_fieldssolves it. When fields aren't marked asstore: truein the mapping they aren't showing up when usingfields,stored_fieldsoptions. The how's and why's are still unclear to me.