SOL-C01 · Question #133
Consider the following Snowflake warehouse definition: 'CREATE OR REPLACE WAREHOUSE MY WAREHOUSE WITH WAREHOUSE SIZE = 'MEDIUM' WAREHOUSE TYPE = 'STANDARD' AUTO SUSPEND = 300 AUTO RESUME = TRUE MIN CL
The correct answer is A. The warehouse will automatically suspend after 5 minutes of inactivity. B. The warehouse will always have at least one active cluster. C. The warehouse can scale up to a maximum of three clusters to handle concurrent queries. D. The warehouse is optimized for minimizing costs rather than maximizing performance when. All four correct answers map directly to parameters in the DDL statement. AUTO_SUSPEND = 300 means the warehouse suspends after 300 seconds (5 minutes) of inactivity, confirming A. MIN_CLUSTER_COUNT = 1 guarantees at least one cluster is always running, confirming B. MAX_CLUSTER_
Question
Consider the following Snowflake warehouse definition: 'CREATE OR REPLACE WAREHOUSE MY WAREHOUSE WITH WAREHOUSE SIZE = 'MEDIUM' WAREHOUSE TYPE = 'STANDARD' AUTO SUSPEND = 300 AUTO RESUME = TRUE MIN CLUSTER_COUNT = 1 MAX CLUSTER_COUNT = 3 SCALING_POLICY = 'ECONOMY;' Which of the following statements are TRUE regarding this warehouse? (Select all that apply)
Options
- AThe warehouse will automatically suspend after 5 minutes of inactivity.
- BThe warehouse will always have at least one active cluster.
- CThe warehouse can scale up to a maximum of three clusters to handle concurrent queries.
- DThe warehouse is optimized for minimizing costs rather than maximizing performance when
- EThe 'WAREHOUSE_TYPE = 'STANDARD" setting is invalid and will cause an error.
How the community answered
(25 responses)- A80% (20)
- E20% (5)
Explanation
All four correct answers map directly to parameters in the DDL statement. AUTO_SUSPEND = 300 means the warehouse suspends after 300 seconds (5 minutes) of inactivity, confirming A. MIN_CLUSTER_COUNT = 1 guarantees at least one cluster is always running, confirming B. MAX_CLUSTER_COUNT = 3 allows Snowflake's multi-cluster feature to spin up additional clusters for concurrent load, confirming C. SCALING_POLICY = 'ECONOMY' tells Snowflake to maximize cluster utilization before adding new clusters - prioritizing cost savings over instant scale-out - confirming D.
E is wrong because WAREHOUSE_TYPE = 'STANDARD' is perfectly valid; the only other supported type is SNOWPARK_OPTIMIZED. Standard is simply the default general-purpose type and causes no error.
Memory tip: Map each parameter acronym to its effect - think ARMS: Auto_suspend (time in seconds ÷ 60 = minutes), Resume (auto or manual), Min/Max cluster counts (floor and ceiling of scale), Scaling policy (Economy = cost-first, Standard = performance-first). If a setting exists in Snowflake's docs, it's valid - wrong syntax or unsupported values cause errors, not recognized keywords.
Topics
Community Discussion
No community discussion yet for this question.