OpenSearch/modules
Mayya Sharipova b5d532f9e3
Vector field (#33022)
1. Dense vector

PUT dindex
{
  "mappings": {
    "_doc": {
      "properties": {
        "my_vector": {
          "type": "dense_vector"
        },
        "my_text" : {
          "type" : "keyword"
        }
      }
    }
  }
}

PUT dinex/_doc/1
{
  "my_text" : "text1",
  "my_vector" : [ 0.5, 10, 6 ]
}

2. Sparse vector

PUT sindex
{
  "mappings": {
    "_doc": {
      "properties": {
        "my_vector": {
          "type": "sparse_vector"
        },
        "my_text" : {
          "type" : "keyword"
        }
      }
    }
  }
}

PUT sindex/_doc/1
{
  "my_text" : "text1",
  "my_vector" : {"1": 0.5, "99": -0.5,  "5": 1}
}
2018-12-12 21:20:53 -05:00
..
aggs-matrix-stats Make hits.total an object in the search response (#35849) 2018-12-05 19:49:06 +01:00
analysis-common Deprecate types in explain requests. (#35611) 2018-12-10 19:45:13 -08:00
ingest-common ingest: support default pipeline through an alias (#36231) 2018-12-05 16:25:50 -06:00
lang-expression Update lucene to snapshot-7e4555a2fd (#36563) 2018-12-12 20:18:32 +00:00
lang-mustache Fix some inconsistencies in the types deprecation code. (#36517) 2018-12-12 10:38:02 -08:00
lang-painless [Painless] Add def to boxed type casts (#36506) 2018-12-11 14:06:38 -08:00
mapper-extras Vector field (#33022) 2018-12-12 21:20:53 -05:00
parent-join Make hits.total an object in the search response (#35849) 2018-12-05 19:49:06 +01:00
percolator Make hits.total an object in the search response (#35849) 2018-12-05 19:49:06 +01:00
rank-eval Prevent throttled indices to be searched through wildcards by default (#34354) 2018-11-06 09:45:30 +01:00
reindex Deprecate types in update_by_query and delete_by_query (#36365) 2018-12-11 17:09:59 -05:00
repository-url Make hits.total an object in the search response (#35849) 2018-12-05 19:49:06 +01:00
transport-netty4 Move page size constants to PageCacheRecycler (#36524) 2018-12-12 07:00:50 -07:00
build.gradle Painless: Add spi jar that will be published for extending whitelists (#28302) 2018-01-18 19:16:26 -08:00