Replies: 1 comment 1 reply
-
Hi, yes CSV enables streaming (don't need the whole file in memory). Parquet needs to fit into memory for sling. There are complex ways to do this without streaming, but sling doesn't support that. For your second point, true, but not supported ATM. There were plans to support bypassing sling ( Maybe write a python script? to export all your tables into GCS as parquet and import into BigQuery. The tedious part is writing all the DDLs in BQ (which is why sling exists :). So you'll have to map the column types over. Feel free to use types_native_to_general.tsv and types_general_to_native.tsv which sling uses. |
Beta Was this translation helpful? Give feedback.
-
I was looking into using sling to sync data from snowflake to bigquery.
Beta Was this translation helpful? Give feedback.
All reactions