### What changes were proposed in this pull request? 1. `GET /api/v1/applications/deleteApps` -> `DELETE /api/v1/applications` 2. `GET /api/v1/applications/reviseLostShuffles` -> `POST /api/v1/applications/revise_lost_shuffles` ### Why are the changes needed? Followup for https://github.com/apache/celeborn/pull/2746 ### Does this PR introduce _any_ user-facing change? No, these APIs has not been released yet. ### How was this patch tested? GA. Closes #2892 from turboFei/delete_app. Authored-by: Wang, Fei <fwang12@ebay.com> Signed-off-by: Shuang <lvshuang.xjs@alibaba-inc.com>
764 B
764 B
Celeborn OpenAPI Client
Note: It is recommended to use under_score style naming for new RESTful APIs to maintain consistency.
To update the OpenAPI specification
- just update the specification under
openapi/openapi-client/src/main/openapi3/and keep the schema definitions consistent between master and worker. - Install JDK 11 or above by whatever mechanism is appropriate for your system, and set that version to be the default Java version (e.g., by setting env variable
JAVA_HOME) - run the following:
orbuild/mvn -pl openapi/openapi-client clean package -Pgenerate
This will regenerate the OpenAPI data models + APIs in the celeborn-openapi-client SDK.build/sbt "clean;celeborn-openapi-client/generate"