Skip to content

Commit

Permalink
remove EBS from the suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushis committed Oct 30, 2024
1 parent 5734f51 commit 19ea136
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions service_capacity_modeling/models/org/netflix/cassandra.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ def _estimate_cassandra_cluster_zonal(
if instance.cpu < 2 or instance.ram_gib < 14:
return None

#temporarily dont suggest EBS instances
if instance.drive is None:
return None

# if we're not allowed to use gp2, skip EBS only types
if instance.drive is None and require_local_disks:
return None
Expand Down

0 comments on commit 19ea136

Please sign in to comment.