入門ガイドで SpringXD に慣れようとしていますが、単純なカウンターが機能していないようです。
シンプルなhttp
ソース設定があり、通過するメッセージをカウントしたいだけですが、何をしても無限ループに陥り、スタックオーバーフローが発生します
再現する手順:
# Start the installed redis-server in it's own tab
./redis/bin/redis-server
# start the single node in it's own tab
./xd/bin/xd-singlenode
# open a new tab for executing the following
curl -d "http --port=9020 | file" http://localhost:8080/streams/httptest
curl -d "Hello basic" http://localhost:9020
# try a counterr
curl -d "tap@httptest | counter --name=postCount" http://localhost:8080/streams/httptest
curl -d "Hello count 1" http://localhost:9020 # begin infinite loop...
curl -d "Hello count 2" http://localhost:9020 # never make it here
明らかな何かが欠けていますか?ありがとう!