aboutsummaryrefslogtreecommitdiff
path: root/docker/compose
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2025-03-09 23:49:42 -0700
committerGitHub <noreply@github.com>2025-03-09 23:49:42 -0700
commit02773a61074d1a130419318d05d4d0b027cac4b4 (patch)
tree590918137bc7edfd23653e377249c45145ec7e54 /docker/compose
parent14cb8a24c68ce3fd0d3df716295805a8c5c1b8ef (diff)
downloadseaweedfs-02773a61074d1a130419318d05d4d0b027cac4b4.tar.xz
seaweedfs-02773a61074d1a130419318d05d4d0b027cac4b4.zip
Accumulated changes for message queue (#6600)
* rename * set agent address * refactor * add agent sub * pub messages * grpc new client * can publish records via agent * send init message with session id * fmt * check cancelled request while waiting * use sessionId * handle possible nil stream * subscriber process messages * separate debug port * use atomic int64 * less logs * minor * skip io.EOF * rename * remove unused * use saved offsets * do not reuse session, since always session id is new after restart remove last active ts from SessionEntry * simplify printing * purge unused * just proxy the subscription, skipping the session step * adjust offset types * subscribe offset type and possible value * start after the known tsns * avoid wrongly set startPosition * move * remove * refactor * typo * fix * fix changed path
Diffstat (limited to 'docker/compose')
-rw-r--r--docker/compose/local-mq-test.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/docker/compose/local-mq-test.yml b/docker/compose/local-mq-test.yml
index d4b071039..fef68cac8 100644
--- a/docker/compose/local-mq-test.yml
+++ b/docker/compose/local-mq-test.yml
@@ -1,5 +1,3 @@
-version: '3.9'
-
services:
server:
image: chrislusf/seaweedfs:local
@@ -19,9 +17,16 @@ services:
depends_on:
server:
condition: service_healthy
+ mq_agent:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 16777:16777
+ command: "mq.agent -broker=mq_broker:17777 -port=16777"
+ depends_on:
+ - mq_broker
mq_client:
image: chrislusf/seaweedfs:local
# run a custom command instead of entrypoint
command: "ls -al"
depends_on:
- - mq_broker
+ - mq_agent