tPartition properties for Apache Spark Batch
These properties are used to configure tPartition running in the Spark Batch Job framework.
The Spark Batch tPartition component belongs to the Processing family.
The component in this framework is available in all Talend products with Big Data and in Talend Data Fabric.
Basic settings
Schema and Edit Schema |
A schema is a row description. It defines the number of fields (columns) to be processed and passed on to the next component. When you create a Spark Job, avoid the reserved word line when naming the fields. Click Edit schema to make changes to the schema. If the current schema is of the Repository type, three options are available:
Click Sync columns to retrieve the schema from the previous component connected in the Job. |
Number of partitions |
Enter the number of partitions you want to split the input dataset up into. |
Repartition by range |
Select this check box to divide the dataset into multiple partitions. For more information, see the official Spark documentation. This option is only available in Dataset mode. Information noteNote: tPartition component supports Spark Dataset API only when:
|
Use coalesce |
Select this check box to reduce the number of partitions that are returned. For more information, see the official Spark documentation. This option is only available in Dataset mode. Information noteNote: tPartition component supports Spark Dataset API only when:
|
Partition key |
Complete this table to define the key to be used for the partitioning. In the Partition key table, the schema columns are automatically added into the Column column and in the Partition column column, you need to select the check box(es) corresponding to the column(s) you want to use as the key of the partitioning. This partitioning proceeds in the hash mode, that is to say, the records meeting the same criteria (the key) are dispatched into the same partition. |
Use custom partitioner |
Select this check box to use a Spark partitioner you need to
import from outside the Studio. For example, a partitioner you have
developed by yourself. In this situation, you need to give the
following information:
|
Sort within partitions |
Select this check box to sort the records within each partition. This feature is useful when a partition contains several distinct
key values.
|
Usage
Usage rule |
This component is used as an intermediate step. This component, along with the Spark Batch component Palette it belongs to, appears only when you are creating a Spark Batch Job. Note that in this documentation, unless otherwise explicitly stated, a scenario presents only Standard Jobs, that is to say traditional Talend data integration Jobs. |
Spark Connection |
In the Spark
Configuration tab in the Run
view, define the connection to a given Spark cluster for the whole Job. In
addition, since the Job expects its dependent jar files for execution, you must
specify the directory in the file system to which these jar files are
transferred so that Spark can access these files:
This connection is effective on a per-Job basis. |