QuestionQ72

Snowflake Gen AI & LLM Functions

A Gen AI Specialist needs to configure a Snowflake account located in the AWS_APJ region so that it can process inference requests for Snowflake Cortex LLM functions using capacity in the AWS_US and AWS_EU regions.

How should this be accomplished?

  • A Use the ORGADMIN role to set CORTEX_ENABLED_CROSS_REGION = ANY_REGION.
  • B Use the ORGADMIN role to set CORTEX_ENABLED_CROSS_REGION = AWS_US, AWS_EU.
  • C Use the SYSADMIN role to set CORTEX_ENABLED_CROSS_REGION = ANY_REGION.
  • D Use the ACCOUNTADMIN role to set CORTEX_ENABLED_CROSS_REGION = AWS_US, AWS_EU.
Explanation

The CORTEX_ENABLED_CROSS_REGION parameter governs cross-region inference routing for Snowflake Cortex LLM functions and can only be changed by the ACCOUNTADMIN role, using the ALTER ACCOUNT command. Because the account only needs to route requests to the AWS_US and AWS_EU regions specifically, the parameter should be scoped to those two regions (CORTEX_ENABLED_CROSS_REGION = 'AWS_US, AWS_EU') rather than using ANY_REGION, which would open routing to all supported regions/cloud providers rather than the two required ones.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!