Skip to content

Commit 5981405

Browse files
Added a sample async query results response
Signed-off-by: Norman Jordan <norman.jordan@improving.com>
1 parent 16f9e5e commit 5981405

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docs/docker/integ-test/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,31 @@ curl \
144144
'http://localhost:9200/_plugins/_async_query/HlbM61kX6MDkAktO'
145145
```
146146

147+
Sample response:
148+
```json
149+
{
150+
"status": "SUCCESS",
151+
"schema": [
152+
{
153+
"name": "id",
154+
"type": "integer"
155+
},
156+
{
157+
"name": "name",
158+
"type": "string"
159+
}
160+
],
161+
"datarows": [
162+
[
163+
1,
164+
"Foo"
165+
]
166+
],
167+
"total": 1,
168+
"size": 1
169+
}
170+
```
171+
147172
## Configuration of the Cluster
148173

149174
There are several settings that can be adjusted for the cluster.

0 commit comments

Comments
 (0)