Re: [PR] [ISSUE #7715] Update Bazel toolchain to make the CI work [rocketmq]

2024-01-18 Thread via GitHub


lizhimins commented on code in PR #7714:
URL: https://github.com/apache/rocketmq/pull/7714#discussion_r1458517606


##
remoting/BUILD.bazel:
##
@@ -73,7 +73,7 @@ java_library(
 GenTestRules(
 name = "GeneratedTestRules",
 test_files = glob(["src/test/java/**/*Test.java"]),
-deps = [
+deps = [

Review Comment:
   这里是对的吗



##
remoting/BUILD.bazel:
##
@@ -73,7 +73,7 @@ java_library(
 GenTestRules(
 name = "GeneratedTestRules",
 test_files = glob(["src/test/java/**/*Test.java"]),
-deps = [
+deps = [

Review Comment:
   这里是对的吗?



-- 
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] [Bugs]auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


guyinyou commented on issue #7764:
URL: https://github.com/apache/rocketmq/issues/7764#issuecomment-1899653130

   What version that consumer?


-- 
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] Insufficient disk space but frequent alarms [rocketmq]

2024-01-18 Thread via GitHub


lizhimins commented on issue #7738:
URL: https://github.com/apache/rocketmq/issues/7738#issuecomment-1899618374

   磁盘使用率这个描述很奇怪啊,是 ioutil 还是 disk usage


-- 
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] [Bugs]auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


zhiliatom commented on issue #7764:
URL: https://github.com/apache/rocketmq/issues/7764#issuecomment-1899570852

   > A msgId in batchConsumerQueue corresponds to an entire batch. If you want 
to maintain the same semantics as before, use an normal topic.
   
   When consume one of batch fail, will not even reconsume, sound unreasonable。


-- 
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] [Bugs]auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


zhiliatom commented on issue #7764:
URL: https://github.com/apache/rocketmq/issues/7764#issuecomment-1899533795

   > Is this topic of batchConsumeQueue type?
   
   yes


-- 
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 "PUSH-CI" failed!

2024-01-18 Thread GitBox


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

Head commit for run:
920dc32d27032716ec5d6ea6361af5778a9ed7b1 / Lei Zhiyuan 
[ISSUE #7760] make timerSkipUnknownError can be set by config file

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

With regards,
GitHub Actions via GitBox



Re: [I] [Bugs]auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


guyinyou commented on issue #7764:
URL: https://github.com/apache/rocketmq/issues/7764#issuecomment-1899526909

   Is this topic of batchConsumeQueue type?


-- 
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 #7760] make timerSkipUnknownError can be set by config file

2024-01-18 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 920dc32d27 [ISSUE #7760] make timerSkipUnknownError can be set by 
config file
920dc32d27 is described below

commit 920dc32d27032716ec5d6ea6361af5778a9ed7b1
Author: Lei Zhiyuan 
AuthorDate: Fri Jan 19 09:59:23 2024 +0800

[ISSUE #7760] make timerSkipUnknownError can be set by config file
---
 .../java/org/apache/rocketmq/store/config/MessageStoreConfig.java | 4 
 1 file changed, 4 insertions(+)

diff --git 
a/store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java 
b/store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java
index 8cb3ea6e9e..192214ada7 100644
--- 
a/store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java
+++ 
b/store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java
@@ -1609,6 +1609,10 @@ public class MessageStoreConfig {
 return timerSkipUnknownError;
 }
 
+public void setTimerSkipUnknownError(boolean timerSkipUnknownError) {
+this.timerSkipUnknownError = timerSkipUnknownError;
+}
+
 public boolean isTimerWarmEnable() {
 return timerWarmEnable;
 }



Re: [I] [Bugs]auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


RongtongJin commented on issue #7764:
URL: https://github.com/apache/rocketmq/issues/7764#issuecomment-1899518625

   PTAL @guyinyou


-- 
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!

2024-01-18 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 RongtongJin).

Head commit for run:
920dc32d27032716ec5d6ea6361af5778a9ed7b1 / Lei Zhiyuan 
[ISSUE #7760] make timerSkipUnknownError can be set by config file

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

With regards,
GitHub Actions via GitBox



Re: [I] [Bug] timerSkipUnknownError can't find set method [rocketmq]

2024-01-18 Thread via GitHub


RongtongJin closed issue #7760: [Bug] timerSkipUnknownError can't find set 
method
URL: https://github.com/apache/rocketmq/issues/7760


-- 
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 #7760] make timerSkipUnknownError can be set by config file [rocketmq]

2024-01-18 Thread via GitHub


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


-- 
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



[I] auto-bach cause some bugs [rocketmq]

2024-01-18 Thread via GitHub


zhiliatom opened a new issue, #7764:
URL: https://github.com/apache/rocketmq/issues/7764

   ### Before Creating the Bug Report
   
   - [X] I found a bug, not just asking a question, which should be created in 
[GitHub Discussions](https://github.com/apache/rocketmq/discussions).
   
   - [X] I have searched the [GitHub 
Issues](https://github.com/apache/rocketmq/issues) and [GitHub 
Discussions](https://github.com/apache/rocketmq/discussions)  of this 
repository and believe that this is not a duplicate.
   
   - [X] I have confirmed that this bug belongs to the current repository, not 
other repositories of RocketMQ.
   
   
   ### Runtime platform environment
   
   centos7
   
   ### RocketMQ version
   
   latest
   
   ### JDK Version
   
   jdk1.8
   
   ### Describe the Bug
   
   `producer.setAutobatch(true) ` and send some inner-batch message, will cause 
some strange
   things
   1. query messge by msgid can't decode message body 
   
![image](https://github.com/apache/rocketmq/assets/87265072/0b6964d5-f7cb-438d-8ef5-90805a8c32da)
   2. when consume batch-message, and one of batch consume failed, will not 
reconsume
   
   ### Steps to Reproduce
   
   as below
   
   ### What Did You Expect to See?
   
   as below
   
   ### What Did You See Instead?
   
   as below
   
   ### Additional Context
   
   _No response_


-- 
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.apache.org

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



Re: [PR] [ISSUE #7760] make timerSkipUnknownError can be set by config file [rocketmq]

2024-01-18 Thread via GitHub


codecov-commenter commented on PR #7763:
URL: https://github.com/apache/rocketmq/pull/7763#issuecomment-1899473305

   ## 
[Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 Report
   Attention: `2 lines` in your changes are missing coverage. Please review.
   > Comparison is base 
[(`646e2a4`)](https://app.codecov.io/gh/apache/rocketmq/commit/646e2a4942c62eb36b1601a41ebc0828e8580804?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 43.18% compared to head 
[(`ab396c8`)](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 43.22%.
   
   | 
[Files](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 | Patch % | Lines |
   |---|---|---|
   | 
[...ache/rocketmq/store/config/MessageStoreConfig.java](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache#diff-c3RvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3N0b3JlL2NvbmZpZy9NZXNzYWdlU3RvcmVDb25maWcuamF2YQ==)
 | 0.00% | [2 Missing :warning: 
](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 |
   
   Additional details and impacted files
   
   
   ```diff
   @@  Coverage Diff  @@
   ## develop#7763  +/-   ##
   =
   + Coverage  43.18%   43.22%   +0.03% 
   + Complexity  9834 9831   -3 
   =
 Files   1167 1167  
 Lines  8469084692   +2 
 Branches   1099310993  
   =
   + Hits   3657536609  +34 
   + Misses 4357143532  -39 
   - Partials4544 4551   +7 
   ```
   
   
   
   
   
   [:umbrella: View full report in Codecov by 
Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7763?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache).
   
   :loudspeaker: Have feedback on the report? [Share it 
here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache).
   


-- 
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] Could the community publish the official images of Rocketmq-Exporter? [rocketmq-exporter]

2024-01-18 Thread via GitHub


peachisai commented on issue #153:
URL: 
https://github.com/apache/rocketmq-exporter/issues/153#issuecomment-1899470771

   @caigy Hello,I have seen the official docker images on the hub,Thank you for 
your work!


-- 
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 "E2E test for pull request" failed!

2024-01-18 Thread GitBox


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

Head commit for run:
646e2a4942c62eb36b1601a41ebc0828e8580804 / bxfjb 
<48467309+bx...@users.noreply.github.com>
[ISSUE #7355] fix dledger recover abnormally may lost consume queue of tail 
(#7599)

* fix dledger recover abnormally may lost consume queue of tail

* fix correct storeTimestampPosition when bornhost is v6

* fix correct SYSFLAG offset

-

Co-authored-by: 赵宇晗 

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
ab396c83b7486aa47aed2b49111de685479584cc / leizhiyuan 
fix: make timerSkipUnknownError can be set by config file

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

With regards,
GitHub Actions via GitBox



[PR] [ISSUE #7760] make timerSkipUnknownError can be set by config file [rocketmq]

2024-01-18 Thread via GitHub


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

   
   
   ### Which Issue(s) This PR Fixes
   
   
   
   Fixes #7760
   
   ### Brief Description
   
   
   Missing set method, resulting in the configuration unable to be corrected by 
the configuration file.
   
   ### How Did You Test This Change?
   
   
   


-- 
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] [Bug] JDK1.8 连接就报错,换成JDK17不报错能连接 [rocketmq-clients]

2024-01-18 Thread via GitHub


github-actions[bot] closed issue #637: [Bug] JDK1.8 连接就报错,换成JDK17不报错能连接
URL: https://github.com/apache/rocketmq-clients/issues/637


-- 
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] [Bug] JDK1.8 连接就报错,换成JDK17不报错能连接 [rocketmq-clients]

2024-01-18 Thread via GitHub


github-actions[bot] commented on issue #637:
URL: 
https://github.com/apache/rocketmq-clients/issues/637#issuecomment-1899427349

   This issue was closed because it has been inactive for 3 days since being 
marked as stale.


-- 
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] [Task] add pop consumer example [rocketmq]

2024-01-18 Thread via GitHub


github-actions[bot] commented on issue #5896:
URL: https://github.com/apache/rocketmq/issues/5896#issuecomment-1899414681

   This issue is stale because it has been open for 365 days with no activity. 
It will be closed in 3 days if no further activity occurs.


-- 
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 document typo [rocketmq]

2024-01-18 Thread via GitHub


joeCarf commented on code in PR #7721:
URL: https://github.com/apache/rocketmq/pull/7721#discussion_r1457446368


##
docs/cn/Debug_In_Idea.md:
##
@@ -26,9 +26,9 @@ deleteWhen = 04
 fileReservedTime = 48
 brokerRole = ASYNC_MASTER
 flushDiskType = ASYNC_FLUSH
-namesrvAddr = 127.0.0.1:9876 # name server地址

Review Comment:
   maybe you should not paste the commented content in the terminal



-- 
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" is working again!

2024-01-18 Thread GitBox


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

Head commit for run:
2d28beb6afcd76ce25b6cba328d3f49f6ca23bfb / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
2d28beb6afcd76ce25b6cba328d3f49f6ca23bfb / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
646e2a4942c62eb36b1601a41ebc0828e8580804 / bxfjb 
<48467309+bx...@users.noreply.github.com>
[ISSUE #7355] fix dledger recover abnormally may lost consume queue of tail 
(#7599)

* fix dledger recover abnormally may lost consume queue of tail

* fix correct storeTimestampPosition when bornhost is v6

* fix correct SYSFLAG offset

-

Co-authored-by: 赵宇晗 

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
2d28beb6afcd76ce25b6cba328d3f49f6ca23bfb / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
2d28beb6afcd76ce25b6cba328d3f49f6ca23bfb / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
8f8b3e47b29ba0f559f49577050d6bf68bf16e5c / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



Re: [I] Check message size before message compression [rocketmq]

2024-01-18 Thread via GitHub


zyhui98 commented on issue #7758:
URL: https://github.com/apache/rocketmq/issues/7758#issuecomment-1898103926

   @Aresxue yes, i think this is a problem


-- 
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] Check message size before message compression [rocketmq]

2024-01-18 Thread via GitHub


zyhui98 commented on issue #7758:
URL: https://github.com/apache/rocketmq/issues/7758#issuecomment-1898102900

   at 5.1.4 delay check message is about (header + body), but send to broke is 
only body. is also a problem.
   
   


-- 
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!

2024-01-18 Thread GitBox


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

Head commit for run:
8f8b3e47b29ba0f559f49577050d6bf68bf16e5c / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
646e2a4942c62eb36b1601a41ebc0828e8580804 / bxfjb 
<48467309+bx...@users.noreply.github.com>
[ISSUE #7355] fix dledger recover abnormally may lost consume queue of tail 
(#7599)

* fix dledger recover abnormally may lost consume queue of tail

* fix correct storeTimestampPosition when bornhost is v6

* fix correct SYSFLAG offset

-

Co-authored-by: 赵宇晗 

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
8f8b3e47b29ba0f559f49577050d6bf68bf16e5c / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


The GitHub Actions job "License checker" on rocketmq.git has succeeded.
Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888).

Head commit for run:
8f8b3e47b29ba0f559f49577050d6bf68bf16e5c / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
8f8b3e47b29ba0f559f49577050d6bf68bf16e5c / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
d1675797f65fae87846a50ed63de637856e0da14 / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
d1675797f65fae87846a50ed63de637856e0da14 / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
646e2a4942c62eb36b1601a41ebc0828e8580804 / bxfjb 
<48467309+bx...@users.noreply.github.com>
[ISSUE #7355] fix dledger recover abnormally may lost consume queue of tail 
(#7599)

* fix dledger recover abnormally may lost consume queue of tail

* fix correct storeTimestampPosition when bornhost is v6

* fix correct SYSFLAG offset

-

Co-authored-by: 赵宇晗 

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
d1675797f65fae87846a50ed63de637856e0da14 / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


The GitHub Actions job "License checker" on rocketmq.git has failed.
Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888).

Head commit for run:
d1675797f65fae87846a50ed63de637856e0da14 / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
d1675797f65fae87846a50ed63de637856e0da14 / ShuangxiDing 

add tests.

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

With regards,
GitHub Actions via GitBox



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

2024-01-18 Thread GitBox


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

Head commit for run:
646e2a4942c62eb36b1601a41ebc0828e8580804 / bxfjb 
<48467309+bx...@users.noreply.github.com>
[ISSUE #7355] fix dledger recover abnormally may lost consume queue of tail 
(#7599)

* fix dledger recover abnormally may lost consume queue of tail

* fix correct storeTimestampPosition when bornhost is v6

* fix correct SYSFLAG offset

-

Co-authored-by: 赵宇晗 

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

With regards,
GitHub Actions via GitBox



Re: [I] [Bug] rocketmq-clients/golang与rocketmq-clients/java对数据解压的实现方式不一致导致gzip解压数据出错 [rocketmq-clients]

2024-01-18 Thread via GitHub


zhenliemao commented on issue #667:
URL: 
https://github.com/apache/rocketmq-clients/issues/667#issuecomment-1897985789

   can i work on this?


-- 
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!

2024-01-18 Thread GitBox


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

Head commit for run:
d0402b0280bf2e7337c751e7be2ff5aba4c9e61b / zhaoyuhan 
fix correct storeTimestampPosition when bornhost is v6

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

With regards,
GitHub Actions via GitBox