Write into a Cassandra data store

Properties

NameTypeDescriptionRequired
connection
(The connection to use for loading)
stringLogical connection name as defined in the connections.yaml
yes
keyspacestringKeyspace
yes
table
(The target table name)
stringTarget table name
yes
keys
(Business keys)
arrayyes
mapping
(Fields to write)
arrayyes
opcode_fieldstringName of the field in the payload that holds the operation (c - create, d - delete, u - update) for this record in the DB
yes

Additional Properties: not allowed

Example

id: load_snowflake
type: relational.write
properties:
  connection: eu_datalake
  table: employees
  schema: dbo
  load_strategy: APPEND

keys[]: Business keys

Items: name of column

No properties.

Example

- fname
- lname: last_name

mapping[]: Fields to write

Items: name of column

No properties.

Example

- fname
- lname: last_name
- address
- gender