Skip to content

Commit

Permalink
Fix logstash default bulk max size (elastic#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen Siering authored and ruflin committed Jun 10, 2016
1 parent 17877d8 commit 1999d22
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ https://github.com/elastic/beats/compare/v1.2.3...1.3[Check the HEAD diff]

*Affecting all Beats*
- Fix output modes backoff counter reset. {issue}1803[1803] {pull}1814[1814] {pull}1818[1818]
- Set logstash output default bulk_max_size to 2048. {issue}1662[1662]

- Drain response buffers when pipelining is used by redis output. {pull}1353[1353]
- Unterminated environment variable expressions in config files will now cause an error {pull}1389[1389]
Expand Down
4 changes: 4 additions & 0 deletions filebeat/etc/filebeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ output:
# Number of workers per Logstash host.
#worker: 1

# The maximum number of events to bulk into a single batch window. The
# default is 2048.
#bulk_max_size: 2048

# Set gzip compression level.
#compression_level: 3

Expand Down
4 changes: 4 additions & 0 deletions libbeat/etc/libbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ output:
# Number of workers per Logstash host.
#worker: 1

# The maximum number of events to bulk into a single batch window. The
# default is 2048.
#bulk_max_size: 2048

# Set gzip compression level.
#compression_level: 3

Expand Down
2 changes: 1 addition & 1 deletion libbeat/outputs/logstash/logstash.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const (
logstashDefaultTimeout = 30 * time.Second
logstasDefaultMaxTimeout = 90 * time.Second
defaultSendRetries = 3
defaultMaxWindowSize = 1024
defaultMaxWindowSize = 2048
defaultCompressionLevel = 3
)

Expand Down
4 changes: 4 additions & 0 deletions packetbeat/etc/packetbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ output:
# Number of workers per Logstash host.
#worker: 1

# The maximum number of events to bulk into a single batch window. The
# default is 2048.
#bulk_max_size: 2048

# Set gzip compression level.
#compression_level: 3

Expand Down
4 changes: 4 additions & 0 deletions topbeat/etc/topbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ output:
# Number of workers per Logstash host.
#worker: 1

# The maximum number of events to bulk into a single batch window. The
# default is 2048.
#bulk_max_size: 2048

# Set gzip compression level.
#compression_level: 3

Expand Down
4 changes: 4 additions & 0 deletions winlogbeat/etc/winlogbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ output:
# Number of workers per Logstash host.
#worker: 1

# The maximum number of events to bulk into a single batch window. The
# default is 2048.
#bulk_max_size: 2048

# Set gzip compression level.
#compression_level: 3

Expand Down

0 comments on commit 1999d22

Please sign in to comment.