Changes between Version 1 and Version 3 of Ticket #2734
- Timestamp:
- Jun 1, 2023, 11:44:14 AM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2734
- Property Summary NEW - wcst_import skip_by_analyze new setting → NEW - wcst_import "skip": "files_that_fail_to_open" to skip files which cannot analyze by wcst_import
-
Ticket #2734 – Description
v1 v3 3 3 - Skip the input file when it is not possible to import to rasdaman (this is dangerous). 4 4 5 Hence, it needs a new setting, called ` on_file_analysis_error` which when set to `true` and `skip`: false, then the input files which cannot be opened will be skipped, but if the files cannot import to rasdaman, then the process must stop.5 Hence, it needs a new setting, called `files_that_fail_to_open` which when set to `true` and `skip`: false, then the input files which cannot be opened will be skipped, but if the files cannot import to rasdaman, then the process must stop. 6 6 7 7 In summary: … … 9 9 - skip: true - skips file on any error 10 10 - skip: false - stop import on any error 11 - skip: "on_file_analysis_error" - skip file only if file analysis fails 11 - skip: "files_that_fail_to_open" - skip file only if file analysis fails 12 13 **NOTE:** file that cannot be accessed (e.g. user doesn't have permission to read the file) to read should stop import regardless of skip value.