Outputs
An output is a sink where we wish to send our consumed data after applying an optional array of processors. Only one output is configured at the root of a Bento config. However, the output can be a broker which combines multiple outputs under a chosen brokering pattern, or a switch which is used to multiplex against different outputs.
An output config section looks like this:
output:
label: my_s3_output
aws_s3:
bucket: TODO
path: '${! metadata("kafka_topic") }/${! json("message.id") }.json'
# Optional list of processing steps
processors:
- mapping: '{"message":this,"meta":{"link_count":this.links.length()}}'
Back Pressure
Bento outputs apply back pressure to components upstream. This means if your output target starts blocking traffic Bento will gracefully stop consuming until the issue is resolved.
Retries
When a Bento output fails to send a message the error is propagated back up to the input, where depending on the protocol it will either be pushed back to the source as a Noack (e.g. AMQP) or will be reattempted indefinitely with the commit withheld until success (e.g. Kafka).
It's possible to instead have Bento indefinitely retry an output until success with a retry
output. Some other outputs, such as the broker
, might also retry indefinitely depending on their configuration.
Dead Letter Queues
It's possible to create fallback outputs for when an output target fails using a fallback
output:
output:
fallback:
- aws_sqs:
url: https://sqs.us-west-2.amazonaws.com/TODO/TODO
max_in_flight: 20
- http_client:
url: http://backup:1234/dlq
verb: POST
Multiplexing Outputs
There are a few different ways of multiplexing in Bento, here's a quick run through:
Interpolation Multiplexing
Some output fields support field interpolation, which is a super easy way to multiplex messages based on their contents in situations where you are multiplexing to the same service.
For example, multiplexing against Kafka topics is a common pattern:
output:
kafka:
addresses: [ TODO:6379 ]
topic: ${! metadata("target_topic") }
Refer to the field documentation for a given output to see if it support interpolation.
Switch Multiplexing
A more advanced form of multiplexing is to route messages to different output configurations based on a query. This is easy with the switch
output:
output:
switch:
cases:
- check: this.type == "foo"
output:
amqp_1:
urls: [ amqps://guest:guest@localhost:5672/ ]
target_address: queue:/the_foos
- check: this.type == "bar"
output:
gcp_pubsub:
project: dealing_with_mike
topic: mikes_bars
- output:
redis_streams:
url: tcp://localhost:6379
stream: everything_else
processors:
- mapping: |
root = this
root.type = this.type.not_null() | "unknown"
Labels
Outputs have an optional field label
that can uniquely identify them in observability data such as metrics and logs. This can be useful when running configs with multiple outputs, otherwise their metrics labels will be generated based on their composition. For more information check out the metrics documentation.
Categories
- Services
- Network
- AWS
- GCP
- Azure
- Social
- Local
- Utility
Outputs that write to storage or message streaming services.
amqp_0_9amqp_1aws_dynamodbaws_kinesisaws_kinesis_firehoseaws_s3aws_snsaws_sqsazure_blob_storageazure_queue_storageazure_table_storagebeanstalkdcachecypherdiscordelasticsearchgcp_bigquerygcp_bigquery_write_apigcp_cloud_storagegcp_pubsubhdfskafkakafka_franzmongodbmqttnatsnats_jetstreamnats_kvnats_streamnsqopensearchpulsarpusherquestdbredis_hashredis_listredis_pubsubredis_streamssnowflake_putsplunk_hecsql_insertsql_rawOutputs that write directly to low level network protocols.
http_clienthttp_servernanomsgsftpsocketwebsocketzmq4Outputs that write to Amazon Web Services products.
aws_dynamodbaws_kinesisaws_kinesis_firehoseaws_s3aws_snsaws_sqsOutputs that write to Google Cloud Platform services.
gcp_bigquerygcp_bigquery_write_apigcp_cloud_storagegcp_pubsubOutputs that write to Microsoft Azure services.
azure_blob_storageazure_cosmosdbazure_queue_storageazure_table_storageOutputs that write to social applications and services.
discordOutputs that provide utility by combining/wrapping other outputs.
brokerdropdrop_ondynamicfallbackinprocrejectreject_erroredresourceretrysubprocessswitchsync_response