Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffail committed Oct 7, 2022
1 parent e013a51 commit ffd7151
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.

- The `nats_jetstream` input now adds a range of useful metadata information to messages.
- Field `transaction_type` added to the `azure_table_storage` output, which deprecates the previous `insert_type` field and supports interpolation functions.
- Field `logged_batch` added to the `cassandra` output.

## 4.9.1 - 2022-10-06

Expand Down
2 changes: 1 addition & 1 deletion internal/impl/cassandra/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ output:
).Advanced(),
docs.FieldBool(
"logged_batch",
"If enabled the driver will perform a logged batch.",
"If enabled the driver will perform a logged batch. Disabling this prompts unlogged batches to be used instead, which are less efficient but necessary for alternative storages that do not support logged batches.",
).Advanced(),
docs.FieldInt("max_retries", "The maximum number of retries before giving up on a request.").Advanced(),
docs.FieldObject("backoff", "Control time intervals between retry attempts.").WithChildren(
Expand Down
2 changes: 1 addition & 1 deletion website/docs/components/outputs/cassandra.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Options: `ANY`, `ONE`, `TWO`, `THREE`, `QUORUM`, `ALL`, `LOCAL_QUORUM`, `EACH_QU

### `logged_batch`

If enabled the driver will perform a logged batch.
If enabled the driver will perform a logged batch. Disabling this prompts unlogged batches to be used instead, which are less efficient but necessary for alternative storages that do not support logged batches.


Type: `bool`
Expand Down

0 comments on commit ffd7151

Please sign in to comment.