-
Notifications
You must be signed in to change notification settings - Fork 147
Open
Labels
Description
Logstash information:
- Logstash version (e.g.
bin/logstash --version)
logstash 8.0.0 - Logstash installation source (e.g. built from source, with a package manager: DEB/RPM, expanded from tar or zip archive, docker)
rpm repository fromhttps://artifacts.elastic.co/packages/8.x/yum - How is Logstash being run (e.g. as a service/service manager: systemd, upstart, etc. Via command line, docker/kubernetes)
systemd unit provided by package - How was the Logstash Plugin installed
shipped with logstash
OS version (uname -a if on a Unix-like system):
Rocky linux 8.5 (4.18.0-348.7.1.el8_5.x86_64)
Description of the problem including expected versus actual behavior:
files from bucket (radosgw on-premise) not removed, sincedb file not created/updated
Steps to reproduce:
Configuration:
input {
s3 {
access_key_id => "XXXXXXXXXX"
secret_access_key => "xxxxxxxxxxxxxxxxx"
bucket => "test-bucket"
endpoint => "https://s3.domain.tld"
delete => true
sincedb_path => "/var/lib/logstash/s3-sincedb.db"
additional_settings => {
force_path_style => true
follow_redirects => false
}
}
}
output {
stdout {}
}
Tested older plugin versions, last working version: 3.5.0
Plugin downgraded by executing: bin/logstash-plugin install --version 3.5.0 logstash-input-s3
Please include a minimal but complete recreation of the problem,
including (e.g.) pipeline definition(s), settings, locale, etc. The easier
you make for us to reproduce it, the more likely that somebody will take the
time to look at it.
- Create a bucket and put some files
- Start logstash with minimal configuration
- Files not removed after processing, sincedb file not created, so next interval same files processed again.