[Studio] feat: add docker compose test cluster with message trace for local debugging - #655
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
deploy/rocketmq/: build an image from the Apache RocketMQ develop branch source (multi-stage Dockerfile,build.shauto-selects Aliyun mirrors for apt/Maven when running in China) and launch a local test cluster via docker compose: NameServer + 2 Brokers (clusterrocketmq-studio, brokersrocketmq-studio-0/1, 1C2G each) + Proxy (remoting 8080 / gRPC 8081).traceOn=true/traceTopicEnable=true; bundled producer/consumer containers send and receive at 1 TPS through the proxy withenableMsgTrace=trueand message keys, soRMQ_SYS_TRACE_TOPICalways has live trace data for Studio debugging..claude/skills/deploy-rocketmqskill: step-by-step deployment guide plus verifiedmqadminusage forclusterList,queryMsgByUniqueKey,queryMsgTraceById, andqueryMsgByKey.Test plan
./build.shbuildsapache-rocketmq:developfrom the develop branch (Aliyun mirror auto-detection verified in a CN environment)docker compose up -dbrings up all 6 containers;clusterListshows both brokers ACTIVATED underrocketmq-studioSEND_OKat 1 TPS and consumer consumes matching messages viaproxy:8080queryMsgByUniqueKey/queryMsgTraceById/queryMsgByKeyall return expected data, including Pub/Sub trace recordsdocker compose down -v && up -d) verified end to end