哪里私下启动poolboy?erlang数据库连接池

时间:2015-02-03 11:23:31

标签: erlang erlangweb

英语不好,请见谅!!!! 我使用poolboy作为我的数据库连接池,我已经阅读了github上的README.md:https://github.com/devinus/poolboy 但最后我不知道当我想要它开始时我已经启动了poolboy,然后我收到了一个错误:already_started

我的项目文件:http://pastebin.com/zus6dGdz  我使用牛仔作为我的http服务器,但你可以忽略它。

我像这样启动程序: 我用钢筋编译 $ rebar clean&使 2.然后我使用erl来运行我的程序  $ erl -pa ebin / -pa deps / * / ebin -s start server_start 但我得到的错误如下:

=CRASH REPORT==== 3-Feb-2015::17:47:27 ===
  crasher:
    initial call: poolboy:init/1
    pid: <0.171.0>
    registered_name: []
    exception exit: {{badmatch,{error,{already_started,<0.173.0>}}},
                     [{poolboy,new_worker,1,
                               [{file,"src/poolboy.erl"},{line,260}]},
                      {poolboy,prepopulate,3,
                               [{file,"src/poolboy.erl"},{line,281}]},
                      {poolboy,init,3,[{file,"src/poolboy.erl"},{line,143}]},
                      {gen_server,init_it,6,
                                  [{file,"gen_server.erl"},{line,306}]},
                      {proc_lib,init_p_do_apply,3,
                                [{file,"proc_lib.erl"},{line,237}]}]}
      in function  gen_server:init_it/6 (gen_server.erl, line 330)
    ancestors: [hello_erlang_sup,<0.66.0>]
    messages: []
    links: [<0.172.0>,<0.173.0>,<0.170.0>]
    dictionary: []
    trap_exit: true
    status: running
    heap_size: 610
    stack_size: 27
    reductions: 205
  neighbours:
    neighbour: [{pid,<0.173.0>},
                  {registered_name,db_mongo_handler},
                  {initial_call,{db_mongo_handler,init,['Argument__1']}},
                  {current_function,{gen_server,loop,6}},
                  {ancestors,[<0.172.0>,mg_pool1,hello_erlang_sup,<0.66.0>]},
                  {messages,[]},
                  {links,[<0.172.0>,<0.174.0>,<0.171.0>]},
                  {dictionary,[]},
                  {trap_exit,false},
                  {status,waiting},
                  {heap_size,233},
                  {stack_size,9},
                  {reductions,86}]

请帮助解决问题!是的!

1 个答案:

答案 0 :(得分:3)

您正在启动一个拥有相同注册名称的10名工作人员。使用名称注册进程并且另一个进程尝试使用相同名称注册时,您将收到错误already_started

在您的示例代码中,poolboy的worker模块是db_mongo_handler。 Poolboy尝试通过调用db_mongo_handler:start_link/1来启动10名工作人员,该工作被实现为

start_link(Args) ->
    gen_server:start_link({local, ?SERVER}, ?MODULE, Args, []).

第一个工作人员可以启动但第二个工作人员启动它时会崩溃already_started

通常,许多类似工人的工作人员不应该有注册名称。相反,只有池有名称,当您需要工作人员时,您要求poolboy使用pid()交付其中一名工作人员poolboy:checkout(mg_pool1)

要修复代码,请将gen_server:start_link({local, ?SERVER}, ?MODULE, Args, [])更改为gen_server:start_link(?MODULE, Args, [])。然后它将不会注册名称。