Export to tinybird¶
Export data to Tinybird.
Usage¶
The following are the step's expected inputs and outputs and their specific types.
export_to_tinybird(ds: dataset, {"param": value})
where the object {"param": value}
is optional in most cases and if present may contain any of the parameters described in the
corresponding section below.
Inputs¶
ds: dataset
Dataset to be exported.
Parameters¶
integration: string
Tinybird Integration to be used.
datasource: string
Data Source.
if_exists: string = "fail"
Configures this step's behaviour in case the datasource already exists. If you want to override the existing datasource you can use replace
, but keep in mind this deletes your previous data.
Otherwise if your desired outcome is to append the dataset's rows to the datasource you can use append
.
The default value is set to fail
to prevent you from accidentally losing data or compromising a datasource's structure.
Must be one of:
"fail"
,
"replace"
,
"append"