Cassandra

Cassandra sink connector

Write data to Apache Cassandra.

Key featuresarrow-up-right

name
type
required
default value

host

String

Yes

-

keyspace

String

Yes

-

table

String

Yes

-

username

String

No

-

password

String

No

-

datacenter

String

No

datacenter1

consistency_level

String

No

LOCAL_ONE

fields

String

No

LOCAL_ONE

batch_size

int

No

5000

batch_type

String

No

UNLOGGED

async_write

boolean

No

true

host [string]arrow-up-right

Cassandra cluster address, the format is host:port , allowing multiple hosts to be specified. Such as "cassandra1:9042,cassandra2:9042".

keyspace [string]arrow-up-right

The Cassandra keyspace.

table [String]arrow-up-right

The Cassandra table name.

username [string]arrow-up-right

Cassandra user username.

password [string]arrow-up-right

Cassandra user password.

datacenter [String]arrow-up-right

The Cassandra datacenter, default is datacenter1.

consistency_level [String]arrow-up-right

The Cassandra write consistency level, default is LOCAL_ONE.

fields [array]arrow-up-right

The data field that needs to be output to Cassandra , if not configured, it will be automatically adapted according to the sink table schema.

batch_size [number]arrow-up-right

The number of rows written through Cassandra-Java-Driverarrow-up-right each time, default is 5000.

batch_type [String]arrow-up-right

The Cassandra batch processing mode, default is UNLOGGER.

async_write [boolean]arrow-up-right

Whether cassandra writes in asynchronous mode, default is true.

Last updated