## Apache RocketMQ
[![Build Status](https://travis-ci.org/apache/rocketmq.svg?branch=master)](https://travis-ci.org/apache/rocketmq) [![Coverage Status](https://coveralls.io/repos/github/apache/rocketmq/badge.svg?branch=master)](https://coveralls.io/github/apache/rocketmq?branch=master)
[![CodeCov](https://codecov.io/gh/apache/rocketmq/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/rocketmq)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.rocketmq/rocketmq-all/badge.svg)](http://search.maven.org/#search%7Cga%7C1%7Corg.apache.rocketmq)
[![GitHub release](https://img.shields.io/badge/release-download-orange.svg)](https://rocketmq.apache.org/dowloading/releases)
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/apache/rocketmq.svg)](http://isitmaintained.com/project/apache/rocketmq "Average time to resolve an issue")
[![Percentage of issues still open](http://isitmaintained.com/badge/open/apache/rocketmq.svg)](http://isitmaintained.com/project/apache/rocketmq "Percentage of issues still open")
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheRocketMQ?style=social)](https://twitter.com/intent/follow?screen_name=ApacheRocketMQ)
**[Apache RocketMQ](https://rocketmq.apache.org) is a distributed messaging and streaming platform with low latency, high performance and reliability, trillion-level capacity and flexible scalability.**
It offers a variety of features:
* Messaging patterns including publish/subscribe, request/reply and streaming
* Financial grade transactional message
* Built-in fault tolerance and high availability configuration options base on [DLedger](https://github.com/openmessaging/openmessaging-storage-dledger)
* Built-in message tracing capability, also support opentracing
* Versatile big-data and streaming ecosystem integration
* Message retroactivity by time or offset
* Reliable FIFO and strict ordered messaging in the same queue
* Efficient pull and push consumption model
* Million-level message accumulation capacity in a single queue
* Multiple messaging protocols like gRPC, MQTT, JMS and OpenMessaging
* Flexible distributed scale-out deployment architecture
* Lightning-fast batch message exchange system
* Various message filter mechanics such as SQL and Tag
* Docker images for isolated testing and cloud isolated clusters
* Feature-rich administrative dashboard for configuration, metrics and monitoring
* Authentication and authorization
* Free open source connectors, for both sources and sinks
* Lightweight real-time computing
----------
## Quick Start
This paragraph guides you through steps of installing RocketMQ in different ways.
For local development and testing, only one instance will be created for each component.
### Run RocketMQ locally
RocketMQ runs on all major operating systems and requires only a Java JDK version 8 or higher to be installed.
To check, run `java -version`:
```shell
$ java -version
java version "1.8.0_121"
```
For Windows users, click [here](https://archive.apache.org/dist/rocketmq/4.9.3/rocketmq-all-4.9.3-bin-release.zip) to download the 4.9.3 RocketMQ binary release,
unpack it to your local disk, such as `D:\rocketmq`.
For macOS and Linux users, execute following commands:
```shell
# Download release from the Apache mirror
$ wget https://archive.apache.org/dist/rocketmq/4.9.3/rocketmq-all-4.9.3-bin-release.zip
# Unpack the release
$ unzip rocketmq-all-4.9.3-bin-release.zip
```
Prepare a terminal and change to the extracted `bin` directory:
```shell
$ cd rocketmq-4.9.3/bin
```
**1) Start NameServer**
NameServer will be listening at `0.0.0.0:9876`, make sure that the port is not used by others on the local machine, and then do as follows.
For macOS and Linux users:
```shell
### start Name Server
$ nohup sh mqnamesrv &
### check whether Name Server is successfully started
$ tail -f ~/logs/rocketmqlogs/namesrv.log
The Name Server boot success...
```
For Windows users, you need set environment variables first:
- From the desktop, right click the Computer icon.
- Choose Properties from the context menu.
- Click the Advanced system settings link.
- Click Environment Variables.
- Add Environment `ROCKETMQ_HOME="D:\rocketmq"`.
Then change directory to rocketmq, type and run:
```shell
$ mqnamesrv.cmd
The Name Server boot success...
```
**2) Start Broker**
For macOS and Linux users:
```shell
### start Broker
$ nohup sh bin/mqbroker -n localhost:9876 &
### check whether Broker is successfully started, eg: Broker's IP is 192.168.1.2, Broker's name is broker-a
$ tail -f ~/logs/rocketmqlogs/broker.log
The broker[broker-a, 192.169.1.2:10911] boot success...
```
For Windows users:
```shell
$ mqbroker.cmd -n localhost:9876
The broker[broker-a, 192.169.1.2:10911] boot success...
```
### Run RocketMQ in Docker
You can run RocketMQ on your own machine within Docker containers,
`host` network will be used to expose listening port in the container.
**1) Start NameServer**
```shell
$ docker run -it --net=host apache/rocketmq ./mqnamesrv
```
**2) Start Broker**
```shell
$ docker run -it --net=host --mount source=/tmp/store,target=/home/rocketmq/store apache/rocketmq ./mqbroker -n localhost:9876
```
### Run RocketMQ in Kubernetes
You can also run a RocketMQ cluster within a Kubernetes cluster using [RocketMQ Operator](https://github.com/apache/rocketmq-operator).
Before your operations, make sure that `kubectl` and related kubeconfig file installed on your machine.
**1) Install CRDs**
```shell
### install CRDs
$ git clone https://github.com/apache/rocketmq-operator
$ cd rocketmq-operator && make deploy
### check whether CRDs is successfully installed
$ kubectl get crd | grep rocketmq.apache.org
brokers.rocketmq.apache.org 2022-05-12T09:23:18Z
consoles.rocketmq.apache.org 2022-05-12T09:23:19Z
nameservices.rocketmq.apache.org 2022-05-12T09:23:18Z
topictransfers.rocketmq.apache.org 2022-05-12T09:23:19Z
### check whether operator is running
$ kubectl get pods | grep rocketmq-operator
rocketmq-operator-6f65c77c49-8hwmj 1/1 Running 0 93s
```
**2) Create Cluster Instance**
```shell
### create RocketMQ cluster resource
$ cd example && kubectl create -f rocketmq_v1alpha1_rocketmq_cluster.yaml
### check whether cluster resources is running
$ kubectl get sts
NAME READY AGE
broker-0-master 1/1 107m
broker-0-replica-1 1/1 107m
name-service 1/1 107m
```
---
## Apache RocketMQ Community
* [RocketMQ Streams](https://github.com/apache/rocketmq-streams): A lightweight stream computing engine based on Apache RocketMQ.
* [RocketMQ Flink](https://github.com/apache/rocketmq-flink): The Apache RocketMQ connector of Apache Flink that supports source and sink connector in data stream and Table.
* RocketMQ Muli-Language Clients
- [RocketMQ Client CPP](https://github.com/apache/rocketmq-client-cpp)
- [RocketMQ Client Go](https://github.com/apache/rocketmq-client-go)
- [RocketMQ Client Python](https://github.com/apache/rocketmq-client-python)
- [RocketMQ Client Nodejs](https://github.com/apache/rocketmq-client-nodejs)
* [RocketMQ Spring](https://github.com/apache/rocketmq-spring): A project which helps developers quickly integrate Apache RocketMQ with Spring Boot.
* [RocketMQ Exporter](https://github.com/apache/rocketmq-exporter): An Apache RocketMQ exporter for Prometheus.
* [RocketMQ Operator](https://github.com/apache/rocketmq-operator): Providing a way to run an Apache RocketMQ cluster on Kubernetes.
* [RocketMQ Docker](https://github.com/apache/rocketmq-docker): The Git repo of the Docker Image for Apache RocketMQ.
* [RocketMQ Dashboard](https://github.com/apache/rocketmq-dashboard): Operation and maintenance console of Apache RocketMQ.
* [RocketMQ Connect](https://github.com/apache/rocketmq-
没有合适的资源?快使用搜索试试~ 我知道了~
RocketMQ,rocketmq
共116个文件
jar:58个
sh:18个
properties:11个
需积分: 2 0 下载量 158 浏览量
2023-10-31
09:42:05
上传
评论
收藏 31.38MB ZIP 举报
温馨提示
修改配置文件 conf目录下的 broker.conf 文件 后台启动;sh mqnamesrv & 后台启动 nohup ./bin/mqbroker -c ./conf/broker.conf -n localhost:9876 & 使用jps命令查看进程
资源推荐
资源详情
资源评论
收起资源包目录
RocketMQ,rocketmq (116个子文件)
runbroker.cmd 2KB
runserver.cmd 2KB
tools.cmd 2KB
mqshutdown.cmd 1KB
play.cmd 1KB
mqnamesrv.cmd 1KB
mqbroker.cmd 1KB
mqadmin.cmd 1KB
broker-n0.conf 1KB
broker-n1.conf 1KB
broker-n2.conf 1KB
broker.conf 949B
bcprov-jdk15on-1.69.jar 5.48MB
zstd-jni-1.5.2-2.jar 5.15MB
netty-all-4.1.65.Final.jar 4.21MB
tomcat-embed-core-8.5.46.jar 3.06MB
guava-31.0.1-jre.jar 2.84MB
kotlin-stdlib-1.4.10.jar 1.42MB
jna-4.2.2.jar 1.08MB
bcpkix-jdk15on-1.69.jar 888KB
okhttp-4.9.0.jar 773KB
javassist-3.20.0-GA.jar 733KB
jaeger-thrift-1.6.0.jar 688KB
lz4-java-1.8.0.jar 667KB
fastjson-1.2.69_noneautotype.jar 655KB
commons-collections-3.2.2.jar 575KB
logback-core-1.2.10.jar 444KB
commons-lang3-3.4.jar 424KB
rocketmq-client-4.9.6.jar 407KB
bcutil-jdk15on-1.69.jar 351KB
snakeyaml-1.30.jar 324KB
rocketmq-common-4.9.6.jar 308KB
libthrift-0.14.1.jar 298KB
rocketmq-broker-4.9.6.jar 266KB
commons-codec-1.9.jar 258KB
rocketmq-store-4.9.6.jar 252KB
rocketmq-tools-4.9.6.jar 246KB
commons-beanutils-1.9.4.jar 241KB
okio-2.8.0.jar 237KB
gson-2.8.6.jar 235KB
logback-classic-1.2.10.jar 228KB
checker-qual-3.12.0.jar 204KB
commons-digester-2.1.jar 192KB
kotlin-stdlib-common-1.4.0.jar 187KB
commons-validator-1.7.jar 185KB
dledger-0.3.1.2.jar 175KB
rocketmq-example-4.9.6.jar 144KB
rocketmq-remoting-4.9.6.jar 127KB
rocketmq-filter-4.9.6.jar 74KB
rocketmq-logging-4.9.6.jar 62KB
commons-logging-1.2.jar 60KB
rocketmq-openmessaging-4.9.6.jar 50KB
rocketmq-acl-4.9.6.jar 48KB
rocketmq-namesrv-4.9.6.jar 43KB
commons-cli-1.2.jar 40KB
slf4j-api-1.7.7.jar 29KB
javax.annotation-api-1.3.2.jar 26KB
openmessaging-api-0.3.1-alpha.jar 23KB
jsr305-3.0.2.jar 19KB
annotations-13.0.jar 17KB
rocketmq-srvutil-4.9.6.jar 16KB
error_prone_annotations-2.7.1.jar 14KB
tomcat-annotations-api-8.5.46.jar 12KB
opentracing-noop-0.33.0.jar 10KB
j2objc-annotations-1.3.jar 9KB
opentracing-tracerresolver-0.1.8.jar 8KB
opentracing-util-0.33.0.jar 7KB
failureaccess-1.0.1.jar 5KB
jaeger-tracerresolver-1.6.0.jar 3KB
listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar 2KB
LICENSE 17KB
README.md 11KB
README.md 772B
mqadmin 1KB
mqbroker 1KB
mqnamesrv 1KB
mqshutdown 2KB
NOTICE 1KB
mqbroker.numanode0 1KB
mqbroker.numanode1 1KB
mqbroker.numanode2 1KB
mqbroker.numanode3 1KB
broker-trace.properties 937B
broker-a.properties 929B
broker-b.properties 929B
broker-a.properties 929B
broker-b.properties 929B
broker-a.properties 928B
broker-b.properties 928B
broker-a-s.properties 922B
broker-b-s.properties 922B
broker-a-s.properties 922B
broker-b-s.properties 922B
runbroker.sh 4KB
runserver.sh 4KB
fast-try.sh 3KB
runclass.sh 3KB
export.sh 2KB
shutdown.sh 2KB
os.sh 2KB
共 116 条
- 1
- 2
资源评论
疯人院长sir
- 粉丝: 52
- 资源: 12
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功