码迷,mamicode.com
首页 > 系统相关 > 详细

Mac OS X 上的安装nsq并使用

时间:2015-05-27 11:36:52      阅读:586      评论:0      收藏:0      [点我收藏+]

标签:

安装:

brew install nsq

使用:

The following steps will run a small NSQ cluster on your local machine and walk through publishing, consuming, and archiving messages to disk.

follow the instructions in the INSTALLING doc.

in one shell, start nsqlookupd:

$ nsqlookupd
in another shell, start nsqd:

$ nsqd --lookupd-tcp-address=127.0.0.1:4160
in another shell, start nsqadmin:

$ nsqadmin --lookupd-http-address=127.0.0.1:4161
publish an initial message (creates the topic in the cluster, too):

$ curl -d hello world 1 http://127.0.0.1:4151/put?topic=test
finally, in another shell, start nsq_to_file:

$ nsq_to_file --topic=test --output-dir=/tmp --lookupd-http-address=127.0.0.1:4161
publish more messages to nsqd:

$ curl -d hello world 2 http://127.0.0.1:4151/put?topic=test
$ curl -d hello world 3 http://127.0.0.1:4151/put?topic=test
to verify things worked as expected, in a web browser open http://127.0.0.1:4171/ to view the nsqadmin UI and see statistics. Also, check the contents of the log files (test.*.log) written to /tmp.

The important lesson here is that nsq_to_file (the client) is not explicitly told where the test topic is produced, it retrieves this information from nsqlookupd and, despite the timing of the connection, no messages are lost.

参考地址:
http://nsq.io/overview/quick_start.html

控制台:

http://127.0.0.1:4171/counter

技术分享

 

Mac OS X 上的安装nsq并使用

标签:

原文地址:http://www.cnblogs.com/super-d2/p/4532623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!