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
dturkeldturkel 

DataLoader: How do I prevent Success files from generating

What is the magical combination of variables to not include in config.propertiers and/or command line when executing the DataLoader (v21) so that successfiles aren't generated?  I keep getting a autogenerated success file unintentionally, which is a big impact to me since I'm loading a significant amount of data, and only care about the Errors (which I am getting, and have configured that way).

 

Here is my configuration (between my referenced config.properties, and the properties I override when I call Dataloader directly via javaw:

 

 

dataAccess.type=csvRead
dataAccess.writeBatchSize=10000
dataAccess.name=[secret]
dataAccess.readBatchSize=200
process.enableLastRunOutput=true
process.enableExtractSuccessOutput=false
process.mappingFile=..\\AccountsMap.sdl
process.operation=upsert
process.outputError=D:\SFDCDataFeeds\Residential\Working\Load_Error.csv.1  
process.statusOutputDirectory=D:\temp
sfdc.bulkApiCheckStatusInterval=30000  
sfdc.connectionTimeoutSecs=60
sfdc.debug=true  
sfdc.enableRetries=true
sfdc.entity=Account
sfdc.externalIdField=[secret]
sfdc.extractionRequestSize=500
sfdc.insertNulls=true
sfdc.loadBatchSize=10000
sfdc.minRetrySleepSecs=2
sfdc.maxRetries=3
sfdc.password=[secret]
sfdc.resetUrlOnLogin=true
sfdc.timeoutSecs=540
sfdc.truncateFields=false
sfdc.useBulkApi=true
sfdc.username=[secret]

 

I thought I had this working before, but apparently not because I'm still getting a success[timestamp]csv file being created in the directory indicated in process.statusOutputDirectory.

 

This is a big deal because I have limited space on my processing server, and I'm processing 5-30Gb depending on the day (our org has increased loading limits.

 

Thanks,

 

Dave

 

 

Best Answer chosen by Admin (Salesforce Developers) 
dturkeldturkel

I received an answer from SFDC support that the variable "process.statusOutputDirectory=D:\temp" needs to not be set, otherwise the success files are downloaded any way.