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
Copy file name to clipboardexpand all lines: docs/user/interfaces/protocol.rst
+69-69
Original file line number
Diff line number
Diff line change
@@ -133,80 +133,13 @@ Explain::
133
133
}
134
134
}
135
135
136
-
Elasticsearch DSL
137
-
=================
138
-
139
-
Description
140
-
-----------
141
-
142
-
By default the plugin returns original response from Elasticsearch in JSON. Because this is the native response from Elasticsearch, extra efforts are needed to parse and interpret it.
143
-
144
-
Example
145
-
-------
146
-
147
-
SQL query::
148
-
149
-
>> curl -H 'Content-Type: application/json' -X POST localhost:9200/_opendistro/_sql -d '{
150
-
"query" : "SELECT firstname, lastname, age FROM accounts ORDER BY age LIMIT 2"
151
-
}'
152
-
153
-
Result set::
154
-
155
-
{
156
-
"_shards" : {
157
-
"total" : 5,
158
-
"failed" : 0,
159
-
"successful" : 5,
160
-
"skipped" : 0
161
-
},
162
-
"hits" : {
163
-
"hits" : [
164
-
{
165
-
"_index" : "accounts",
166
-
"_type" : "account",
167
-
"_source" : {
168
-
"firstname" : "Nanette",
169
-
"age" : 28,
170
-
"lastname" : "Bates"
171
-
},
172
-
"_id" : "13",
173
-
"sort" : [
174
-
28
175
-
],
176
-
"_score" : null
177
-
},
178
-
{
179
-
"_index" : "accounts",
180
-
"_type" : "account",
181
-
"_source" : {
182
-
"firstname" : "Amber",
183
-
"age" : 32,
184
-
"lastname" : "Duke"
185
-
},
186
-
"_id" : "1",
187
-
"sort" : [
188
-
32
189
-
],
190
-
"_score" : null
191
-
}
192
-
],
193
-
"total" : {
194
-
"value" : 4,
195
-
"relation" : "eq"
196
-
},
197
-
"max_score" : null
198
-
},
199
-
"took" : 100,
200
-
"timed_out" : false
201
-
}
202
-
203
136
JDBC Format
204
137
===========
205
138
206
139
Description
207
140
-----------
208
141
209
-
JDBC format is provided for JDBC driver and client side that needs both schema and result set well formatted.
142
+
By default the plugin return JDBC format. JDBC format is provided for JDBC driver and client side that needs both schema and result set well formatted.
210
143
211
144
Example 1
212
145
---------
@@ -215,7 +148,7 @@ Here is an example for normal response. The `schema` includes field name and its
215
148
216
149
SQL query::
217
150
218
-
>> curl -H 'Content-Type: application/json' -X POST localhost:9200/_opendistro/_sql?format=jdbc -d '{
151
+
>> curl -H 'Content-Type: application/json' -X POST localhost:9200/_opendistro/_sql -d '{
219
152
"query" : "SELECT firstname, lastname, age FROM accounts ORDER BY age LIMIT 2"
220
153
}'
221
154
@@ -275,6 +208,73 @@ Result set::
275
208
"status" : 400
276
209
}
277
210
211
+
Elasticsearch DSL
212
+
=================
213
+
214
+
Description
215
+
-----------
216
+
217
+
The plugin returns original response from Elasticsearch in JSON. Because this is the native response from Elasticsearch, extra efforts are needed to parse and interpret it.
218
+
219
+
Example
220
+
-------
221
+
222
+
SQL query::
223
+
224
+
>> curl -H 'Content-Type: application/json' -X POST localhost:9200/_opendistro/_sql?format=json -d '{
225
+
"query" : "SELECT firstname, lastname, age FROM accounts ORDER BY age LIMIT 2"
0 commit comments