Skip to content

Commit

Permalink
Added a sample async query results response
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Jordan <norman.jordan@improving.com>
  • Loading branch information
normanj-bitquill committed Jan 16, 2025
1 parent 16f9e5e commit 5981405
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/docker/integ-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,31 @@ curl \
'http://localhost:9200/_plugins/_async_query/HlbM61kX6MDkAktO'
```

Sample response:
```json
{
"status": "SUCCESS",
"schema": [
{
"name": "id",
"type": "integer"
},
{
"name": "name",
"type": "string"
}
],
"datarows": [
[
1,
"Foo"
]
],
"total": 1,
"size": 1
}
```

## Configuration of the Cluster

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

0 comments on commit 5981405

Please sign in to comment.