From 59814050869a1787b2c19c299e93150d149580af Mon Sep 17 00:00:00 2001 From: Norman Jordan Date: Thu, 16 Jan 2025 09:42:40 -0800 Subject: [PATCH] Added a sample async query results response Signed-off-by: Norman Jordan --- docs/docker/integ-test/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/docker/integ-test/README.md b/docs/docker/integ-test/README.md index 819a8eff4..30bf2b1f2 100644 --- a/docs/docker/integ-test/README.md +++ b/docs/docker/integ-test/README.md @@ -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.