Posts

Showing posts with the label Bulk API

Salesforce Fact #663 | Bulk API job states

Below are the Bulk API Job states: 1. Open: The job has been created. 2. UploadComplete: The data has been uploaded to the job. 3. InProgress: The job is being processed by Salesforce. 4. Aborted: The job has been aborted. 5. JobComplete: The job has been processed by Salesforce. 6. Failed: Some records in the job got failed. Reference:  https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/get_job_info.htm

Salesforce Fact #647 | Bulk API serial mode

We can enable serial mode processing using Bulk API in data loader. Parallel processing can cause database contention which can cause the load to fail eventually. Serial mode processes one batch at a time, but the processing time might get increased. Steps to enable Bulk API serial mode:  Open Data Loader -> Settings -> Check Bulk API -> Check Enable serial mode for Bulk API. Reference:  https://developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/loader_configuring_bulk_api.htm