polars.collect_all_async#
- polars.collect_all_async(
 - lazy_frames: Sequence[LazyFrame],
 - *,
 - gevent: Literal[True],
 - type_coercion: bool = True,
 - predicate_pushdown: bool = True,
 - projection_pushdown: bool = True,
 - simplify_expression: bool = True,
 - no_optimization: bool = True,
 - slice_pushdown: bool = True,
 - comm_subplan_elim: bool = True,
 - comm_subexpr_elim: bool = True,
 - streaming: bool = True,
 - polars.collect_all_async(
 - lazy_frames: Sequence[LazyFrame],
 - *,
 - gevent: Literal[False] = False,
 - type_coercion: bool = True,
 - predicate_pushdown: bool = True,
 - projection_pushdown: bool = True,
 - simplify_expression: bool = True,
 - no_optimization: bool = False,
 - slice_pushdown: bool = True,
 - comm_subplan_elim: bool = True,
 - comm_subexpr_elim: bool = True,
 - streaming: bool = False,
 Collect multiple LazyFrames at the same time asynchronously in thread pool.
Collects into a list of DataFrame (like
polars.collect_all()), but instead of returning them directly, they are scheduled to be collected inside thread pool, while this method returns almost instantly.May be useful if you use gevent or asyncio and want to release control to other greenlets/tasks while LazyFrames are being collected.
- Parameters:
 - lazy_frames
 A list of LazyFrames to collect.
- gevent
 Return wrapper to
gevent.event.AsyncResultinstead of Awaitable- type_coercion
 Do type coercion optimization.
- predicate_pushdown
 Do predicate pushdown optimization.
- projection_pushdown
 Do projection pushdown optimization.
- simplify_expression
 Run simplify expressions optimization.
- no_optimization
 Turn off (certain) optimizations.
- slice_pushdown
 Slice pushdown optimization.
- comm_subplan_elim
 Will try to cache branching subplans that occur on self-joins or unions.
- comm_subexpr_elim
 Common subexpressions will be cached and reused.
- streaming
 Run parts of the query in a streaming fashion (this is in an alpha state)
- Returns:
 - If 
gevent=False(default) then returns awaitable. - If 
gevent=Truethen returns wrapper that has .get(block=True, timeout=None)method.
- If 
 
Warning
This functionality is experimental and may change without it being considered a breaking change.
See also
polars.collect_allCollect multiple LazyFrames at the same time.
LazyFrame.collect_asyncTo collect single frame.
Notes
In case of error
set_exceptionis used onasyncio.Future/gevent.event.AsyncResultand will be reraised by them.