...
FOLDER LOCATIONS NOTE: file: must be used for location identification.
*batch.tables.input.folder=file:/location/of/input/folder/ full path to folder that will contain initial csv files
*batch.tables.process.folder=file:/location/of/process/folder/ full full path to folder where csv files will be processed
*batch.tables.upsert.folder=file:/location/of/upsert/folder full full path to folder where csv files will be upserted
*batch.tables.archive.folder=file:/location/of/archive full path to archive folder
FILE LOCATIONS
batch.tables.input.files=${batch.tables.input.folder}*.csv full full path to uploaded files
batch.tables.process.files=${batch.tables.process.folder}*.csv full path to files to process
batch.tables.upsert.files=${batch.tables.upsert.folder}*.csv full full path to files to upsert
INITIALIZATION
batch.tables.lagTimeBeforeStartInMinutes=10 set minutes file set minutes files must be unmodified before beginning processing (default: 10)
ARCHIVING
batch.tables.retain.input.archive= true turn archiving on default is true
batch.tables.archive=UNIQUE what files to archive, ALL, NONE, UNIQUE default: UNIQUE
TOLERANCE
batch.rawitem.skip.limit=10 number number of lines generating validation errors to allow during read/write
batch.rawitem.commit.interval=100 size of the batch
batch.upsertitem.skip.limit=10 number of lines generating validation errors to allow during upsert
batch.upsertitem.commit.interval=100 size size of batch. Larger batch sizes will reduce processing time make errors less specific
...
DATABASE
db_name=ssp Default is ssp
batch.jdbc.url=jdbc:postgresql://127.0.0.1:5432/${db_name} The full URL to the source database (default:jdbc:postgresql://localhost:5432/ssp)
batch.jdbc.driver=org.postgresql.Driver The The driver to be used example: (default:org.postgresql.Driver) or net.sourceforge.jtds.jdbc.Driver
batch.jdbc.user=sspadmin The The username for the source database (default:sspadmin)
batch.jdbc.password=sspadmin The password for the source database. (default:sspadmin)
...
EMAIL NOTIFICATION NOTE: ** indicates required if batch.sentMail is true)
batch.sendEmail=true Activate Activate email (default: true)
**batch.smtp.host=localhost host name (default: localhost)
**batch.smtp.port=25 port (default: 25)
**batch.smtp.protocol=smtp protocol to be used (default: smtp)
**batch.smtp.username=sysadmin username (default: sysadmin)
**batch.smtp.password=password password (default: password)
...