MonoVertex Operations¶
Pause a MonoVertex¶
To pause a MonoVertex, use the command below, it will bring the MonoVertex to Paused
status, and terminate all the running MonoVertex pods.
kubectl patch mvtx my-mvtx --type=merge --patch '{"spec": {"lifecycle": {"desiredPhase": "Paused"}}}'
Resume a MonoVertex¶
The command below will bring the MonoVertex back to Running
status.
kubectl patch mvtx my-mvtx --type=merge --patch '{"spec": {"lifecycle": {"desiredPhase": "Running"}}}'