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
..
2018-12-05 19:49:06 +01:00
2018-12-05 19:49:06 +01:00
2018-11-07 18:36:02 +02:00
2018-12-11 18:58:49 -05:00
2018-12-11 10:35:58 +01:00
2018-10-03 18:11:38 +01:00
2018-12-11 09:02:23 +00:00
2018-11-29 07:09:37 -05:00
2018-12-05 19:49:06 +01:00
2018-12-11 08:53:05 -07:00
2018-09-13 15:44:52 +03:00
2018-12-11 07:44:57 -08:00
2018-12-11 18:58:49 -05:00
2018-11-26 10:34:42 -06:00
2018-11-28 08:24:35 -05:00
2018-12-12 21:20:53 -05:00
2018-12-11 11:30:58 +01:00
2018-12-07 20:34:11 +00:00
2018-12-11 07:44:57 -08:00
2018-12-07 20:34:11 +00:00
2018-12-10 01:00:42 +01:00
2018-12-11 14:26:41 -08:00
2018-11-26 07:11:43 +02:00
2018-12-11 19:43:17 -05:00
2018-12-10 19:45:13 -08:00
2018-12-04 13:18:54 -08:00
2018-12-04 13:18:54 -08:00
2018-12-07 12:47:09 +00:00
2018-12-12 02:29:02 +02:00
2018-08-28 13:16:43 +02:00
2018-11-28 09:38:58 -08:00
2018-03-28 15:01:45 +02:00
2018-07-06 14:36:58 +02:00
2018-09-27 08:36:18 -07:00
2018-04-19 08:18:58 -04:00
2018-08-20 14:21:31 +01:00
2017-01-16 12:58:59 +01:00
2018-12-07 23:38:35 +01:00
2018-12-06 10:14:37 -08:00
2018-05-14 12:22:35 -04:00
2017-07-18 13:44:08 -07:00
2017-01-17 20:57:22 -05:00
2018-10-23 13:49:25 -05:00
2018-11-20 08:03:24 +01:00
2018-05-18 11:05:40 -07:00
2017-11-06 12:55:41 +01:00
2018-10-23 13:49:25 -05:00
2018-10-22 11:54:04 -07:00
2018-10-20 11:18:27 -04:00
2017-12-11 18:06:08 +01:00
2018-09-06 14:42:06 +02:00
2018-12-11 14:26:41 -08:00
2018-10-22 11:54:04 -07:00
2018-07-03 13:40:37 -07:00
2017-11-29 09:44:25 +01:00
2018-06-11 22:04:36 -04:00