Richard
12/06/2024, 10:42 AM{stream_name}-tableName
to have just tableName ? I've read the documentation about File Naming Scheme (file_naming_scheme)
in target-csv but im not sure if i can somehow delete the {stream_name}
. Thank you so muchReuben (Matatika)
12/06/2024, 12:38 PM{schema_name}-{table_name}
?). In theory, you can modify the output CSV file names using stream_maps and __alias__
config:
stream_maps:
'*':
__alias__: '__stream_name__.split("-")[1]'
, although you might want to consider the implications of having multiple streams of names that reference the same table map to a single CSV file.Richard
12/06/2024, 12:51 PM