tCassandraOutputBulk Standard properties - Cloud - 8.0

Cassandra

Version
Cloud
8.0
Language
日本語
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Open Studio for Big Data
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
ジョブデザインと開発 > サードパーティーシステム > NoSQLコンポーネント > Cassandra
データガバナンス > サードパーティーシステム > NoSQLコンポーネント > Cassandra
データクオリティとプレパレーション > サードパーティーシステム > NoSQLコンポーネント > Cassandra
Last publication date
2023-09-14

These properties are used to configure tCassandraOutputBulk running in the Standard Job framework.

The Standard tCassandraOutputBulk component belongs to the ビッグデータ and the データベースNoSQL families.

The component in this framework is available in all Talend products with Big Data and in Talend Data Fabric.

Basic settings

Property type

Either Built-In or Repository.

Built-In: No property data stored centrally.

Repository: Select the repository file where the properties are stored.

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:

  • View schema: choose this option to view the schema only.

  • Change to built-in property: choose this option to change the schema to Built-in for local changes.

  • Update repository connection: choose this option to change the schema stored in the repository and decide whether to propagate the changes to all the Jobs upon completion.

    If you just want to propagate the changes to the current Job, you can select No upon completion and choose this schema metadata again in the Repository Content window.

 

Built-In: You create and store the schema locally for this component only.

 

Repository: You have already created the schema and stored it in the Repository. You can reuse it in various projects and Job designs.

When the schema to be reused has default values that are integers or functions, ensure that these default values are not enclosed within quotation marks. If they are, you must remove the quotation marks manually.

For more information, see Retrieving table schemas.

Table type

Select the type of the data model to be used for the table to be created. It can be CQL (actually CQL3) or non-CQL (the legacy thrift-based API of Cassandra before CQL3).

This drop-down list is available only when the DB version you are using is Cassandra 2.0.0 (deprecated). For the Cassandra versions later than 2.0.0, CQL becomes the only model used by this component and so this list is no longer available.

DB Version

Select the Cassandra version you are using.

File name

Type in the name of file into which you want to write the SSTable.

This field is only available when the version of your database is Cassandra 4.x/4.0.x.

Keyspace

Type in the name of the keyspace into which you want to write the SSTable.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Column family

Type in the name of the column family into which you want to write the SSTable.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Partitioner

Select the partitioner which determines how data is distributed across the Cassandra cluster.

  • Random

  • Murmur3

  • Order preserving: not recommended because it assumes keys are UTF8 strings.

For more information about the partitioner, see http://wiki.apache.org/cassandra/Partitioners.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Schema statement

Enter the statement to define the schema of the column family to be used or to be created on the fly.

  • This statement is a Cassandra prepared statement, which stores query results locally in the SSTable directory you define with this component before sending them to the server. For further information about the prepared statements, see Prepared statements.

  • A Cassandra column family is a container for a collection of rows of records that have a similar kind. Its schema must contain strictly the same columns as the component schema you have defined, that is to say, the column names and the order of the columns in both the schemas must be identical.

An example of this schema statement is provided in the Schema statement field:
create table ks.tb (id int, name text, birthday timestamp, primary key(id, birthday)) with clustering order by (birthday desc)
It will create a column family called tb containing the id, the name and the birthday columns under the keyspace ks.

For further information about a column family, see Standard column family.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Insert statement

Enter the statement to instruct how to write the data from the input flow into the columns of the column family to be used.

This statement is a Cassandra prepared statement, which stores query results locally in the SSTable directory you define with this component before sending them to the server. For further information about the prepared statements, see Prepared statements.

An example of this insert statement is provided in the Insert statement field:
insert into ks.tb (id, name, birthday) values (?, ?, ?)
It will write data into the id, the name and the birthday columns, respectively, of a column family called tb in the keyspace ks. The question marks in the statement are the bind variable markers for the three columns. For further information about bind variables and their usage, see Bound parameters.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

SSTable directory

Specify the local directory for the SSTable. Note that the complete path to the SSTable will be the local directory appended by the specified keyspace name and column family name.

For example, if you set the local directory to /home/talend/sstable, and specify testk as the keyspace name and testc as the column family name, the complete path to the SSTable will be /home/talend/sstable/testk/testc/.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Buffer size

Specify what size the SSTable must reach before it is written into Cassandra.

This field is only available when the version of your database is Cassandra 3.3.x/3.2.x/3.1.x/3.0.x.

Advanced settings

tStatCatcher Statistics

Select this check box to gather the Job processing metadata at the Job level as well as at each component level.

Global Variables

Global Variables

ERROR_MESSAGE: the error message generated by the component when an error occurs. This is an After variable and it returns a string. This variable functions only if the Die on error check box is cleared, if the component has this check box.

A Flow variable functions during the execution of a component while an After variable functions after the execution of the component.

To fill up a field or expression with a variable, press Ctrl+Space to access the variable list and choose the variable to use from it.

For more information about variables, see Using contexts and variables.

Usage

Usage rule

This component always needs an incoming link.