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
udupaudupa 

Sforce Data Loader - Command Line Interface

Hi,

We run the Sforce Data Loader in the command line as follows:

java -Xms256m -Xmx256m -Dsalesforce.config.dir=CONFIG_DIR -jar sforcedataloader.jar

Here, what is -Xms256m -Xms256m?

Also, for GUI we use -Xms64m -Xms512m. What does this mean?


Thank you.
SuperfellSuperfell
-Xms64m - Starting heap size (64Mb)
-Xmx512m - Max Heap size (512Mb)
udupaudupa
Hi,

Thank you