function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mahesh Reddy 72Mahesh Reddy 72 

what are the limitations in dataloader when bulk api enable?

James LoghryJames Loghry
While the Bulk API supports several more records per transaction (5,000 as opposed to either 1,000 or 200 I can't remember which at the moment), you do have to be darn sure your triggers can handle the huge volume of data.  It's also a great way to reduce the overall numer of requests if you're pumping several hundreds of thousands or millions of records through data loader.  Through a simple google search, here is the list of Bulk API limits: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/asynch_api_concepts_limits.htm
Parker EdelmannParker Edelmann
That's an awesome link.