mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 01:22:26 -04:00
[ES|QL] Fix mapping for the colors & dense vector CSV datasets (failing bwc tests) (#130090)
This commit is contained in:
parent
81a6eadba2
commit
e2dfd5d707
3 changed files with 9 additions and 4 deletions
|
@ -555,8 +555,6 @@ tests:
|
||||||
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
|
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
|
||||||
method: testCohereEmbeddings
|
method: testCohereEmbeddings
|
||||||
issue: https://github.com/elastic/elasticsearch/issues/130010
|
issue: https://github.com/elastic/elasticsearch/issues/130010
|
||||||
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT
|
|
||||||
issue: https://github.com/elastic/elasticsearch/issues/128224
|
|
||||||
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
|
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
|
||||||
method: test
|
method: test
|
||||||
issue: https://github.com/elastic/elasticsearch/issues/130067
|
issue: https://github.com/elastic/elasticsearch/issues/130067
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
"type": "dense_vector",
|
"type": "dense_vector",
|
||||||
"similarity": "l2_norm",
|
"similarity": "l2_norm",
|
||||||
"index_options": {
|
"index_options": {
|
||||||
"type": "hnsw"
|
"type": "hnsw",
|
||||||
|
"m": 16,
|
||||||
|
"ef_construction": 100
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,12 @@
|
||||||
},
|
},
|
||||||
"vector": {
|
"vector": {
|
||||||
"type": "dense_vector",
|
"type": "dense_vector",
|
||||||
"similarity": "l2_norm"
|
"similarity": "l2_norm",
|
||||||
|
"index_options": {
|
||||||
|
"type": "hnsw",
|
||||||
|
"m": 16,
|
||||||
|
"ef_construction": 100
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue