Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc:Fix formatting and minor content edits and bump to v10.4.1 #43

Merged
merged 3 commits into from Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,8 @@
## 10.3.1
- [DOC] Fixed formatting issues and made minor content edits [#43](https://github.com/logstash-plugins/logstash-integration-kafka/pull/43)

## 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.3.0'
s.version = '10.3.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