2019-11-04 05:20:55.553 [error] <0.19332.7> ** Generic server aten_detector terminating ** Last message in was poll** When Server state == {state,#Ref<0.598122687.2509766657.60349>,1000,0.99,#{},#{}}** Reason for termination == ** {{timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}},[{gen_server,call,2,[{file,"gen_server.erl"},{line,215}]},{aten_detector,handle_info,2,[{file,"src/aten_detector.erl"},{line,97}]},{gen_server,try_dispatch,4,[{file,"gen_server.erl"},{line,637}]},{gen_server,handle_msg,6,[{file,"gen_server.erl"},{line,711}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,249}]}]}2019-11-04 05:21:04.582 [error] <0.19332.7> CRASH REPORT Process aten_detector with 0 neighbours exited with reason: {timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}} in gen_server:call/2 line 2152019-11-04 05:21:10.346 [error] <0.260.0> Supervisor aten_sup had child aten_detector started with aten_detector:start_link() at <0.19332.7> exit with reason {timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}} in context child_terminated2019-11-04 05:21:20.387 [error] <0.27383.10> ** Generic server aten_detector terminating
...2019-11-04 05:56:12.733 [info] <0.307.0> Starting RabbitMQ 3.8.0 on Erlang 21.3.8.7 Copyright (C) 2007-2019 Pivotal Software, Inc. Licensed under the MPL. See https://www.rabbitmq.com/2019-11-04 05:56:12.739 [info] <0.307.0> node : rabbit@ip-10-0-1-98 home dir : /var/lib/rabbitmq config file(s) : (none) cookie hash : 8fZhdkfp5GCirbVTKV5mZw== log(s) : /var/log/rabbitmq/rab...@ip-10-0-1-98.log : /var/log/rabbitmq/rabbit@ip-10-0-1-98_upgrade.log database dir : /var/lib/rabbitmq/mnesia/rabbit@ip-10-0-1-98OS PID: 1160OS: LinuxUptime (seconds): 12061RabbitMQ version: 3.8.0Node name: rabbit@ip-10-0-1-98Erlang configuration: Erlang/OTP 21 [erts-10.3.5.5] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:64] [hipe]Erlang processes: 309 used, 1048576 limitScheduler run queue: 1Cluster heartbeat timeout (net_ticktime): 60~ > # Add a user and permissions.~ > sudo rabbitmqctl add_user test Test~ > sudo rabbitmqctl set_permissions -p / test ".*" ".*" ".*"~ > # Check that the message broker is running.~ > sudo rabbitmqctl status2019-11-04 09:10:31.637 [error] <0.12807.0> closing AMQP connection <0.12807.0> (10.0.1.155:50110 -> 10.0.1.98:5672):missed heartbeats from client, timeout: 60s> which apparently is a Celery client issue, see this post
> <https://groups.google.com/d/msg/celery-users/5qYYu_RbKiI/xO6CFjYjCAAJ>;
> looks like the suggested Celery workaround actually working for me, too.
Yes you are smart enough.
This is may the problem of client's timeout setting.
Hello,Over the past two or so weeks, I’ve seen the following issue happening at random times2019-11-04 05:20:55.553 [error] <0.19332.7> ** Generic server aten_detector terminating** Last message in was poll** When Server state == {state,#Ref<0.598122687.2509766657.60349>,1000,0.99,#{},#{}}** Reason for termination ==** {{timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}},[{gen_server,call,2,[{file,"gen_server.erl"},{line,215}]},{aten_detector,handle_info,2,[{file,"src/aten_detector.erl"},{line,97}]},{gen_server,try_dispatch,4,[{file,"gen_server.erl"},{line,637}]},{gen_server,handle_msg,6,[{file,"gen_server.erl"},{line,711}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,249}]}]}2019-11-04 05:21:04.582 [error] <0.19332.7> CRASH REPORT Process aten_detector with 0 neighbours exited with reason: {timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}} in gen_server:call/2 line 2152019-11-04 05:21:10.346 [error] <0.260.0> Supervisor aten_sup had child aten_detector started with aten_detector:start_link() at <0.19332.7> exit with reason {timeout,{gen_server,call,[aten_sink,get_failure_probabilities]}} in context child_terminated
It then repeats a moment later again2019-11-04 05:21:20.387 [error] <0.27383.10> ** Generic server aten_detector terminating
...About 30min later I notice that something is off because of server notifications; when I reboot the server then RabbitMQ restarts and continues to run fine:
2019-11-04 05:56:12.733 [info] <0.307.0>Starting RabbitMQ 3.8.0 on Erlang 21.3.8.7Copyright (C) 2007-2019 Pivotal Software, Inc.Licensed under the MPL. See https://www.rabbitmq.com/2019-11-04 05:56:12.739 [info] <0.307.0>node : rabbit@ip-10-0-1-98home dir : /var/lib/rabbitmqconfig file(s) : (none)cookie hash : 8fZhdkfp5GCirbVTKV5mZw==
log(s) : /var/log/rabbitmq/rabbit@ip-10-0-1-98.log: /var/log/rabbitmq/rabbit@ip-10-0-1-98_upgrade.logdatabase dir : /var/lib/rabbitmq/mnesia/rabbit@ip-10-0-1-98
What does the timeout mean exactly (or the error message) and where can I find some more context on how to address this issue? Might this be caused by another problem?
Much thanks!Jens