Using an Open Parser Spark Job

  1. Create an instance of DataNormalizationFactory, using its static method getInstance().
  2. Provide the input and output details for the Open Parser job by creating an instance of OpenParserDetail specifying the ProcessType. The instance must use the type SparkProcessType.
    1. Configure the parsing rules by creating an instance of OpenParserConfiguration. In this instance, set the grammar file path.
    2. Set the details of the Reference Data Path and location type by creating an instance of ReferenceDataPath. See Enum ReferenceDataPathLocation.
    1. Create an instance of OpenParserDetail, by passing an instance of type JobConfig, and the OpenParserConfiguration and ReferenceDataPath instances created earlier as the arguments to its constructor.
      The JobConfig parameter must be an instance of type SparkJobConfig.
    1. In the instance of the OpenParserDetail created above, set the details of the input file using the inputPath field of the OpenParserDetail instance.
      • For a text input file, create an instance of FilePath with the relevant details of the input file by invoking the appropriate constructor.
      • For an ORC input file, create an instance of OrcFilePath with the path of the ORC input file as the argument.
      • For a Parquet input file, create an instance of ParquetFilePath with the path of the Parquet input file as the argument.
    2. Set the details of the output file using the outputPath field of the OpenParserDetail instance.
      • For a text output file, create an instance of FilePath with the relevant details of the output file by invoking the appropriate constructor.
      • For an ORC output file, create an instance of OrcFilePath with the path of the ORC output file as the argument.
      • For a Parquet output file, create an instance of ParquetFilePath with the path of the Parquet output file as the argument.
    3. Set the name of the job using the jobName field of the OpenParserDetail instance.
  3. To create and run a Spark job, use the previously created instance of DataNormalizationFactory to invoke its method runSparkJob(). In this, pass the above instance of OpenParserDetail as an argument.
    The runSparkJob() method runs the job and returns a Map of the reporting counters of the job.