w.online_tables: Online Tables

class databricks.sdk.service.catalog.OnlineTablesAPI

Online tables provide lower latency and higher QPS access to data from Delta tables.

create([, name: Optional[str], spec: Optional[OnlineTableSpec]]) OnlineTable

Create an Online Table.

Create a new Online Table.

Parameters:
  • name – str (optional) Full three-part (catalog, schema, table) name of the table.

  • specOnlineTableSpec (optional) Specification of the online table.

Returns:

OnlineTable

delete(name: str)

Delete an Online Table.

Delete an online table. Warning: This will delete all the data in the online table. If the source Delta table was deleted or modified since this Online Table was created, this will lose the data forever!

Parameters:

name – str Full three-part (catalog, schema, table) name of the table.

get(name: str) OnlineTable

Get an Online Table.

Get information about an existing online table and its status.

Parameters:

name – str Full three-part (catalog, schema, table) name of the table.

Returns:

OnlineTable