[ES|QL] Fix mapping for the colors & dense vector CSV datasets (failing bwc tests) (#130090)

This commit is contained in:
Aurélien FOUCRET 2025-06-26 18:35:22 +02:00 committed by GitHub
parent 81a6eadba2
commit e2dfd5d707
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View file

@ -555,8 +555,6 @@ tests:
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
method: testCohereEmbeddings
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
method: test
issue: https://github.com/elastic/elasticsearch/issues/130067

View file

@ -13,7 +13,9 @@
"type": "dense_vector",
"similarity": "l2_norm",
"index_options": {
"type": "hnsw"
"type": "hnsw",
"m": 16,
"ef_construction": 100
}
}
}

View file

@ -5,7 +5,12 @@
},
"vector": {
"type": "dense_vector",
"similarity": "l2_norm"
"similarity": "l2_norm",
"index_options": {
"type": "hnsw",
"m": 16,
"ef_construction": 100
}
}
}
}