Ambari Thrift服务器自动重启oom

问题描述 投票:0回答:1

我正在使用Ambari 2.6.2.2并安装了Hbase,为此我启动了thrift服务器。

如何配置thrift服务器以在启动时启动?

现在,我只使用ambari的“Service Auto-Start”配置hbase启动。

另外,如何配置thrift服务器以便在oom发生时重新启动?

谢谢

thrift ambari
1个回答
0
投票

似乎没有办法直接从Ambari这样做。

我设法开始启动并使用Supervisor自动重启。这是Thrift和Rest服务器的管理程序配置文件。

[program:hbase-thrift]
command=hbase thrift start -p 9090 --infoport 9095
stderr_logfile = /var/log/supervisor/thrift-stderr.log
stdout_logfile = /var/log/supervisor/thrift-stdout.log
autorestart=true
user=hbase
stdout_logfile_backups=5
stderr_logfile_backups=5


[program:hbase-rest]
command=hbase rest start -p 9080 --infoport 9085
stderr_logfile = /var/log/supervisor/rest-stderr.log
stdout_logfile = /var/log/supervisor/rest-stdout.log
autorestart=true
user=hbase
stdout_logfile_backups=5
stderr_logfile_backups=5
© www.soinside.com 2019 - 2024. All rights reserved.