Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,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.autoscaling.storage.ReactiveStorageIT
method: testScaleDuringSplitOrClone
issue: https://github.com/elastic/elasticsearch/issues/130044
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"type": "dense_vector",
"similarity": "l2_norm",
"index_options": {
"type": "hnsw"
"type": "hnsw",
"m": 16,
"ef_construction": 100
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
},
"vector": {
"type": "dense_vector",
"similarity": "l2_norm"
"similarity": "l2_norm",
"index_options": {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ℹ️ @alex-spies It seems that adding explicit index_options is preventing the failure

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ooh, great, thank you!

"type": "hnsw",
"m": 16,
"ef_construction": 100
}
}
}
}