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

snowflake.snowpark.DataFrame.collect_nowait¶

DataFrame.collect_nowait(*, statement_params: Dict[str, str] | None = None, log_on_exception: bool = False, case_sensitive: bool = True) → 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.

  • case_sensitive – A bool value which is controls the case sensitivity of the fields in the Row objects after collecting the result using AsyncJob.result(). Defaults to True.

See also

collect()