Configuring a Sample Spark job in Talend StudioΒΆ

This configuration creates a sample Spark job to filter the rows from randomly generated data.

  1. Open the Talend application.

  2. Navigate to Repository > Job Designs at the left pane of the Talend window and create a Big Data Batch job.

    ../../../../_images/big_data_job.png
  3. Name the job and click Finish. A standard job is created newly an opens up on the Designer window. It helps you to place components for creating a job.

  4. Use tRowGenerator component to generate data randomly.

  5. Import tRowGenerator from the Palette into the designer window and click the component to set the schema and rule for random generation. Click the plus icon (+) to to add multiple columns, data types, functions, and limit of variables.

    ../../../../_images/data_fabric.png
  6. Click OK.

  7. Add tSqlRow component to the job. It helps to process and filter the data.

  8. Right-click the tRowGenerator, select Row > Main, and connect to tSqlRow.

  9. Click tSqlRow to define the query and schema.

  10. Click Sync columns to import the schema defined in tRowGenerator. Select SQL Spark Context and define the query for filtering.

../../../../_images/tsqlrow1.png
  1. Print the filtered rows on the console using tLogRow.

  2. Connect the logging component with tSqlRow as mentioned in step 7 and click Sync columns. Choose Mode of view as Table.

    ../../../../_images/tlog.png

    The Spark job is now displayed as shown below.

    ../../../../_images/trowgenerator.png
  3. Navigate to the Run(Job_hive_sample_job) > Target Exec. Click Advanced settings and select Spark Configuration.

  4. Specify the API token. If you want the execution on a configured cluster, enter the label name of the cluster in Cluster label field. API endpoint is https://api.qubole.com by default, however, you can specify the API endpoint based on your location. But you still have an option to check Change API endpoint and select the right endpoint based on your location.

../../../../_images/builtin.png
  1. Navigate to the Basic Run section and click Run to run the job. It triggers the Spark query in QDS.

You have successfully configured and run the sample Spark job.