Interface StartImportOptions

Options for starting a bulk import operation.

interface StartImportOptions {
    errorMode?: "abort" | "continue";
    integration?: string;
    uri: string;
}

Properties

errorMode?: "abort" | "continue"

Indicates how to respond to errors during the import process. Possible values: abort or continue.

integration?: string

The id of the storage integration that should be used to access the data.

uri: string

The URI of the bucket (or container) and import directory containing the namespaces and Parquet files you want to import. For example, s3://BUCKET_NAME/IMPORT_DIR for Amazon S3, gs://BUCKET_NAME/IMPORT_DIR for Google Cloud Storage, or https://STORAGE_ACCOUNT.blob.core.windows.net/CONTAINER_NAME/IMPORT_DIR for Azure Blob Storage. For more information, see Import records.