在測試NSQ的Quick Start發現這樣一個問題,就是同時只能有一個訂閱實例html
$ nsq_to_file --topic=test --output-dir=/tmp --lookupd-http-address=127.0.0.1:4161
當存在兩個實例時則消息會被髮送給其中的一個實例,而另外一個則獲取不到消息sql
在閱讀到NSQ中NSQD的啓動參數時,發現其支持在一個topic下創建多個channel,經過向topic發送消息,會向全部的channel發佈。curl
//建立topic $ curl http://10.191.197.209:4151/create_topic?topic=public //建立三個channel $ curl http://10.191.197.209:4151/create_channel?topic=public\&channel=t1 $ curl http://10.191.197.209:4151/create_channel?topic=public\&channel=t2 $ curl http://10.191.197.209:4151/create_channel?topic=public\&channel=t3 //創建nsqdata t1 t2 t3四個文件夾分別存放nsqd數據及三個測試channel數據 mkdir nsqdata t1 t2 t3 //啓動nsqd,nsqd能夠獨立啓動,無需啓動nsqlookupd nsqd -data-path=/home/sunsl/nsqdata //啓動三個channel的接收端,這裏使用nsq_to_file監聽nsqd的tcp端口 nsq_to_file --topic=public --channel=t1 --output-dir=/home/sunsl/t1 --nsqd-tcp-address=127.0.0.1:4150 nsq_to_file --topic=public --channel=t2 --output-dir=/home/sunsl/t2 --nsqd-tcp-address=127.0.0.1:4150 nsq_to_file --topic=public --channel=t3 --output-dir=/home/sunsl/t3 --nsqd-tcp-address=127.0.0.1:4150 //向public發送測試數據 curl -d '向三個channel發送數據' 'http://10.191.197.209:4151/put?topic=public' //cat t1,t2,t3文件夾下的log文件,數據顯示正常獲取