batch-requests
#
DescriptionThe batch-requests
plugin accepts multiple requests, sends them from APISIX via HTTP pipelining, and returns an aggregated response to the client.
This improves the performance significantly in cases where the client needs to access multiple APIs.
note
The HTTP headers for the outer batch request (except for Content-
headers like Content-Type
) apply to every request in the batch.
If the same HTTP header is specified in both the outer request and on an individual call, the header of the individual call takes precedence.
#
AttributesNone.
#
APIThis plugin adds /apisix/batch-requests
as an endpoint.
note
You may need to use the public-api plugin to expose this endpoint.
#
Enabling the PluginYou can enable the batch-requests
Plugin by adding it to your configuration file (conf/config.yaml
):
plugins:
- ...
- batch-requests
#
ConfigurationBy default, the maximum body size that can be sent to /apisix/batch-requests
can't be larger than 1 MiB. You can change this configuration of the Plugin through the endpoint apisix/admin/plugin_metadata/batch-requests
:
curl http://127.0.0.1:9080/apisix/admin/plugin_metadata/batch-requests -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"max_body_size": 4194304
}'
#
MetadataName | Type | Required | Default | Valid values | Description |
---|---|---|---|---|---|
max_body_size | integer | True | 1048576 | [1, ...] | Maximum size of the request body in bytes. |
#
Request and response formatThis plugin will create an API endpoint in APISIX to handle batch requests.
#
RequestName | Type | Required | Default | Description |
---|---|---|---|---|
query | object | False | Query string for the request. | |
headers | object | False | Headers for all the requests. | |
timeout | integer | False | 30000 | Timeout in ms. |
pipeline | HttpRequest | True | Details of the request. |
#
HttpRequestName | Type | Required | Default | Valid | Description |
---|---|---|---|---|---|
version | string | False | 1.1 | [1.0, 1.1] | HTTP version. |
method | string | False | GET | ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS", "CONNECT", "TRACE"] | HTTP method. |
query | object | False | Query string for the request. If set, overrides the value of the global query string. | ||
headers | object | False | Headers for the request. If set, overrides the value of the global query string. | ||
path | string | True | Path of the HTTP request. | ||
body | string | False | Body of the HTTP request. | ||
ssl_verify | boolean | False | false | Set to verify if the SSL certs matches the hostname. |
#
ResponseThe response is an array of HttpResponses.
#
HttpResponseName | Type | Description |
---|---|---|
status | integer | HTTP status code. |
reason | string | HTTP reason-phrase. |
body | string | HTTP response body. |
headers | object | HTTP response headers. |
#
Specifying a custom URIYou can specify a custom URI with the public-api Plugin.
You can set the URI you want when creating the Route and change the configuration of the public-api Plugin:
curl http://127.0.0.1:9080/apisix/admin/routes/br -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/batch-requests",
"plugins": {
"public-api": {
"uri": "/apisix/batch-requests"
}
}
}'
#
Example usageFirst, you need to setup a Route to the batch request API. We will use the public-api Plugin for this:
curl http://127.0.0.1:9080/apisix/admin/routes/br -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/apisix/batch-requests",
"plugins": {
"public-api": {}
}
}'
Now you can make a request to the batch request API (/apisix/batch-requests
):
curl --location --request POST 'http://127.0.0.1:9080/apisix/batch-requests' \
--header 'Content-Type: application/json' \
--data '{
"headers": {
"Content-Type": "application/json",
"admin-jwt":"xxxx"
},
"timeout": 500,
"pipeline": [
{
"method": "POST",
"path": "/community.GiftSrv/GetGifts",
"body": "test"
},
{
"method": "POST",
"path": "/community.GiftSrv/GetGifts",
"body": "test2"
}
]
}'
This will give a response:
[
{
"status": 200,
"reason": "OK",
"body": "{\"ret\":500,\"msg\":\"error\",\"game_info\":null,\"gift\":[],\"to_gets\":0,\"get_all_msg\":\"\"}",
"headers": {
"Connection": "keep-alive",
"Date": "Sat, 11 Apr 2020 17:53:20 GMT",
"Content-Type": "application/json",
"Content-Length": "81",
"Server": "APISIX web server"
}
},
{
"status": 200,
"reason": "OK",
"body": "{\"ret\":500,\"msg\":\"error\",\"game_info\":null,\"gift\":[],\"to_gets\":0,\"get_all_msg\":\"\"}",
"headers": {
"Connection": "keep-alive",
"Date": "Sat, 11 Apr 2020 17:53:20 GMT",
"Content-Type": "application/json",
"Content-Length": "81",
"Server": "APISIX web server"
}
}
]
#
Disable PluginYou can remove batch-requests
from your list of Plugins in your configuration file (conf/config.yaml
).