[PR] Fix documentation for brokerAddrTable property in MQClientInstance.java [rocketmq]

2025-03-19 Thread via GitHub


DivyanshIITB opened a new pull request, #9263:
URL: https://github.com/apache/rocketmq/pull/9263

   Clarified that the key of the brokerAddrTable map is the brokerName, not 
brokerClusterName, to prevent ambiguity.
   Cloes #8701


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
dd25c4b4a847685e2f5ccd70d57fba207180220d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945586708

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490074

With regards,
GitHub Actions via GitBox



Re: [I] [Bug] docker部署5.2.0版本,开启proxy后,发送消息报错 [rocketmq]

2025-03-19 Thread via GitHub


gxfan commented on issue #8470:
URL: https://github.com/apache/rocketmq/issues/8470#issuecomment-2735604430

   我这里修改了grpc的默认端口,比如把8081改为了18081,就会出现这错误。
   因为我是使用docker-composer启动的,后来尝试把容器内的端口一起改为18081,问题就解决了。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490074

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "PR-CI" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "PR-CI" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490098

With regards,
GitHub Actions via GitBox



Re: [I] 使用 rocketmq proxy时, 客户端依旧与 docket 容器中的 broker 直接建立连接 [rocketmq-spring]

2025-03-19 Thread via GitHub


feiyusheng commented on issue #683:
URL: 
https://github.com/apache/rocketmq-spring/issues/683#issuecomment-2736058910

   这个问题还没解决吗查了两天,被搞死了


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [ISSUE #8701] Fix documentation for brokerAddrTable property in MQClientInstance.java [rocketmq]

2025-03-19 Thread via GitHub


RongtongJin commented on PR #9263:
URL: https://github.com/apache/rocketmq/pull/9263#issuecomment-2738812720

   LGTM~


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Refactored duplicate code in TopicPublishInfo [rocketmq]

2025-03-19 Thread via GitHub


RongtongJin commented on code in PR #9257:
URL: https://github.com/apache/rocketmq/pull/9257#discussion_r2004635576


##
client/src/main/java/org/apache/rocketmq/client/impl/producer/TopicPublishInfo.java:
##
@@ -120,12 +120,27 @@ public MessageQueue selectOneMessageQueue(final String 
lastBrokerName) {
 }
 }
 
