https://delta.io logo
m

Michaël Gainhao

04/14/2023, 1:41 PM
Hi, Based on the databricks doc for GCP https://docs.gcp.databricks.com/sql/language-manual/delta-copy-into.html It seems Copy into a delta table from Google Cloud storage is not supported, am I correct ? or am i missing something ? Thanks
ok my bad, it seems to be possible: based on the snippet found here https://docs.gcp.databricks.com/ingestion/copy-into/examples.html
Copy code
COPY INTO my_delta_table
  FROM (SELECT to_date(dt) dt, event as measurement, quantity::double
          FROM '<gs://my-bucket/avroData>')
  FILEFORMAT = AVRO
👍 1
7 Views