You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ro...@apache.org on 2023/03/29 05:16:40 UTC

[iotdb] branch master updated (c723079e30 -> 147a54303e)

This is an automated email from the ASF dual-hosted git repository.

rong pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from c723079e30 Catch NPE in CompactionSchedulerTest and print its stack
     add 147a54303e [IOTDB-5687][REST Service] OpenAPI v2 interface (#9472)

No new revisions were added by this update.

Summary of changes:
 .../API/{RestService.md => RestServiceV1.md}       | 46 ++++++++--------
 .../API/{RestService.md => RestServiceV2.md}       | 50 ++++++++---------
 docs/UserGuide/Query-Data/Overview.md              |  2 +-
 docs/UserGuide/Write-Data/REST-API.md              |  2 +-
 .../API/{RestService.md => RestServiceV1.md}       | 46 ++++++++--------
 .../API/{RestService.md => RestServiceV2.md}       | 50 ++++++++---------
 docs/zh/UserGuide/Query-Data/Overview.md           |  2 +-
 docs/zh/UserGuide/Write-Data/REST-API.md           |  2 +-
 grafana-plugin/pkg/plugin/plugin.go                |  8 +--
 openapi/pom.xml                                    | 56 ++++++++++++++++++-
 openapi/src/main/openapi3/iotdb_rest_common.yaml   | 63 ++++++++++++++++++++++
 .../{iotdb-rest.yaml => iotdb_rest_v1.yaml}        | 35 +++++-------
 .../{iotdb-rest.yaml => iotdb_rest_v2.yaml}        | 35 +++++-------
 .../rest/handler/AuthorizationHandler.java         |  8 ++-
 .../rest/{ => v1}/handler/ExceptionHandler.java    |  4 +-
 .../{ => v1}/handler/ExecuteStatementHandler.java  |  2 +-
 .../rest/{ => v1}/handler/QueryDataSetHandler.java | 24 ++++-----
 .../{ => v1}/handler/RequestValidationHandler.java | 22 ++++----
 .../handler/StatementConstructionHandler.java      |  6 +--
 .../rest/{ => v1}/impl/GrafanaApiServiceImpl.java  | 25 ++++-----
 .../rest/{ => v1}/impl/RestApiServiceImpl.java     | 20 +++----
 .../rest/{ => v2}/handler/ExceptionHandler.java    |  2 +-
 .../{ => v2}/handler/ExecuteStatementHandler.java  |  2 +-
 .../rest/{ => v2}/handler/QueryDataSetHandler.java | 26 ++++-----
 .../{ => v2}/handler/RequestValidationHandler.java |  8 +--
 .../handler/StatementConstructionHandler.java      |  4 +-
 .../rest/{ => v2}/impl/GrafanaApiServiceImpl.java  | 25 ++++-----
 .../rest/{ => v2}/impl/RestApiServiceImpl.java     | 20 +++----
 site/src/main/.vuepress/sidebar/V1.1.x/en.ts       |  3 +-
 site/src/main/.vuepress/sidebar/V1.1.x/zh.ts       |  3 +-
 site/src/main/.vuepress/sidebar/en.ts              |  3 +-
 site/src/main/.vuepress/sidebar/zh.ts              |  3 +-
 32 files changed, 352 insertions(+), 255 deletions(-)
 copy docs/UserGuide/API/{RestService.md => RestServiceV1.md} (93%)
 rename docs/UserGuide/API/{RestService.md => RestServiceV2.md} (94%)
 copy docs/zh/UserGuide/API/{RestService.md => RestServiceV1.md} (94%)
 rename docs/zh/UserGuide/API/{RestService.md => RestServiceV2.md} (94%)
 create mode 100644 openapi/src/main/openapi3/iotdb_rest_common.yaml
 copy openapi/src/main/openapi3/{iotdb-rest.yaml => iotdb_rest_v1.yaml} (92%)
 rename openapi/src/main/openapi3/{iotdb-rest.yaml => iotdb_rest_v2.yaml} (92%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/handler/ExceptionHandler.java (97%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/handler/ExecuteStatementHandler.java (97%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/handler/QueryDataSetHandler.java (92%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/handler/RequestValidationHandler.java (74%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/handler/StatementConstructionHandler.java (97%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/impl/GrafanaApiServiceImpl.java (92%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v1}/impl/RestApiServiceImpl.java (92%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/handler/ExceptionHandler.java (98%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/handler/ExecuteStatementHandler.java (97%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/handler/QueryDataSetHandler.java (92%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/handler/RequestValidationHandler.java (89%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/handler/StatementConstructionHandler.java (98%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/impl/GrafanaApiServiceImpl.java (92%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/rest/{ => v2}/impl/RestApiServiceImpl.java (92%)