When implementing the runLargeFileLoader job initiator script strategy, the partition,
transformation, and load workflow is as follows:
-
The
runLargeFileLoader job initiator script, runs the
configuration file, creates the required named pipes, and submits the Connect
ETL partition job, which reads the input file set and initiates the Connect ETL
partition task.
-
The
Connect ETL partition task partitions the input file set into the applicable
named pipes.
-
The
runLargeFileLoader job initiator script submits one Connect
ETL transformation and load job for each partition.
Each parallel transformation and
load job reads the named pipe and calls the Connect ETL transformation task and
the custom load task.
-
Using
the named pipes as input, the Connect ETL task transforms the data.
The following example reformats the EBCDIC-encoded data on the named pipe into an
ASCII-encoded standard input. 
-
Using the standard input file as input, the Connect ETL custom load task, calls the
database load script.
-
Using the parameter and environment variable values available to the system after the
runLargeFileLoader job initiator script runs the configuration file. The database load
script builds the vsql command that loads the data from the standard input file directly
into initiator nodes of the Vertica database.
When implementing the runMultiFileLoader job initiator script strategy, the transformation
and load workflow is as follows:
- The runMultiFileLoader job initiator script, runs the configuration file, creates the
required named pipes based upon the number of standard input files, and submits an
instance of the Connect ETL transformation and load job for each named pipe.
Each
parallel transformation and load job reads the named pipe and calls the Connect ETL
transformation task and the custom load task.
- Using the named pipes as input, the Connect ETL task transforms the data.
The
following example reformats the EBCDIC-encoded data on the named pipe into ASCII-encoded
standard input.

- Using the standard input file as input, the Connect ETL custom load task, calls the
database load script.
- Using environment variables, the database load script builds the vsql command that loads
the data from the standard input file directly into initiator nodes of the Vertica
database.