Skip to content

Commit

Permalink
Doc:Fix formatting and minor content edits and bump to v10.4.1 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
karenzone committed Jul 9, 2020
1 parent a2b84cb commit 7f95509
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,12 @@

## 10.4.1
- [DOC] Fixed formatting issues and made minor content edits [#43](https://github.com/logstash-plugins/logstash-integration-kafka/pull/43)

## 10.4.0
- added the input `isolation_level` to allow fine control of whether to return transactional messages [#44](https://github.com/logstash-plugins/logstash-integration-kafka/pull/44)

## 10.3.0
- added the input and output `client_dns_lookup` parameter to allow control of how DNS requests are made
- added the input and output `client_dns_lookup` parameter to allow control of how DNS requests are made [#28](https://github.com/logstash-plugins/logstash-integration-kafka/pull/28)

## 10.2.0
- Changed: config defaults to be aligned with Kafka client defaults [#30](https://github.com/logstash-plugins/logstash-integration-kafka/pull/30)
Expand Down
20 changes: 12 additions & 8 deletions docs/output-kafka.asciidoc
Expand Up @@ -115,10 +115,13 @@ output plugins.
The number of acknowledgments the producer requires the leader to have received
before considering a request complete.

acks=0, the producer will not wait for any acknowledgment from the server at all.
acks=1, This will mean the leader will write the record to its local log but
will respond without awaiting full acknowledgement from all followers.
acks=all, This means the leader will wait for the full set of in-sync replicas to acknowledge the record.
`acks=0`. The producer will not wait for any acknowledgment from the server.

`acks=1`. The leader will write the record to its local log, but will respond
without waiting for full acknowledgement from all followers.

`acks=all`. The leader will wait for the full set of in-sync replicas before
acknowledging the record.

[id="plugins-{type}s-{plugin}-batch_size"]
===== `batch_size`
Expand Down Expand Up @@ -154,11 +157,12 @@ The total bytes of memory the producer can use to buffer records waiting to be s
===== `client_dns_lookup`

* Value type is <<string,string>>
* Valid options are `use_all_dns_ips`, `resolve_canonical_bootstrap_servers_only`, `default`
* Default value is `"default"`

How DNS lookups should be done. If set to `use_all_dns_ips`, when the lookup returns multiple
IP addresses for a hostname, they will all be attempted to connect to before failing the
connection. If the value is `resolve_canonical_bootstrap_servers_only` each entry will be
Controls how DNS lookups are done. If set to `use_all_dns_ips`, Logstash tries
all IP addresses returned for a hostname before failing the connection.
If set to `resolve_canonical_bootstrap_servers_only`, each entry will be
resolved and expanded into a list of canonical names.

[id="plugins-{type}s-{plugin}-client_id"]
Expand All @@ -178,7 +182,7 @@ ip/port by allowing a logical application name to be included with the request
* Default value is `"none"`

The compression type for all data generated by the producer.
The default is none (i.e. no compression). Valid values are none, gzip, or snappy.
The default is none (i.e. no compression). Valid values are none, gzip, snappy, or lz4.

[id="plugins-{type}s-{plugin}-jaas_path"]
===== `jaas_path`
Expand Down
2 changes: 1 addition & 1 deletion logstash-integration-kafka.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-integration-kafka'
s.version = '10.4.0'
s.version = '10.4.1'
s.licenses = ['Apache-2.0']
s.summary = "Integration with Kafka - input and output plugins"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
Expand Down

0 comments on commit 7f95509

Please sign in to comment.