Snowflake ON_ERROR=CONTINUE abort the COPY command for file

10.6k Views Asked by At

Snowkflake documentation for COPY INTO command states (for COPY options)

ON_ERROR = CONTINUE | SKIP_FILE | SKIP_FILE_num | SKIP_FILE_num% | ABORT_STATEMENT

Continue loading the file. The COPY statement returns an error message for a maximum of one error encountered per data file. Note that the difference between the ROWS_PARSED and ROWS_LOADED column values represents the number of rows that include detected errors. However, each of these rows could include multiple errors. To view all errors in the data files, use the VALIDATION_MODE parameter or query the VALIDATE function.

But for me, it just doesn't seem to obey, as I see the default value i.e SKIP_FILE is getting applied as files are getting skipped on any error in the file.

create or replace file format jsonThing type = 'json' DATE_FORMAT='yyyy-mm-dd' 
   TIMESTAMP_FORMAT='YYYY-MM-DD"T"HH24:MI:SSZ' TRIM_SPACE=TRUE NULL_IF=('\\N', 'NULL',''); 

create or replace stage snowflake_json_stage
   storage_integration = snowflake_json_storage_integration
   url = 'azure://snowflakejson.blob.core.windows.net/cdrs'
   file_format = jsonThing
   COPY_OPTIONS = (ON_ERROR=CONTINUE PURGE=TRUE MATCH_BY_COLUMN_NAME=CASE_INSENSITIVE)
   COMMENT='The snowflake json stage';

CREATE or REPLACE PIPE SNOWFLAKE_JSON_PIPE
   AUTO_INGEST = TRUE
   integration = snowflake_json_notification_integration
   as
   COPY INTO purge.public.cdrs
   from @SNOWFLAKE_JSON_STAGE 
   ON_ERROR=CONTINUE 
   MATCH_BY_COLUMN_NAME=CASE_INSENSITIVE;

Do ON_ERROR=CONTINUE options work with PIPE?

NOTE: The file is an NDJSON file.

0

There are 0 best solutions below