-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement delete_versioned_model API
* Remove the specified versions of the specified models from Clipper internal. * Implemented `unregister_versioned_models` Clipper API in clipper_admin. > Description > ----------- > unregister_versioned_models(model_versions_dict) > Parameters > ---------- > model_versions_dict : dict(str, list(str)) > For each entry in the dict, the key is a model name and the value is a list of model > Raises > ------ > :py:exc:`clipper.UnconnectedException` > versions. All replicas for each version of each model will be stopped. * Implemented `delete_versioned_model` Management-Frontend API. > API path > -------- > POST /admin/delete_versioned_model > Request schema > -------------- > const std::string DELETE_VERSIONED_MODEL_JSON_SCHEMA = R"( > { > "model_name" := string, > "model_version" := string, > } > )";
- Loading branch information
Sungjun, Kim
committed
Mar 22, 2019
1 parent
847d6de
commit 28a2adf
Showing
10 changed files
with
383 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.