Questions tagged [elasticsearch-template]
49 questions
0
votes
0 answers
elasticsearch template not making raw on correct field
So,
I have been using the old multi_field type when creating template such as below.
"field_a":
{
"type": "multi_field",
"fields":
{
"searchable": {
"index": "analyzed",
"type": "string"
},
"field_a": {
"index":…

Darren
- 795
- 1
- 6
- 10
0
votes
1 answer
elasticsearch with NativeSearchQueryBuilder space and uppercase
I'm using the following code to filter by elastic search java api,it works fine and return result if i use string query ,but If i use text with spaces or uppercase letters it don't return any data
if use
String…

Ali-Alrabi
- 1,515
- 6
- 27
- 60
0
votes
1 answer
Elasticsearch template field mapping not working
I have defined the following template for a particular index:
curl -XPUT http://localhost:9200/_template/template_1 -d '{
"template": "new_dashboard_1",
"mappings": {
"_default_" : {
"_all" : {"enabled" : true},
"dynamic_templates" : [ {
…

Skanda Nag
- 13
- 1
- 3
0
votes
3 answers
Calling Elasticsearch Template Query using NEST?
Is there a way to call Template Query using NEST? Is there any examples?

M Kim
- 25
- 2