Snowpark Performance Optimization1 / 5
What is the purpose of the query_tag session parameter in Snowpark?
CorrectIncorrect
Alex
The query_tag session parameter sets an arbitrary string attached to every SQL query executed within the session. This tag appears in QUERY_HISTORY views and Snowsight, enabling teams to identify, group, and monitor queries by application, module, or pipeline. Set via session.query_tag = 'my_tag'. Why others are wrong: query_tag has no effect on query execution priority or scheduling order. It does not limit concurrency—concurrency is controlled by warehouse settings. It does not enable or affect result caching; caching is managed independently by Snowflake's query result cache. Ref: docs.snowflake.com/en/developer-guide/snowpark/reference/python/api/snowflake.snowpark.Session.query_tag
Sourcedocs.snowflake.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account