As elastic search has _all
field I am not able to find anything regarding that in cratedb
. SO do we need to maintain our own analyzed field for that purpose or does crate provide something in built?
Asked
Active
Viewed 51 times
2 Answers
1
The _all field is a special catch-all field which concatenates the values of all of the other fields into one big string, using space as a delimiter, which is then analyzed and indexed, but not stored. This means that it can be searched, but not retrieved.
The _all field allows you to search for values in documents without knowing which field contains the value. This makes it a useful option when getting started with a new dataset
refer : https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-all-field.html

kavi
- 172
- 1
- 14
-
I edited question I wanted to do that in `cratedb`. I already know about es stuff – Dhruv Pal Sep 27 '18 at 13:57
-
Okay. May be i misunderstood the question. – kavi Oct 04 '18 at 09:12
1
We don't have something similar to that, so you'd need to add it to the query or maintain a dedicated column.

Johannes Moser
- 148
- 6