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

snowflake.snowpark.DataFrame.collect_nowait¶

DataFrame.collect_nowait(*, statement_params: Dict[str, str] | None = None) → AsyncJob[source]¶

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()