You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2022/07/01 09:44:31 UTC

[iotdb] branch master updated (0b7cdfba2c -> c002ab94a3)

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

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


    from 0b7cdfba2c [IOTDB-3498] [IOTDB-3517] Add ITs related to the group by & query result set in MPP (#6373)
     add c002ab94a3 [IOTDB-3322] Support RestApi for MPP framework (#6536)

No new revisions were added by this update.

Summary of changes:
 openapi/pom.xml                                    |  26 +++
 .../MPPRestService.java}                           |  21 +-
 .../{rest => mpprest}/filter/ApiOriginFilter.java  |   2 +-
 .../filter/AuthorizationFilter.java                |   4 +-
 .../filter/BasicSecurityContext.java               |   2 +-
 .../db/protocol/{rest => mpprest}/filter/User.java |   2 +-
 .../{rest => mpprest}/filter/UserCache.java        |   2 +-
 .../handler/AuthorizationHandler.java              |  14 +-
 .../handler/ExceptionHandler.java                  |   4 +-
 .../mpprest/handler/QueryDataSetHandler.java       | 252 +++++++++++++++++++++
 .../handler/RequestValidationHandler.java          |   8 +-
 .../handler/StatementConstructionHandler.java}     |  35 +--
 .../mpprest/impl/GrafanaApiServiceImpl.java        | 245 ++++++++++++++++++++
 .../{rest => mpprest}/impl/PingApiServiceImpl.java |   6 +-
 .../protocol/mpprest/impl/RestApiServiceImpl.java  | 193 ++++++++++++++++
 .../java/org/apache/iotdb/db/service/DataNode.java |   4 +-
 .../java/org/apache/iotdb/db/service/NewIoTDB.java |   4 +-
 17 files changed, 771 insertions(+), 53 deletions(-)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest/RestService.java => mpprest/MPPRestService.java} (89%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/filter/ApiOriginFilter.java (96%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/filter/AuthorizationFilter.java (97%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/filter/BasicSecurityContext.java (96%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/filter/User.java (95%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/filter/UserCache.java (97%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/handler/AuthorizationHandler.java (79%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/handler/ExceptionHandler.java (96%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/protocol/mpprest/handler/QueryDataSetHandler.java
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/handler/RequestValidationHandler.java (89%)
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest/handler/PhysicalPlanConstructionHandler.java => mpprest/handler/StatementConstructionHandler.java} (84%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/protocol/mpprest/impl/GrafanaApiServiceImpl.java
 copy server/src/main/java/org/apache/iotdb/db/protocol/{rest => mpprest}/impl/PingApiServiceImpl.java (91%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/protocol/mpprest/impl/RestApiServiceImpl.java