1

我正在尝试在 mesos 上运行 elasticsearch-mesos。我的机器正在运行 ubuntu 14.04。我已经按照这些说明运行了安装了 mesosphere 包的 mesos 集群。当我运行测试框架时,它会在 mesosUI 的框架下获得列表,但对于 elasticsearch-mesos,它不会在 mesos webUI 下列出。我想在 mesos 之上运行 elasticsearch-mesos。我按照此处给出的说明进行操作。当我跑步./elasticsearch-mesos时,我在终端收到一条消息

I0108 17:24:01.898540 23861 group.cpp:385] Trying to create path '/mesos' in ZooKeeper

我尝试在 mesos 主机和从机上运行 ./elasticsearch-mesos。

下面给出了终端输出的最后几行

2015-01-08 17:24:01,881:23844(0x7f175bfff700):ZOO_INFO@zookeeper_init@786: Initiating       
client connection, host=localhost:2181 sessionTimeout=10000 watcher=0x7f1762a3e6a0 
sessionId=0 sessionPasswd=<null> context=0x7f1710002530 flags=0
I0108 17:24:01.881392 23858 sched.cpp:137] Version: 0.21.1
2015-01-08 17:24:01,881:23844(0x7f172b7fe700):ZOO_INFO@check_events@1703: initiated  
connection to server [127.0.0.1:2181]
2015-01-08 17:24:01,897:23844(0x7f172b7fe700):ZOO_INFO@check_events@1750: session 
establishment complete on server [127.0.0.1:2181], sessionId=0x14ac7c469270006,    
negotiated timeout=10000
I0108 17:24:01.898455 23861 group.cpp:313] Group process (group(1)@127.0.1.1:38668) 
connected to ZooKeeper
I0108 17:24:01.898509 23861 group.cpp:790] Syncing group operations: queue size (joins, 
cancels, datas) = (0, 0, 0)
I0108 17:24:01.898540 23861 group.cpp:385] Trying to create path '/mesos' in ZooKeeper
4

1 回答 1

1

根据https://github.com/mesosphere/elasticsearch-mesos上的 README ,您可能需要修改mesos.master.url以指向 Mesos 主服务器正在使用的相同 ZK url(可能不是 localhost)。如果您使用的是单主 Mesos 集群,则可以跳过 ZK url 并将此参数直接指向 Mesos 主节点。

另请注意,elasticsearch 框架有点过时,请谨慎使用

于 2015-01-12T19:06:49.440 回答