Moving a Model Deployment Between Compartments

Move a Data Science model deployment to a different compartment.

For example, you might want to move a model deployment to promote it from a development compartment to production compartment, or to change the visibility of the model.

Impact of the Change Compartment Operation

From the public metrics' perspective, the change compartment opreation has no functional changes. When the deployment is moved to a different compartment, the metrics are moved to the newer compartment, too. So if you have alarms defined based on these metrics such as CPUUtilization, update the alarms with the new compartment. This update can be made after the change.

Regarding OCI Logging, the logs might reside in a compartment different than the model deployment resource compartment. So, as long as the log groups' compartment is unchanged, no changes are required.

If policies are associated with a subcompartment, update the policies for CRUD and predict call operations if those policies are to continue making a successful call. Make the policy update to reflect the new compartment. For more information on policies, see Manage Model Deployment Policies.

Blue-green Based Policy Switching

So as not to disrupt any inference calls because of its associated policy changes, take extra care with the sequencing of changing compartment and policy update operation. The policy update takes between one and five minutes to synchronize and take effect. We recommend not updating the existing policies directly but rather to perform a blue-green based policy switch to avoid any failures in inference calls. The steps are:
  1. Before changing the compartment, add the new policy in the new compartment and wait for a few minutes.
    Now you have two policies in place. One in the old compartment and one in the new compartment.
  2. Confirm that the inference calls succeed.
  3. Update the model deployment resource to change the compartment to the new one.
  4. Confirm that the inference calls succeed still.
  5. Remove the first policy in the old compartment.