Developing a custom parser module
About the abstract parse method
After you implement the abstract parse method, the parser receives the full name (of the file to parse) as the first parameter and returns a DataSetList object containing data that has been extracted.
The parser does not find and select files to parse. The ETL framework does this task in advance as per the configuration present during the creation of the ETL.
For instance, the ETL is configured to access a Secure File Transfer Protocol (SFTP) folder and select files that match a certain pattern. The ETL framework copies the selected files via SFTP to the local ETL engine disk and then, it sequentially calls the parse method of the defined custom parser for each file. This means that the ETL will:
- Call the parse method for the first file.
- Populate the output dataset with the result.
- Call the parse method for the second file.
- Append the result to the dataset, and so on.
After parsing each file and depending on configuration, the ETL framework will rename or move the parsed file.
Consider the following example:
Full example code
You can download the full code of the example presented:
.