在 logstash 启动版本 7.1.1 上接收 SIGTERM

Pro*_*sur 2 logstash kubernetes kubernetes-helm

我正在尝试使用 logstash 通过 logstash 将数据从 kafka 发送到 s3,并且我在 logstash 进程中收到一个 SIGTERM,但没有明显的错误消息。

我正在使用以下 helm 模板 override.yaml 文件。

# overrides stable/logstash helm templates
inputs:
  main: |-
    input {
      kafka{
        bootstrap_servers =>  "kafka.system.svc.cluster.local:9092"
        group_id => "kafka-s3"
        topics => "device,message"
        consumer_threads => 3
        codec => json { charset => "UTF-8" }
        decorate_events => true
      }
    }

# time_file default = 15 minutes
# size_file default = 5242880 bytes
outputs:
  main: |-
    output {
      s3 {
        codec => "json"
        prefix => "kafka/%{+YYYY}/%{+MM}/%{+dd}/%{+HH}-%{+mm}"
        time_file => 5
        size_file => 5242880
        region => "ap-northeast-1"
        bucket => "logging"
        canned_acl => "private"
      }
    }

podAnnotations: {
  iam.amazonaws.com/role: kafka-s3-rules
  }

image:
  tag: 7.1.1
Run Code Online (Sandbox Code Playgroud)

我的 AWS IAM 角色应该通过 iam2kube 附加到容器。角色本身允许对 S3 执行所有操作。

我的 S3 存储桶有如下策略:

{
    "Version": "2012-10-17",
    "Id": "LoggingBucketPolicy",
    "Statement": [
        {
            "Sid": "Stmt1554291237763",
            "Effect": "Allow",
            "Principal": {
                "AWS": "636082426924"
            },
            "Action": "s3:*",
            "Resource": "arn:aws:s3:::logging/*"
        }
    ]
}
Run Code Online (Sandbox Code Playgroud)

容器的日志如下。

2019/06/13 10:31:15 Setting 'path.config' from environment.
2019/06/13 10:31:15 Setting 'queue.max_bytes' from environment.
2019/06/13 10:31:15 Setting 'queue.drain' from environment.
2019/06/13 10:31:15 Setting 'http.port' from environment.
2019/06/13 10:31:15 Setting 'http.host' from environment.
2019/06/13 10:31:15 Setting 'path.data' from environment.
2019/06/13 10:31:15 Setting 'queue.checkpoint.writes' from environment.
2019/06/13 10:31:15 Setting 'queue.type' from environment.
2019/06/13 10:31:15 Setting 'config.reload.automatic' from environment.
OpenJDK 64-Bit Server VM warning: If the number of processors is expected to increase from one, then you should configure the number of parallel GC threads appropriately using -XX:ParallelGCThreads=N
Sending Logstash logs to /usr/share/logstash/logs which is now configured via log4j2.properties
[2019-06-13T10:31:38,061][WARN ][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or command line options are specified
[2019-06-13T10:31:38,078][INFO ][logstash.runner          ] Starting Logstash {"logstash.version"=>"7.1.1"}
[2019-06-13T10:32:02,882][WARN ][logstash.runner          ] SIGTERM received. Shutting down.
Run Code Online (Sandbox Code Playgroud)

无论如何可以获得更详细的日志,或者有谁知道我在处理什么?我非常感谢任何帮助或建议!:no_mouth:

Pro*_*sur 6

问题:

查看 logstash 的 pod 详细信息,我能够确定问题。我的条目类似于以下内容。

I0414 19:41:24.402257    3338 prober.go:104] Liveness probe for "mypod:mycontainer" failed (failure): Get http://10.168.0.3:80/: dial tcp 10.168.0.3:80: connection refused
Run Code Online (Sandbox Code Playgroud)

它为活性探测指定了“连接被拒绝”,并在正常运行 50 到 60 秒后重新启动了 pod。

原因:

查看舵图中的活性探针,Values.yaml它显示了以下设置。

...

livenessProbe:
  httpGet:
    path: /
    port: monitor
initialDelaySeconds: 20
# periodSeconds: 30
# timeoutSeconds: 30
# failureThreshold: 6
# successThreshold: 1

...
Run Code Online (Sandbox Code Playgroud)

InitialDelaySeconds是一套,所以其他应为Kubernetes默认设置如图所示这里下文。

# periodSeconds: 10
# timeoutSeconds: 1
# failureThreshold: 1
# successThreshold: 3
Run Code Online (Sandbox Code Playgroud)

这表示以下给出或需要几秒钟:

+------+-----------------------------+
| Time |            Event            |
+------+-----------------------------+
| 0s   | Container created           |
| 20s  | First liveness probe        |
| 21s  | First liveness probe fails  |
| 31s  | Second liveness probe       |
| 32s  | Second liveness probe fails |
| 42s  | Third liveness probe        |
| 43s  | Third liveness probe fails  |
| 44s  | Send SIGTERM to application |
+------+-----------------------------+
Run Code Online (Sandbox Code Playgroud)

解决方案:

经过一些故障排除以找到正确的InitialDelaySeconds值后,我将以下内容放入我的override.yaml文件中以解决问题。

livenessProbe:
  initialDelaySeconds: 90
Run Code Online (Sandbox Code Playgroud)

似乎取决于所使用的插件,Logstash 可能不会响应 HTTP 请求超过 100 秒。