Description
dense_vector fields are excluded from _source according to the index settings default (see ).
In case users need to retrieve dense_vector fields from _source, they will use a SET setting in ES|QL:
SET exclude_vectors=false;
FROM my_index METADATA _source
...
When the exclude_vectors SET option is set to true / false, it will override the index setting and retrieve or not the dense_vector fields in the _source METADATA field.
Description
dense_vectorfields are excluded from_sourceaccording to the index settings default (see ).In case users need to retrieve dense_vector fields from _source, they will use a SET setting in ES|QL:
When the
exclude_vectorsSET option is set to true / false, it will override the index setting and retrieve or not thedense_vectorfields in the_sourceMETADATA field.