Skip to main content
async Table.load_async(
    data: Table | DataFrame | DataLoad,
    /,
) → None
Load data into the table asynchronously. This is a non-blocking operation allowing to load data into one or more tables concurrently.

Parameters

data

The data to load.
Loading two DataFrames concurrently:
Loading two DataFrames sequentially:
Loading three DataFrames in a concurrent and sequential mix:
See also: load() and data_transaction().