_set_the_format
file format for normalization step and to store your data at the destination:
-
You can set the
loader_file_format
argument toin the run command:
info = pipeline.run(some_source(), loader_file_format="")
- You can set the
loader_file_format
inconfig.toml
orsecrets.toml
:
[normalize] loader_file_format=""
- You can set the
loader_file_format
via environment variable:
"export" NORMALIZE__LOADER_FILE_FORMAT=""
- You can set the file type directly in the resource decorator.
@dlt.resource(file_format="") def generate_rows(nr): pass