Automations
Hands-free optimizations that continuously reduce your Snowflake compute spend while keeping performance intact.
Managing warehouses with Terraform (or other IaC)
resource "snowflake_warehouse" "analytics" {
name = "ANALYTICS_WH"
warehouse_size = "MEDIUM" # baseline; SeeMore scales this at runtime
auto_suspend = 300 # baseline; SeeMore tunes the idle timeout
auto_resume = true
# multi-cluster
min_cluster_count = 1
max_cluster_count = 3
scaling_policy = "STANDARD"
lifecycle {
ignore_changes = [
warehouse_size, # size scaling
auto_suspend, # idle-timeout tuning
min_cluster_count, # multi-cluster scaling
max_cluster_count,
scaling_policy,
]
}
}Last updated
