web-dev-qa-db-ja.com

Riak "error": "insufficient_vnodes_available"

4ノードのRiakインストールがあります。これらは、Ubuntu 12.04 LTSPreciseがインストールされたサーバーで実行されています。 2012年8月1日に1.1.4をインストールし、利用可能になったときに1.2.0をアップグレードしました。

サーバー名は次のとおりです。

f1-10.10.0.12-これは最初にインストールされたサーバーです。このサーバーに他のサーバーを参加させました。これはRiakコントロールにも役立ちます。 s2-10.10.0.22-s3-10.10.0.23-s4-10.10.0.24-このサーバーはRiakコントロールも提供します。

今朝、アプリケーションログに「使用可能なノードが不十分です」というエラーが表示され、すべてのノードが再起動されました。 「f1」を除いて3つが利用可能になりました

更新:このメッセージをライブで準備している間、3つのノードが使用できなくなり、Riakを再起動する必要があります。

wolfiem@f01:~$ Sudo /etc/init.d/riak start
Riak failed to start within 15 seconds,
see the output of 'riak console' for more information.
If you want to wait longer, set the environment variable
WAIT_FOR_ERLANG to the number of seconds to wait.

WAIT_FOR_ERLANGの値を60秒に設定しようとしましたが、できません。

vm.argsにこの行を追加しても機能しませんでした:

-env WAIT_FOR_ERLANG 60

ターミナルからも設定してみましたが、うまくいきませんでした。

wolfiem@f01:~$ export WAIT_FOR_ERLANG=60

それでも「Riakは15秒以内に起動できませんでした」と表示されます

これはconsole.logの出力です。

2012-09-11 10:58:02.532 [info] <0.7.0> Application lager started on node '[email protected]'
2012-09-11 10:58:02.560 [warning] <0.148.0>@riak_core_ring_manager:reload_ring:231 No ring file available.
2012-09-11 10:58:02.585 [error] <0.164.0> CRASH REPORT Process <0.164.0> with 0 neighbours exited with reason: eaddrnotavail in gen_server:init_it/6 line 320

これはerror.log出力です

2012-09-11 10:58:02.585 [error] <0.164.0> CRASH REPORT Process <0.164.0> with 0 neighbours exited with reason: eaddrnotavail in gen_server:init_it/6 line 320

これはcrash.logの出力です。

2012-09-11 10:58:02 =CRASH REPORT====
  crasher:
    initial call: mochiweb_socket_server:init/1
    pid: <0.164.0>
    registered_name: []
    exception exit: {eaddrnotavail,[{gen_server,init_it,6,[{file,"gen_server.erl"},{line,320}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,227}]}]}
    ancestors: [riak_core_sup,<0.135.0>]
    messages: []
    links: [<0.136.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 377
    stack_size: 24
    reductions: 403
  neighbours:

Riakコンソールの出力は次のとおりです。

wolfiem@f01:~$ riak console
Attempting to restart script through Sudo -H -u riak
Exec: /usr/lib/riak/erts-5.9.1/bin/erlexec -boot /usr/lib/riak/releases/1.2.0/riak             -embedded -config /etc/riak/app.config             -pa /usr/lib/riak/basho-patches             -args_file /etc/riak/vm.args -- console
Root: /usr/lib/riak
Erlang R15B01 (erts-5.9.1) [source] [64-bit] [smp:8:8] [async-threads:64] [kernel-poll:true]


=INFO REPORT==== 11-Sep-2012::10:44:18 ===
    alarm_handler: {set,{system_memory_high_watermark,[]}}
** /usr/lib/riak/lib/observer-1.1/ebin/etop_txt.beam hides /usr/lib/riak/lib/basho-patches/etop_txt.beam
** Found 1 name clashes in code paths 
10:44:19.099 [info] Application lager started on node '[email protected]'
10:44:19.130 [warning] No ring file available.
10:44:19.158 [error] CRASH REPORT Process <0.164.0> with 0 neighbours exited with reason: eaddrnotavail in gen_server:init_it/6 line 320
/usr/lib/riak/lib/os_mon-2.2.9/priv/bin/memsup: Erlang has closed. 

=INFO REPORT==== 11-Sep-2012::10:44:19 ===
    alarm_handler: {clear,system_memory_high_watermark}
Erlang has closed
                 {"Kernel pid terminated",application_controller,"{application_start_failure,riak_core,{shutdown,{riak_core_app,start,[normal,[]]}}}"}

Crash dump was written to: /var/log/riak/erl_crash.dump
Kernel pid terminated (application_controller) ({application_start_failure,riak_core,{shutdown,{riak_core_app,start,[normal,[]]}}})
5
Wolfiem

ここで: http://smartcloud.blogspot.hu/2013/01/setting-riak-cluster-in-Amazon-ec2-just.htmlwith 0 neighbours exited with reasonエラーが原因であると表示されますあるポートまたは他のリソース上にある(少なくとも部分的に)実行中のriakインスタンスに。

私にとって、それは実行されたepmdインスタンスでした、私はそれをps ax |grep riakで見つけました。それを殺した後、問題はなくなりました。

1
P.Péter