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
Marty Y. ChangMarty Y. Chang 

extract or export via Apex Data Loader command line is over 300 times slower than expected

When I perform a certain export operation using the Apex Data Loader GUI, the operation takes about 10 seconds to complete.

 

When I attempt the exact same operation using the Apex Data Loader through the command line, the operation takes almost 1 hour to complete.

 

Has anyone else encountered this massive discrepancy?  And does anyone have any ideas on how to speed up the command line operation?

Best Answer chosen by Admin (Salesforce Developers) 
OnurKOnurK

Change the sfdc.debugMessages value as "false"

 

<entry key="sfdc.debugMessages" value="false"/>

All Answers

Ritesh AswaneyRitesh Aswaney
I would check the server URL and/or proxy settings in your process-conf.xml
OnurKOnurK

Change the sfdc.debugMessages value as "false"

 

<entry key="sfdc.debugMessages" value="false"/>

This was selected as the best answer