You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -119,7 +105,6 @@ GET /filesystem/_search?size=0
119
105
120
106
121
107
Result :
122
-
123
108
{"aggregations": {
124
109
"tree": {
125
110
"sum_other_doc_count": 0,
@@ -170,13 +155,11 @@ Result :
170
155
]
171
156
}
172
157
}
173
-
174
158
```
175
159
176
160
#### Script
177
161
178
162
```
179
-
180
163
PUT calendar
181
164
{
182
165
"mappings": {
@@ -188,18 +171,13 @@ PUT calendar
188
171
}
189
172
}
190
173
191
-
PUT /calendar/_doc/1
192
-
{
193
-
"date": "2012-01-10T02:47:28"
194
-
}
195
-
PUT /calendar/_doc/2
196
-
{
197
-
"date": "2012-01-05T01:43:35"
198
-
}
199
-
PUT /calendar/_doc/3
200
-
{
201
-
"date": "2012-05-01T12:24:19"
202
-
}
174
+
POST calendar/_bulk?refresh
175
+
{"index":{}}
176
+
{"date": "2012-01-10T02:47:28"}
177
+
{"index":{}}
178
+
{"date": "2012-01-05T01:43:35"}
179
+
{"index":{}}
180
+
{"date": "2012-05-01T12:24:19"}
203
181
204
182
GET /calendar/_search?size=0
205
183
{
@@ -326,33 +304,13 @@ GET /calendar/_search?size=0
326
304
Installation
327
305
------------
328
306
307
+
Built with Java 17.
308
+
329
309
The first 3 digits of plugin version is Elasticsearch versioning. The last digit is used for plugin versioning under an elasticsearch version.
330
310
331
-
To install it, launch this command in Elasticsearch directory replacing the url by the correct link for your Elasticsearch version (see table)
311
+
To install it, launch this command in Elasticsearch directory replacing the url with a release suiting your case (please check available releases [here](https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases)):
0 commit comments