Synadia Connect

Cypher

NAMERUNTIMETYPEVERSION
cypherwombatsinklatest

The cypher output type writes a batch of messages to any graph database that supports the Neo4j or Bolt protocols.

Configuration

NameTypeOptionalSecretDescription
uristringnonoThe connection URI to connect to.
See https://neo4j.com/docs/go-manual/current/connect-advanced/[Neo4j's documentation^] for more information.
cypherstringnonoThe cypher expression to execute against the graph database.
database_namestringyesnoSet the target database for which expressions are evaluated against. The value defaults to "".
args_mappingstringnonoThe mapping from the message to the data that is passed in as parameters to the cypher expression. Must be an object. By default the entire payload is used.
basic_authbasic_authnonoAllows you to specify basic authentication.
tlstlsnonoCustom TLS settings can be used to override system defaults.
batchingbatchingnonoAllows you to configure a batching policy.
max_in_flightintyesnoThe maximum number of messages to have in flight at a given time. Increase this to improve throughput. The value defaults to 64.

Basic Auth

NameTypeOptionalSecretDescription
enabledboolyesnoWhether to use basic authentication in requests. The value defaults to false.
usernamestringyesnoA username to authenticate as. The value defaults to "".
passwordstringyesyesA password to authenticate with. The value defaults to "".
realmstringyesnoThe realm for authentication challenges. The value defaults to "".

TLS Configuration

NameTypeOptionalSecretDescription
enabledboolyesnoWhether custom TLS settings are enabled. The value defaults to false.
skip_cert_verifyboolyesnoWhether to skip server side certificate verification. The value defaults to false.
enable_renegotiationboolyesnoWhether to allow the remote server to repeatedly request renegotiation.
Enable this option if you're seeing the error message local error: tls: no renegotiation. The value defaults to false.
root_casstringyesyesAn optional root certificate authority to use.
This is a string, representing a certificate chain from the parent trusted root certificate,
to possible intermediate signing certificates, to the host certificate. The value defaults to "".
client_certs[]client_certsyesnoA list of client certificates to use. . The value defaults to [].

Batching

NameTypeOptionalSecretDescription
countintyesnoA number of messages at which the batch should be flushed. If 0 disables count based batching. The value defaults to 0.
byte_sizeintyesnoAn amount of bytes at which the batch should be flushed. If 0 disables size based batching. The value defaults to 0.
periodstringyesnoA period in which an incomplete batch should be flushed regardless of its size. The value defaults to "".
checkstringyesnoA Bloblang query that should return a boolean value indicating whether a message should end a batch. The value defaults to "".
Previous
Couchbase