SHOW DEPLOYMENTS
SHOW DEPLOYMENTS
returns a list of active deployments, optional filtering by serving engine, repository or name.
Syntax
SHOW DEPLOYMENTS
[ IN engine_name ]
[ USING model_mame [ VERSION model_version ] ]
[ LIKE 'pattern' ]
Engine
Optionally filter deployments in a serving engine name.
Model
Optionally filter deployments using a specific mode repo and or version.
- Name: the name of the model to deploy.
- Version: the optional model version number.
Pattern match
Optionally filter deployments were the name matches a pattern.
Examples
All deployments
No filtering, show all models in the system we have permissions to.
SHOW DEPLOYMENTS
Deployments in an engine
List all deployments that are hosted in the gpu_serving_engine
SHOW DEPLOYMENTS IN gpu_serving_engine
Deployments for a model
List all deployments for the titanic
model repo
SHOW DEPLOYMENTS USING titanic
Deployments that match a pattern
List all deployments that start with the name titanic
.
SHOW DEPLOYMENTS like 'titanic%'