...
The Bulk Loader is run on the ETL server, and depending on the number of address records that are going to be processed, the Bulk Loader will complete its work at any time from a few minutes, to a few hours. The following table contains some information for some typical runs.
environment | type | records | stage | bulk load |
---|---|---|---|---|
SF_DEV | shapefile | 558 | 7-9 seconds | 30-130 seconds |
SF_DEV | shapefile | 49,980 | 25 seconds | 5 minutes |
- Remote desktop (RDP) into the ETL server.
Move to the directory that contains the file
job.py
.Code Block language text cd C:\apps\eas_automation\automation\src
Stage the input data.
Code Block language text title Shapefile Input Format python job.py --job stage_bulkload_shapefile --env [Your Environment] --action EXECUTE
Code Block language text title CSV Input Format python job.py --job stage_bulkload_csv --env [Your Environment] --action EXECUTE
Run the
bulkload
job.Code Block language text python job.py --job bulkload --env [Your Environment] --action EXECUTE
...