-public MessageQueue selectOneMessageQueue() {
+private MessageQueue getMessageQueue() {
 int index = this.sendWhichQueue.incrementAndGet();
 int pos = index % this.messageQueueList.size();
-
 return this.messageQueueList.get(pos);
 }
+
+public MessageQueue selectOneMessageQueue() {
+return getMessageQueue();
+}
+
+// Adding additional logic, filter by broker name
+public MessageQueue selectOneMessageQueueWithCondition(String 
lastBrokerName) {

Review Comment:
   When is this code called?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] 使用 rocketmq proxy时, 客户端依旧与 docket 容器中的 broker 直接建立连接 [rocketmq-spring]

2025-03-19 Thread via GitHub


francisoliverlee commented on issue #683:
URL: 
https://github.com/apache/rocketmq-spring/issues/683#issuecomment-2738890797

   问题在于本地无法访问容器ip,使用 `docker run --network=host ` 运行试试


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
4af1c8cede561686d9c37c2637081aa57dcf6447 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13960610364

With regards,
GitHub Actions via GitBox



(rocketmq) branch develop updated: [ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility (#9258)

2025-03-19 Thread lizhimin
This is an automated email from the ASF dual-hosted git repository.

lizhimin pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
 new dee51095e2 [ISSUE #8243] Update Configuration Docs for RocketMQ 5.x 
Compatibility (#9258)
dee51095e2 is described below

commit dee51095e2cf3d7d597e0a5de7af4dcd36331d34
Author: DivyanshIITB 
AuthorDate: Thu Mar 20 09:11:10 2025 +0530

[ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility 
(#9258)
---
 docs/en/Configuration_Client.md | 148 ++--
 docs/en/Configuration_System.md |  52 ++
 2 files changed, 87 insertions(+), 113 deletions(-)

diff --git a/docs/en/Configuration_Client.md b/docs/en/Configuration_Client.md
index 4679957af5..af83ffcb40 100644
--- a/docs/en/Configuration_Client.md
+++ b/docs/en/Configuration_Client.md
@@ -1,119 +1,107 @@
 ## Client Configuration
 
-  Relative to RocketMQ's Broker cluster, producers and consumers are client. 
In this section, it mainly describes the common behavior configuration of 
producers and consumers.
-​ 
-### 1 Client Addressing mode
+Relative to RocketMQ's Broker cluster, producers and consumers are clients. 
This section describes the common behavior configuration of producers and 
consumers, including updates for **RocketMQ 5.x**.
 
-```RocketMQ``` can let client find the ```Name Server```, and then find the 
```Broker```by the ```Name Server```. Followings show a variety of 
configurations, and priority level from highly to lower, the highly priority 
configurations can override the lower priority configurations.
+### 1 Client Addressing Mode
 
--  Specified ```Name Server``` address in the code, and multiple ```Name 
Server``` addresses are separated by semicolons
+`RocketMQ` allows clients to locate the `Name Server`, which then helps them 
find the `Broker`. Below are various configurations, prioritized from highest 
to lowest. Higher priority configurations override lower ones.
+
+- Specified `Name Server` address in the code (multiple addresses separated by 
semicolons):
 
 ```java
 producer.setNamesrvAddr("192.168.0.1:9876;192.168.0.2:9876");  
-
 consumer.setNamesrvAddr("192.168.0.1:9876;192.168.0.2:9876");
 ```
-- Specified ```Name Server``` address in the Java setup parameters
+
+- Specified `Name Server` address in Java setup parameters:
 
 ```text
 -Drocketmq.namesrv.addr=192.168.0.1:9876;192.168.0.2:9876  
 ```
-- Specified ```Name Server``` address in the environment variables
+
+- Specified `Name Server` address in environment variables:
 
 ```text
-export   NAMESRV_ADDR=192.168.0.1:9876;192.168.0.2:9876   
+export NAMESRV_ADDR=192.168.0.1:9876;192.168.0.2:9876   
 ```
-- HTTP static server addressing(default)
 
-After client started, it will access the http static server address, as: 
, this URL return the following 
contents:
+- HTTP static server addressing (default):
 
+Clients retrieve `Name Server` addresses from a static HTTP server:
 ```text
-192.168.0.1:9876;192.168.0.2:9876   
+http://jmenv.tbsite.net:8080/rocketmq/nsaddr
 ```
-By default, the client accesses the HTTP server every 2 minutes, and update 
the local Name Server address.The URL is hardcoded in the code, you can change 
the target server by updating ```/etc/hosts``` file, such as add following 
configuration at the ```/etc/hosts```:
-```text
-10.232.22.67jmenv.tbsite.net   
-```
-HTTP static server addressing is recommended, because it is simple client 
deployment, and the Name Server cluster can be upgraded hot.
+
+- **New in RocketMQ 5.x:**
+  - Improved service discovery mechanism, allowing dynamic Name Server 
registration.
+  - Introduces `VIP_CHANNEL_ENABLED` for better failover:
+
+  ```java
+  producer.setVipChannelEnabled(false);
+  consumer.setVipChannelEnabled(false);
+  ```
 
 ### 2 Client Configuration
 
-```DefaultMQProducer```,```TransactionMQProducer```,```DefaultMQPushConsumer```,```DefaultMQPullConsumer```
 all extends the ```ClientConfig``` Class, ```ClientConfig``` as the client 
common configuration class. Client configuration style like getXXX,setXXX, each 
of the parameters can config by spring and also config their in the code. Such 
as the ```namesrvAddr``` parameter: 
```producer.setNamesrvAddr("192.168.0.1:9876")```, same with the other 
parameters.
+`DefaultMQProducer`, `TransactionMQProducer`, `DefaultMQPushConsumer`, and 
`DefaultMQPullConsumer` all extend the `ClientConfig` class, which provides 
common client configurations.
 
  2.1 Client Common Configuration
 
-| Parameter Name| Default Value  | Description 
|
-| - | --- | 
 |
-| namesrvAddr   | | Name Server address list

Re: [PR] [ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility [rocketmq]

2025-03-19 Thread via GitHub


lizhimins merged PR #9258:
URL: https://github.com/apache/rocketmq/pull/9258


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by lizhimins).

Head commit for run:
dee51095e2cf3d7d597e0a5de7af4dcd36331d34 / DivyanshIITB 

[ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility (#9258)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961501467

With regards,
GitHub Actions via GitBox



Re: [PR] [ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint [rocketmq]

2025-03-19 Thread via GitHub


lizhimins merged PR #9260:
URL: https://github.com/apache/rocketmq/pull/9260


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by github-actions[bot]).

Head commit for run:
dee51095e2cf3d7d597e0a5de7af4dcd36331d34 / DivyanshIITB 

[ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility (#9258)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961501467

With regards,
GitHub Actions via GitBox



Re: [I] [Enhancement] Remove the duplicate flushing of storeCheckpoint [rocketmq]

2025-03-19 Thread via GitHub


lizhimins closed issue #9259: [Enhancement] Remove the duplicate flushing of 
storeCheckpoint
URL: https://github.com/apache/rocketmq/issues/9259


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(rocketmq) branch develop updated: [ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

2025-03-19 Thread lizhimin
This is an automated email from the ASF dual-hosted git repository.

lizhimin pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
 new 34c32d8c80 [ISSUE #9259] Remove duplicate flushing operation of 
StoreCheckpoint(#9260)
34c32d8c80 is described below

commit 34c32d8c8081f09f7c87cbd79534162eb0a08a0f
Author: mxsm 
AuthorDate: Thu Mar 20 11:44:03 2025 +0800

[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)
---
 store/src/main/java/org/apache/rocketmq/store/DefaultMessageStore.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/store/src/main/java/org/apache/rocketmq/store/DefaultMessageStore.java 
b/store/src/main/java/org/apache/rocketmq/store/DefaultMessageStore.java
index d293e49a50..d613468386 100644
--- a/store/src/main/java/org/apache/rocketmq/store/DefaultMessageStore.java
+++ b/store/src/main/java/org/apache/rocketmq/store/DefaultMessageStore.java
@@ -522,7 +522,6 @@ public class DefaultMessageStore implements MessageStore {
 }
 this.flushConsumeQueueService.shutdown();
 this.allocateMappedFileService.shutdown();
-this.storeCheckpoint.flush();
 this.storeCheckpoint.shutdown();
 
 this.perfs.shutdown();



Re: [I] [Doc] Where can I find 5.x Server Configuration ? 5.x版本 服务端的配置文档 [rocketmq]

2025-03-19 Thread via GitHub


lizhimins closed issue #8243: [Doc] Where can I find 5.x Server Configuration ? 
5.x版本 服务端的配置文档
URL: https://github.com/apache/rocketmq/issues/8243


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by github-actions[bot]).

Head commit for run:
dee51095e2cf3d7d597e0a5de7af4dcd36331d34 / DivyanshIITB 

[ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility (#9258)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961501467

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by lizhimins).

Head commit for run:
34c32d8c8081f09f7c87cbd79534162eb0a08a0f / mxsm 
[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961528751

With regards,
GitHub Actions via GitBox



Re: [I] [Doc] Description of the brokerAddrTable property in MQClientInstance [rocketmq]

2025-03-19 Thread via GitHub


RongtongJin closed issue #8701: [Doc] Description of the brokerAddrTable 
property in MQClientInstance
URL: https://github.com/apache/rocketmq/issues/8701


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [ISSUE #8701] Fix documentation for brokerAddrTable property in MQClientInstance.java [rocketmq]

2025-03-19 Thread via GitHub


RongtongJin merged PR #9263:
URL: https://github.com/apache/rocketmq/pull/9263


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(rocketmq) branch develop updated: [ISSUE #8701] Fix documentation for brokerAddrTable property in MQClientInstance.java (#9263)

2025-03-19 Thread jinrongtong
This is an automated email from the ASF dual-hosted git repository.

jinrongtong pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
 new 27c29162f4 [ISSUE #8701] Fix documentation for brokerAddrTable 
property in MQClientInstance.java (#9263)
27c29162f4 is described below

commit 27c29162f47fa6875be31fb0eb4103241c06c1c6
Author: DivyanshIITB 
AuthorDate: Thu Mar 20 08:44:30 2025 +0530

[ISSUE #8701] Fix documentation for brokerAddrTable property in 
MQClientInstance.java (#9263)
---
 .../java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
 
b/client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
index eba654c22d..d2a4694bb0 100644
--- 
a/client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
+++ 
b/client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
@@ -118,7 +118,7 @@ public class MQClientInstance {
 private final Lock lockHeartbeat = new ReentrantLock();
 
 /**
- * The container which stores the brokerClusterInfo. The key of the map is 
the brokerCluster name.
+ * The container which stores the brokerClusterInfo. The key of the map is 
the broker name.
  * And the value is the broker instance list that belongs to the broker 
cluster.
  * For the sub map, the key is the id of single broker instance, and the 
value is the address.
  */



[GH] (rocketmq): Workflow run "PUSH-CI" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "PUSH-CI" on rocketmq.git has failed.
Run started by GitHub user lizhimins (triggered by lizhimins).

Head commit for run:
34c32d8c8081f09f7c87cbd79534162eb0a08a0f / mxsm 
[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961528749

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by lizhimins).

Head commit for run:
34c32d8c8081f09f7c87cbd79534162eb0a08a0f / mxsm 
[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961528745

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490113

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user zeyu-zh (triggered by zeyu-zh).

Head commit for run:
34c32d8c8081f09f7c87cbd79534162eb0a08a0f / mxsm 
[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

Report URL: https://github.com/apache/rocketmq/actions/runs/13963113546

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user RongtongJin (triggered by github-actions[bot]).

Head commit for run:
27c29162f47fa6875be31fb0eb4103241c06c1c6 / DivyanshIITB 

[ISSUE #8701] Fix documentation for brokerAddrTable property in 
MQClientInstance.java (#9263)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961202799

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user lizhimins (triggered by github-actions[bot]).

Head commit for run:
34c32d8c8081f09f7c87cbd79534162eb0a08a0f / mxsm 
[ISSUE #9259] Remove duplicate flushing operation of StoreCheckpoint(#9260)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961528751

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
succeeded.
Run started by GitHub user lizhimins (triggered by lizhimins).

Head commit for run:
dee51095e2cf3d7d597e0a5de7af4dcd36331d34 / DivyanshIITB 

[ISSUE #8243] Update Configuration Docs for RocketMQ 5.x Compatibility (#9258)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961501449

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
4af1c8cede561686d9c37c2637081aa57dcf6447 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13960610364

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user RongtongJin (triggered by github-actions[bot]).

Head commit for run:
27c29162f47fa6875be31fb0eb4103241c06c1c6 / DivyanshIITB 

[ISSUE #8701] Fix documentation for brokerAddrTable property in 
MQClientInstance.java (#9263)

Report URL: https://github.com/apache/rocketmq/actions/runs/13961202799

With regards,
GitHub Actions via GitBox



Re: [PR] [ISSUE #9253] Make the message visible earlier when response process encounters errors [rocketmq]

2025-03-19 Thread via GitHub


lizhimins commented on PR #9255:
URL: https://github.com/apache/rocketmq/pull/9255#issuecomment-2739303183

   @qianye1001 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user zeyu-zh (triggered by lizhimins).

Head commit for run:
737ae8f99d0c31e2ba383023ede057ffc3358076 / 张泽宇 
Trigger CI/CD pipeline

Report URL: https://github.com/apache/rocketmq/actions/runs/13716120464

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user zeyu-zh (triggered by github-actions[bot]).

Head commit for run:
737ae8f99d0c31e2ba383023ede057ffc3358076 / 张泽宇 
Trigger CI/CD pipeline

Report URL: https://github.com/apache/rocketmq/actions/runs/13716120464

With regards,
GitHub Actions via GitBox



Re: [PR] Optimized ConsumerOffsetManager for Faster Topic & Group Lookups [rocketmq]

2025-03-19 Thread via GitHub


lizhimins commented on PR #9251:
URL: https://github.com/apache/rocketmq/pull/9251#issuecomment-2739299221

   Need to pass all test cases first


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq.git has failed.
Run started by GitHub user zeyu-zh (triggered by lizhimins).

Head commit for run:
737ae8f99d0c31e2ba383023ede057ffc3358076 / 张泽宇 
Trigger CI/CD pipeline

Report URL: https://github.com/apache/rocketmq/actions/runs/13716120474

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
2219fd8c1aee3bc42f6a66394e0e4cf131006a26 / hqbfz 
<125714719+3424672...@users.noreply.github.com>
[ISSUE #9244] Avoid writing dirty data in consumption mode (#9245)

Report URL: https://github.com/apache/rocketmq/actions/runs/13944893981

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855867

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user DivyanshIITB (triggered by github-actions[bot]).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855867

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user DivyanshIITB (triggered by github-actions[bot]).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855867

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "PR-CI" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "PR-CI" on rocketmq.git has succeeded.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855852

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Run Integration Tests" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Run Integration Tests" on rocketmq.git has failed.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855909

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123231

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
dd25c4b4a847685e2f5ccd70d57fba207180220d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945586708

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Coverage" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq.git has succeeded.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855853

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
dd25c4b4a847685e2f5ccd70d57fba207180220d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945586708

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123231

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
2219fd8c1aee3bc42f6a66394e0e4cf131006a26 / hqbfz 
<125714719+3424672...@users.noreply.github.com>
[ISSUE #9244] Avoid writing dirty data in consumption mode (#9245)

Report URL: https://github.com/apache/rocketmq/actions/runs/13945628568

With regards,
GitHub Actions via GitBox



Re: [PR] Update Configuration Docs for RocketMQ 5.x Compatibility [rocketmq]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #9258:
URL: https://github.com/apache/rocketmq/pull/9258#issuecomment-2735982408

   Just a gentle reminder !


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix: Added missing NameServer parameter for RocketMQ Dashboard deployment [rocketmq-site]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #720:
URL: https://github.com/apache/rocketmq-site/pull/720#issuecomment-2735996740

   Just a gentle reminder


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490074

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
d8f18e1c88d795b1a179b1bf4ad56f119f90bc7d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13943490086

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "Build" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build" on rocketmq-clients.git has failed.
Run started by GitHub user guyinyou (triggered by RongtongJin).

Head commit for run:
ed72ae06fd322eb835c101882e4396359cf3c7ed / guyinyou 

update producer demo

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942866740

With regards,
GitHub Actions via GitBox



Re: [PR] golang: Remove support for lz4 and zstd compression algorithms [rocketmq-clients]

2025-03-19 Thread via GitHub


RongtongJin merged PR #963:
URL: https://github.com/apache/rocketmq-clients/pull/963


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq-spring): Workflow run "Java CI with Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Java CI with Maven" on rocketmq-spring.git has failed.
Run started by GitHub user qianye1001 (triggered by RongtongJin).

Head commit for run:
0ce1d1a1b73e5acaf6ee696d30c7ba575ee646a3 / qianye 

update remoting client version to 5.3.2 to support go-away

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13941589471

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
2219fd8c1aee3bc42f6a66394e0e4cf131006a26 / hqbfz 
<125714719+3424672...@users.noreply.github.com>
[ISSUE #9244] Avoid writing dirty data in consumption mode (#9245)

Report URL: https://github.com/apache/rocketmq/actions/runs/13943510975

With regards,
GitHub Actions via GitBox



[PR] update remoting client version to 5.3.2 to support go-away [rocketmq-spring]

2025-03-19 Thread via GitHub


qianye1001 opened a new pull request, #714:
URL: https://github.com/apache/rocketmq-spring/pull/714

   
   update remoting client version to 5.3.2 to support go-away


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] The clientIP attribute of ClientConfig supports setting through Syste… [rocketmq]

2025-03-19 Thread via GitHub


WhyStart opened a new pull request, #9262:
URL: https://github.com/apache/rocketmq/pull/9262

   …mProperty.
   
   
   
   ### Which Issue(s) This PR Fixes
   
   
   
   Fixes #3294 
   
   ### Brief Description
   In a springboot+rocketmq project, starting up and loading topics on Windows 
is very slow, especially on computers that have virtual machines installed, 
with an average of 4 seconds to load each topic. After learning from some 
materials that this is due to network adapter issues, I think we can pass the 
clientIP through System.property. If it's not passed that way, then we can 
obtain the LocalIP through NetworkUtil.getLocalAddress().
   
   ```java
   public ClientConfig() {
   String ip = System.getProperty("rocketmq.client.ip");
   if (ip != null && !ip.trim().isEmpty()) {
   clientIP = ip;
   } else {
   clientIP = NetworkUtil.getLocalAddress();
   }
   }
```
   
   
   
   ### How Did You Test This Change?
   
   ```java
   @Test
   public void testClientIpOverrideWithSystemProperty() {
   String ip = "192.168.8.8";
   System.setProperty("rocketmq.client.ip", ip);
   ClientConfig clientConfig = new ClientConfig();
   assertEquals(ip, clientConfig.getClientIP());
   System.clearProperty("rocketmq.client.ip");
   clientConfig = new ClientConfig();
   assertEquals(NetworkUtil.getLocalAddress(), 
clientConfig.getClientIP());
   }
   ``` 
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq-clients): Workflow run "Golang Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Golang Coverage" on rocketmq-clients.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
d6a8de5d0ab2aeae0297495f4d5933de4e41b960 / guyinyou 
<36399867+guyin...@users.noreply.github.com>
golang: Remove support for lz4 and zstd compression algorithms (#963)

* Remove support for lz4 and zstd compression algorithms

* Remove support for lz4 and zstd compression algorithms

-

Co-authored-by: guyinyou 

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942637789

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "Rust Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Rust Coverage" on rocketmq-clients.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
d6a8de5d0ab2aeae0297495f4d5933de4e41b960 / guyinyou 
<36399867+guyin...@users.noreply.github.com>
golang: Remove support for lz4 and zstd compression algorithms (#963)

* Remove support for lz4 and zstd compression algorithms

* Remove support for lz4 and zstd compression algorithms

-

Co-authored-by: guyinyou 

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942637800

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "CPP Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "CPP Coverage" on rocketmq-clients.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
d6a8de5d0ab2aeae0297495f4d5933de4e41b960 / guyinyou 
<36399867+guyin...@users.noreply.github.com>
golang: Remove support for lz4 and zstd compression algorithms (#963)

* Remove support for lz4 and zstd compression algorithms

* Remove support for lz4 and zstd compression algorithms

-

Co-authored-by: guyinyou 

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942637793

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "Build" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build" on rocketmq-clients.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
d6a8de5d0ab2aeae0297495f4d5933de4e41b960 / guyinyou 
<36399867+guyin...@users.noreply.github.com>
golang: Remove support for lz4 and zstd compression algorithms (#963)

* Remove support for lz4 and zstd compression algorithms

* Remove support for lz4 and zstd compression algorithms

-

Co-authored-by: guyinyou 

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942637757

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "Golang Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Golang Coverage" on rocketmq-clients.git has failed.
Run started by GitHub user guyinyou (triggered by guyinyou).

Head commit for run:
ed72ae06fd322eb835c101882e4396359cf3c7ed / guyinyou 

update producer demo

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942866751

With regards,
GitHub Actions via GitBox



[PR] golang: update producer demo [rocketmq-clients]

2025-03-19 Thread via GitHub


guyinyou opened a new pull request, #964:
URL: https://github.com/apache/rocketmq-clients/pull/964

   update producer demo


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq-spring): Workflow run "Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq-spring.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
0ce1d1a1b73e5acaf6ee696d30c7ba575ee646a3 / qianye 

update remoting client version to 5.3.2 to support go-away

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13941589482

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-spring): Workflow run "Java CI with Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Java CI with Maven" on rocketmq-spring.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
0ce1d1a1b73e5acaf6ee696d30c7ba575ee646a3 / qianye 

update remoting client version to 5.3.2 to support go-away

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13941589471

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123269

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-spring): Workflow run "Java CI with Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Java CI with Maven" on rocketmq-spring.git has failed.
Run started by GitHub user qianye1001 (triggered by RongtongJin).

Head commit for run:
0ce1d1a1b73e5acaf6ee696d30c7ba575ee646a3 / qianye 

update remoting client version to 5.3.2 to support go-away

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13941589471

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
succeeded.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123269

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-spring): Workflow run "Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq-spring.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
04d0266fd1b56740bc6ccc559b5f3f6b3501f679 / RongtongJin 

Fix RocketMQTemplateTest can not pass

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13947128025

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
succeeded.
Run started by GitHub user DivyanshIITB (triggered by DivyanshIITB).

Head commit for run:
04988c55cd4ec6d81f97ee7edeac436d660c2060 / Divyansh 
Fix documentation for brokerAddrTable property in MQClientInstance.java

Report URL: https://github.com/apache/rocketmq/actions/runs/13944855847

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
e8730ab6449b1140219ac853fdf7b9a25478ff21 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13946415421

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
e8730ab6449b1140219ac853fdf7b9a25478ff21 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13946415430

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123269

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by github-actions[bot]).

Head commit for run:
e8730ab6449b1140219ac853fdf7b9a25478ff21 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13946415430

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-spring): Workflow run "Coverage" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Coverage" on rocketmq-spring.git has failed.
Run started by GitHub user RongtongJin (triggered by RongtongJin).

Head commit for run:
fb044e2e4746360ae6bbe4dc89ab2c263eb76d81 / qianye 

Update remoting client version to 5.3.2 to support go-away (#714)

* update remoting client version to 5.3.2 to support go-away

* Fix RocketMQTemplateTest can not pass

-

Co-authored-by: RongtongJin 

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13947513129

With regards,
GitHub Actions via GitBox



Re: [PR] update remoting client version to 5.3.2 to support go-away [rocketmq-spring]

2025-03-19 Thread via GitHub


RongtongJin merged PR #714:
URL: https://github.com/apache/rocketmq-spring/pull/714


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has 
failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
e8730ab6449b1140219ac853fdf7b9a25478ff21 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13946415430

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
2219fd8c1aee3bc42f6a66394e0e4cf131006a26 / hqbfz 
<125714719+3424672...@users.noreply.github.com>
[ISSUE #9244] Avoid writing dirty data in consumption mode (#9245)

Report URL: https://github.com/apache/rocketmq/actions/runs/13946458953

With regards,
GitHub Actions via GitBox



(rocketmq-spring) branch master updated: Update remoting client version to 5.3.2 to support go-away (#714)

2025-03-19 Thread jinrongtong
This is an automated email from the ASF dual-hosted git repository.

jinrongtong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-spring.git


The following commit(s) were added to refs/heads/master by this push:
 new fb044e2  Update remoting client version to 5.3.2 to support go-away 
(#714)
fb044e2 is described below

commit fb044e2e4746360ae6bbe4dc89ab2c263eb76d81
Author: qianye 
AuthorDate: Wed Mar 19 21:17:52 2025 +0800

Update remoting client version to 5.3.2 to support go-away (#714)

* update remoting client version to 5.3.2 to support go-away

* Fix RocketMQTemplateTest can not pass

-

Co-authored-by: RongtongJin 
---
 rocketmq-spring-boot-parent/pom.xml   | 2 +-
 .../java/org/apache/rocketmq/spring/core/RocketMQTemplateTest.java| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/rocketmq-spring-boot-parent/pom.xml 
b/rocketmq-spring-boot-parent/pom.xml
index e772450..93ecee7 100644
--- a/rocketmq-spring-boot-parent/pom.xml
+++ b/rocketmq-spring-boot-parent/pom.xml
@@ -42,7 +42,7 @@
 
 
2.3.4-SNAPSHOT
 
-5.3.1
+5.3.2
 1.7.25
 2.11.1
 1.2.83
diff --git 
a/rocketmq-spring-boot/src/test/java/org/apache/rocketmq/spring/core/RocketMQTemplateTest.java
 
b/rocketmq-spring-boot/src/test/java/org/apache/rocketmq/spring/core/RocketMQTemplateTest.java
index 256345a..2777b82 100644
--- 
a/rocketmq-spring-boot/src/test/java/org/apache/rocketmq/spring/core/RocketMQTemplateTest.java
+++ 
b/rocketmq-spring-boot/src/test/java/org/apache/rocketmq/spring/core/RocketMQTemplateTest.java
@@ -126,8 +126,8 @@ public class RocketMQTemplateTest {
 public void testReceiveMessage() {
 try {
 rocketMQTemplate.receive(String.class);
-} catch (MessagingException e) {
-
assertThat(e).hasMessageContaining("org.apache.rocketmq.remoting.exception.RemotingConnectException:
 connect to [127.0.0.1:9876] failed");
+} catch (IllegalStateException e) {
+assertThat(e).hasMessageContaining("The consumer not running, 
please start it first");
 }
 }
 



[GH] (rocketmq): Workflow run "E2E test for pull request" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
2219fd8c1aee3bc42f6a66394e0e4cf131006a26 / hqbfz 
<125714719+3424672...@users.noreply.github.com>
[ISSUE #9244] Avoid writing dirty data in consumption mode (#9245)

Report URL: https://github.com/apache/rocketmq/actions/runs/13945163418

With regards,
GitHub Actions via GitBox



[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has 
succeeded.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
dd25c4b4a847685e2f5ccd70d57fba207180220d / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945586675

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-clients): Workflow run "Build" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "Build" on rocketmq-clients.git has failed.
Run started by GitHub user guyinyou (triggered by guyinyou).

Head commit for run:
ed72ae06fd322eb835c101882e4396359cf3c7ed / guyinyou 

update producer demo

Report URL: https://github.com/apache/rocketmq-clients/actions/runs/13942866740

With regards,
GitHub Actions via GitBox



[GH] (rocketmq-spring): Workflow run "maven in /rocketmq-spring-boot-parent for com.fasterxml.jackson.core:jackson-databind - Update #983229231" failed!

2025-03-19 Thread GitBox


The GitHub Actions job "maven in /rocketmq-spring-boot-parent for 
com.fasterxml.jackson.core:jackson-databind - Update #983229231" on 
rocketmq-spring.git has failed.
Run started by GitHub user dependabot[bot] (triggered by dependabot[bot]).

Head commit for run:
fb044e2e4746360ae6bbe4dc89ab2c263eb76d81 / qianye 

Update remoting client version to 5.3.2 to support go-away (#714)

* update remoting client version to 5.3.2 to support go-away

* Fix RocketMQTemplateTest can not pass

-

Co-authored-by: RongtongJin 

Report URL: https://github.com/apache/rocketmq-spring/actions/runs/13947514725

With regards,
GitHub Actions via GitBox



Re: [PR] Update Configuration Docs for RocketMQ 5.x Compatibility [rocketmq]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #9258:
URL: https://github.com/apache/rocketmq/pull/9258#issuecomment-2737673091

   Just a gentle reminder 
   @RongtongJin 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Refactored duplicate code in TopicPublishInfo [rocketmq]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #9257:
URL: https://github.com/apache/rocketmq/pull/9257#issuecomment-2737672041

   Just a gentle reminder
   @RongtongJin 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GH] (rocketmq): Workflow run "Run Integration Tests" is working again!

2025-03-19 Thread GitBox


The GitHub Actions job "Run Integration Tests" on rocketmq.git has succeeded.
Run started by GitHub user qianye1001 (triggered by qianye1001).

Head commit for run:
6bf6b54cc501e0aca8f9aef3a667674520e37c85 / qianye 

fix

Report URL: https://github.com/apache/rocketmq/actions/runs/13945123238

With regards,
GitHub Actions via GitBox



Re: [PR] Fix documentation for brokerAddrTable property in MQClientInstance.java [rocketmq]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #9263:
URL: https://github.com/apache/rocketmq/pull/9263#issuecomment-2737674128

   Just a gentle reminder
   @RongtongJin 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix: Added missing NameServer parameter for RocketMQ Dashboard deployment [rocketmq-site]

2025-03-19 Thread via GitHub


DivyanshIITB commented on PR #720:
URL: https://github.com/apache/rocketmq-site/pull/720#issuecomment-2737663381

   Just a gentle reminder


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org