You are viewing documentation about an older version (1.1.0). View latest version

snowflake.snowpark.DataFrame.collect_nowait

DataFrame.collect_nowait(*, statement_params: Dict[str, str] | None = None) AsyncJob[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.1.0/src/snowflake/snowpark/dataframe.py#L550-L569)

Executes the query representing this DataFrame asynchronously and returns: class:AsyncJob. It is equivalent to collect(block=False).

Parameters:

statement_params – Dictionary of statement level parameters to be set while executing this action.

See also

collect()