You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
126925: roachprod: implement spot vm preemption detection for AWS. r=DarrylWong,renatolabs a=shailendra-patel
Spot vm preemption detection is not implemented for AWS. Implemented spot vm detection for AWS using ec2 describe-instances and CloudTrail events. Whenver a spot vm is evicted by AWS instance description will have information related to isntance-state, instance-lifecycle and state-reason-code. If describe instance is called after 1 hour of instance termination then there is a fallback on cloud trail events.
Fixes: cockroachdb#126917
Epic: CRDB-10428
Release note: None
Co-authored-by: Shailendra Patel <shailendra.patel@cockroachlabs.com>
// getInstanceIDsNotFound returns a list of instance IDs that were not found during the describe-instances command.
318
+
//
319
+
// Sample error message:
320
+
//
321
+
// ‹An error occurred (InvalidInstanceID.NotFound) when calling the DescribeInstances operation: The instance IDs 'i-02e9adfac0e5fa18f, i-0bc7869fda0299caa' do not exist›
0 commit comments