[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 9de76fdcecfb493da469705bd5b852b2f1d25bc6 / zhouxiang [ISSUE #7699] Refector NamespaceRpcHook Report URL: https://github.com/apache/rocketmq/actions/runs/7608027751 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 9de76fdcecfb493da469705bd5b852b2f1d25bc6 / zhouxiang [ISSUE #7699] Refector NamespaceRpcHook Report URL: https://github.com/apache/rocketmq/actions/runs/7608027762 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). 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/7608050111 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 9f2077cc3c398a4af2882ba4d76b2830d8daa842 / ShuangxiDing add audit logs for auth. Report URL: https://github.com/apache/rocketmq/actions/runs/7608491140 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 920dc32d27032716ec5d6ea6361af5778a9ed7b1 / Lei Zhiyuan [ISSUE #7760] make timerSkipUnknownError can be set by config file Report URL: https://github.com/apache/rocketmq/actions/runs/7608516691 With regards, GitHub Actions via GitBox
Re: [PR] [RIP-46] Enhanced metrics for timing and transactional messages [rocketmq]
RongtongJin commented on PR #7500: URL: https://github.com/apache/rocketmq/pull/7500#issuecomment-1903525491 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] [RIP-46] Enhanced metrics for timing and transactional messages [rocketmq]
RongtongJin merged PR #7500: URL: https://github.com/apache/rocketmq/pull/7500 -- 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: [RIP-46] Enhanced metrics for timing and transactional messages (#7500)
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 6d7513425c [RIP-46] Enhanced metrics for timing and transactional messages (#7500) 6d7513425c is described below commit 6d7513425c2aeb17e527be9d0d98d47f7251927d Author: Ji Juntao AuthorDate: Mon Jan 22 16:56:05 2024 +0800 [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. --- .../apache/rocketmq/broker/BrokerController.java | 9 + .../rocketmq/broker/BrokerPathConfigHelper.java| 3 + .../broker/metrics/BrokerMetricsConstant.java | 5 + .../broker/metrics/BrokerMetricsManager.java | 72 +- .../broker/processor/EndTransactionProcessor.java | 18 ++ .../broker/processor/SendMessageProcessor.java | 26 ++- .../broker/transaction/TransactionMetrics.java | 259 + .../TransactionMetricsFlushService.java| 55 + .../transaction/TransactionalMessageService.java | 5 + .../DefaultTransactionalMessageCheckListener.java | 2 + .../queue/TransactionalMessageServiceImpl.java | 19 ++ .../processor/EndTransactionProcessorTest.java | 5 + .../transaction/queue/TransactionMetricsTest.java | 83 +++ .../util/TransactionalMessageServiceImpl.java | 11 + .../org/apache/rocketmq/common/BrokerConfig.java | 10 + .../org/apache/rocketmq/common/ConfigManager.java | 11 +- .../common/config/RocksDBConfigManager.java| 13 +- .../common/metrics/NopObservableDoubleGauge.java | 22 ++ .../remoting/metrics/RemotingMetricsConstant.java | 1 - .../apache/rocketmq/store/RocksDBMessageStore.java | 12 + .../store/metrics/DefaultStoreMetricsConstant.java | 12 + .../store/metrics/DefaultStoreMetricsManager.java | 63 - .../store/metrics/RocksDBStoreMetricsManager.java | 154 .../store/queue/RocksDBConsumeQueueStore.java | 4 + .../rocketmq/store/timer/TimerMessageStore.java| 5 + 25 files changed, 856 insertions(+), 23 deletions(-) diff --git a/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java b/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java index 8d29d44383..af90e5f87e 100644 --- a/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java +++ b/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java @@ -104,6 +104,7 @@ import org.apache.rocketmq.broker.topic.TopicQueueMappingCleanService; import org.apache.rocketmq.broker.topic.TopicQueueMappingManager; import org.apache.rocketmq.broker.topic.TopicRouteInfoManager; import org.apache.rocketmq.broker.transaction.AbstractTransactionalMessageCheckListener; +import org.apache.rocketmq.broker.transaction.TransactionMetricsFlushService; import org.apache.rocketmq.broker.transaction.TransactionalMessageCheckService; import org.apache.rocketmq.broker.transaction.TransactionalMessageService; import org.apache.rocketmq.broker.transaction.queue.DefaultTransactionalMessageCheckListener; @@ -277,6 +278,7 @@ public class BrokerController { private BrokerMetricsManager brokerMetricsManager; private ColdDataPullRequestHoldService coldDataPullRequestHoldService; private ColdDataCgCtrService coldDataCgCtrService; +private TransactionMetricsFlushService transactionMetricsFlushService; public BrokerController( final BrokerConfig brokerConfig, @@ -963,6 +965,9 @@ public class BrokerController { } this.transactionalMessageCheckListener.setBrokerController(this); this.transactionalMessageCheckService = new TransactionalMessageCheckService(this); +this.transactionMetricsFlushService = new TransactionMetricsFlushService(this); +this.transactionMetricsFlushService.start(); + } private void initialAcl() { @@ -1440,6 +1445,10 @@ public class BrokerController { this.endTransactionExecutor.shutdown(); } +if (this.transactionMetricsFlushService != null) { +this.transactionMetricsFlushService.shutdown(); +} + if (this.escapeBridge != null) { esc
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7608665338 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 9f2077cc3c398a4af2882ba4d76b2830d8daa842 / ShuangxiDing add audit logs for auth. Report URL: https://github.com/apache/rocketmq/actions/runs/7608491146 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PUSH-CI" failed!
The GitHub Actions job "PUSH-CI" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7608665337 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: fb76af1386629230c540931436b8fb17c3467117 / zhouxiang fix Report URL: https://github.com/apache/rocketmq/actions/runs/7608954475 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" is working again!
The GitHub Actions job "Coverage" on rocketmq.git has succeeded. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7608665339 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
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: 9f2077cc3c398a4af2882ba4d76b2830d8daa842 / ShuangxiDing add audit logs for auth. Report URL: https://github.com/apache/rocketmq/actions/runs/7608491131 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7608980735 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #7699] Refector NamespaceRpcHook [rocketmq]
codecov-commenter commented on PR #7769: URL: https://github.com/apache/rocketmq/pull/7769#issuecomment-1903612928 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: `10 lines` in your changes are missing coverage. Please review. > Comparison is base [(`50974ad`)](https://app.codecov.io/gh/apache/rocketmq/commit/50974adaaa75200092a4bb7fad48c6a3d4c2b1ee?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.16% compared to head [(`fb76af1`)](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.19%. > Report is 7 commits behind head on develop. | [Files](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [...org/apache/rocketmq/broker/out/BrokerOuterAPI.java](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-YnJva2VyL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yb2NrZXRtcS9icm9rZXIvb3V0L0Jyb2tlck91dGVyQVBJLmphdmE=) | 0.00% | [2 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...g/apache/rocketmq/client/impl/MQClientAPIImpl.java](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-Y2xpZW50L3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yb2NrZXRtcS9jbGllbnQvaW1wbC9NUUNsaWVudEFQSUltcGwuamF2YQ==) | 0.00% | [2 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [.../rocketmq/client/impl/mqclient/MQClientAPIExt.java](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-Y2xpZW50L3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yb2NrZXRtcS9jbGllbnQvaW1wbC9tcWNsaWVudC9NUUNsaWVudEFQSUV4dC5qYXZh) | 0.00% | [2 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...ting/protocol/header/LockBatchMqRequestHeader.java](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cmVtb3Rpbmcvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3JlbW90aW5nL3Byb3RvY29sL2hlYWRlci9Mb2NrQmF0Y2hNcVJlcXVlc3RIZWFkZXIuamF2YQ==) | 0.00% | [2 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...ng/protocol/header/UnlockBatchMqRequestHeader.java](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cmVtb3Rpbmcvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3JlbW90aW5nL3Byb3RvY29sL2hlYWRlci9VbmxvY2tCYXRjaE1xUmVxdWVzdEhlYWRlci5qYXZh) | 0.00% | [2 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop#7769 +/- ## = + Coverage 43.16% 43.19% +0.02% - Complexity 9822 9853 +31 = Files 1167 1173 +6 Lines 8460785026 +419 Branches 1097311013 +40 = + Hits 3652236724 +202 - Misses 4354143740 +199 - Partials4544 4562 +18 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7769?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_co
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has succeeded. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7608665345 With regards, GitHub Actions via GitBox
[I] [Enhancement] Ensuring broker protection capabilities when POP does not return ACK [rocketmq]
GenerousMan opened a new issue, #7772: URL: https://github.com/apache/rocketmq/issues/7772 ### Before Creating the Enhancement Request - [X] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Summary Current RocketMQ supports POP consumption feature, but this introduces a problem—when clients continuously pop messages, messages that time out on ACK enter the Retry Topic, leading to periodic redelivery. In extreme cases, if the client never sends an ACK, the cluster traffic will continue to rise. This issue can be catastrophic under certain circumstances: the accumulation of messages keeps growing, and once consumers are unable to match the required consumption capacity, slow ACKs seem inevitable, leading to increasingly severe consumption delays. Therefore, we need to impose limits on the number of inflight messages. When the number of inflight messages for each queue reaches a certain threshold, we will cease pushing messages from that queue, ensuring a relatively stable amount of messages awaiting ACK for each queue—of course, these functions require the addition of switches and threshold limits in the brokerConfig to control them. ### Motivation Ensuring broker protection capabilities when POP does not return ACK ### Describe the Solution You'd Like add a inflight messages' num limitation. ### Describe Alternatives You've Considered null ### 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
[PR] [ISSUE #7772] Ensuring broker protection capabilities when POP does not return ACK [rocketmq]
GenerousMan opened a new pull request, #7773: URL: https://github.com/apache/rocketmq/pull/7773 ### Which Issue(s) This PR Fixes Fixes #7772 ### Brief Description ### 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
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 90b09ca37a4ff66e86287a287aa74d87c6a985c5 / juntao Merge remote-tracking branch 'origin/develop' into stopPop # Conflicts: # common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java Report URL: https://github.com/apache/rocketmq/actions/runs/7609336547 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 90b09ca37a4ff66e86287a287aa74d87c6a985c5 / juntao Merge remote-tracking branch 'origin/develop' into stopPop # Conflicts: # common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java Report URL: https://github.com/apache/rocketmq/actions/runs/7609336537 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7609349737 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 106b9cd840b5d5fd753a7306166b3970e72de8c1 / juntao refactor the imports Report URL: https://github.com/apache/rocketmq/actions/runs/7609532597 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 106b9cd840b5d5fd753a7306166b3970e72de8c1 / juntao refactor the imports Report URL: https://github.com/apache/rocketmq/actions/runs/7609532587 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7609550090 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 90b09ca37a4ff66e86287a287aa74d87c6a985c5 / juntao Merge remote-tracking branch 'origin/develop' into stopPop # Conflicts: # common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java Report URL: https://github.com/apache/rocketmq/actions/runs/7609336543 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 90b09ca37a4ff66e86287a287aa74d87c6a985c5 / juntao Merge remote-tracking branch 'origin/develop' into stopPop # Conflicts: # common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java Report URL: https://github.com/apache/rocketmq/actions/runs/7609336546 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 106b9cd840b5d5fd753a7306166b3970e72de8c1 / juntao refactor the imports Report URL: https://github.com/apache/rocketmq/actions/runs/7609532610 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 106b9cd840b5d5fd753a7306166b3970e72de8c1 / juntao refactor the imports Report URL: https://github.com/apache/rocketmq/actions/runs/7609532577 With regards, GitHub Actions via GitBox
svn commit: r66741 - /dev/rocketmq/KEYS
Author: caigy Date: Mon Jan 22 12:09:18 2024 New Revision: 66741 Log: add key for caigy Modified: dev/rocketmq/KEYS Modified: dev/rocketmq/KEYS == --- dev/rocketmq/KEYS (original) +++ dev/rocketmq/KEYS Mon Jan 22 12:09:18 2024 @@ -1301,3 +1301,61 @@ u9WFt1F6dAENk1cfcH9zIMfywXRd8J0xMkPISP5b fx1DRl24ezrCLHw= =toO/ -END PGP PUBLIC KEY BLOCK- +pub rsa4096 2024-01-22 [SC] + D45CD805DE178E32B8427AD5E14A98593C6E6037 +uid [ultimate] caigy +sig 3E14A98593C6E6037 2024-01-22 [self-signature] +sub rsa4096 2024-01-22 [E] +sig E14A98593C6E6037 2024-01-22 [self-signature] + +-BEGIN PGP PUBLIC KEY BLOCK- + +mQINBGWuVCoBEADTLisqQOrE/AUrVY0exB66AE3iBOfX74RdEvXxTbk8zHJ8cNaA +KViYgFSgjZvgAi8MQryXpbDVEByAC0m66RaDCsJ/Jg6FsN+IbTWTl/LeNdPaMibz +KwFak9tq6u5V4L4TYQn7cLwaIUM21kVK8TkbqJaKyXtJjI8R0Cn9RJMy+WTC2sMe +4RxLbpeKDPyZFQ7x/5ZFCoo0krJIUKQXHA2P0m8t5HJwaaxjxgaCS0HAtm3DuRQw +CJoKXD52tyYat6uGhtJwpOLU80NssQfEpCa6FWKhDe29sBeNj2Us3kmkxWyW8ncJ +nkN7WpvzI7Zrw0pLrlHtd+ipnuF2gD5okuX3Pc9GAxHZrRiH8KKhM/hQYhM3iAx/ +RWoGcebsP3XdA8f+v7aQVHiCcsMwP5kheTVXGkuF/a8UJUNHAgqdwT5VG1SxpAmL +x6dNz+FxW3oC/UvZbKykGtR8BsrD5XE5oy9gAFyZ84Y2AkyTn9l/H8RUwrUvkuvd +K14tJNiwNKNhUn5L3XlpGbS/Xnntbc/YhmVs1/EpRJLaTrmD4CEj7rUgQTiC95pj +EC1DwsxjBpY+6l4my8u6veFbH+WBRgVLFBR8nVvvBns75lQ4SaAVi5uhzr9aeJN7 +f04Il5PceqKVpsQwSwDO+qiDRJYVptr0xBKAhRVE/foZBpHOFTE1CYvsbQARAQAB +tBhjYWlneSA8Y2FpZ3lAYXBhY2hlLm9yZz6JAlEEEwEIADsWIQTUXNgF3heOMrhC +etXhSphZPG5gNwUCZa5UKgIbAwULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgAAK +CRDhSphZPG5gN85iEACT+2Mm2vKrucudmnz7kM+s1ZSyQdcAavelbkEl+IxnyvOy +uY8Zi66OTrywTukiA1cUwnXQCS+YfghhERK45fnh7t8hEM4pFVuNbJgyZ+EkBNuB +QvGYLjMcm4fz3XFWIPPB4wyAvgWhiSCaZCd7cg2gV09ptk9Gi+mcU/eaF8zBQ4rF +Y1qKq+vJcREljkxvrB0tAAdV1wsNyOaS3hDY4UocicK0ZXm/xJIA6RaotR58NN6s +/9QFGLDHzXrvtJKuDDIoaVeUOZOZQaNFjoUu48u89xLV/aA7sre+PhalCg0q0LuD +hfPA9dW9frkaEJTc9nbR82j+QYLJScUQbdQLNZHrKI7jxjYJYOi0x5WYabIezQcl +cVkRag9mh2XtVLVzgYPonWm3slhv8S7PkDNZ4bH9p6kedEARES5vnJeeJvC1lsbj +2dz+XeRomyUzIOKOlmyAltiV245F26f4lMiyp19Mfpcx6xDcfEabh5KcWJFZSBPk +8MP53KiVqvM+xlFY+LoKtCR1zLp7Qn01CMXfnoM/uPyhhAkqiqXXsy0kNk1RzsvD +vm0T4etzYeqRkin3ZCqSN38SB8WDH7O+kOx9LbxE/2PBOF28BNW/9QMpMhbdaUEP +OQDFdam4sxNwkmR28vxadwu+EYQi6m5ZXPkS2OOnJ2UBOgXPA12MudFQt3I1JLkC +DQRlrlQqARAA6bLQVC6+/cfz1r+Hs4YKcUWymOjNAToXDKrhMyPk4aUb6ZfA0VER +EAF8ffjvOp0MhvRKSEz2qg9D3FGrQFdGfn5b9v6RsMVeIfeOFzelAaYLfnqcIwmx +fDCMhkLWxqVdnEknjNKoNA7u2LU7sUh7/AMmlkeDI7SHPexoo8Gjg1LVD3DcIWpO +TWudH6lBHmWxyAQAhMq14P7K5bYmrMnmITQ5qo4Hk/qIfB5De8KPsFZkUheSjNEy +N33+OXGhsNlzjlS/fChgongKO0jJzsitbObimA3jGjaR7eX1GHoEf5bnBIjwp8k3 +FeHm8AW303g9UHHnyJTs9W7k5w3AdMvL1how8dxatSZxZvqn89WlzcsZH3T9p/C1 +/JkeYwTXqTlhBC4oSKa+OsQxvhfKSOoQBG5gNp97IRAe+w70EuRjpTnApe6Ebfeg +/m7UjbwwDFN2Za5lK+EllQ1QCGrU2CQvxWbAmwSIj1blV+YbMSTMmYbYMtWR1osu +goDVNLDnzJEPCpfa5oG/c+QsRBwI9nD6S847bEAx4BTnqIdSsGT1lFXMwNW5vwWM +23awFrAVxNWylVcjbXfKtQKOWOWimfodOIYG+fTpEFXTymMMZgmlIvkYiTm1cB2j +f9wmDttpD/tzYrOJaq5KGzXd8mNmVlstUcp6h6BI9qM/AWlcxu13N7kAEQEAAYkC +NgQYAQgAIBYhBNRc2AXeF44yuEJ61eFKmFk8bmA3BQJlrlQqAhsMAAoJEOFKmFk8 +bmA3wX4QAKoyf0uB4qwJjZ8PCkyzhHoLZ7h3mVJc3dpZ0Yk/fO0vvW3gGO75sMcp +mb0ZdK1MakE80rnQTYei4OKcYQtP24AYrqHAYwKLrAH8LcGkuOzFYcM7Bq/CbyVg +NWx/tup+RVVByYKFO8IVIYy9wQ9rnuP0+xaNylRnO3qUNbsd7gQCc9VC10vvx4px +rVw/Bhx2l/z9b7v6U8IUeKz6e/KK0lCjABpQUg+zBE/aZEV3sN262+PqfTbfD456 +QLPx2/+NT7miBxoUu+35+lnPODHZM0oxsKyUXNlds280LB3z0AqAApqMhvbJY8kU +2rl5Q/CqIbtOHJpyXJqh2JiYMAS4W2LVrTmaUEyciQNEfawCnZClwsBVsAy9ADNo +MkrSxKubO2YyrWVhAPm0el9JFsufmmBcuR9R8Q6pznufg5o9q6pG56cGTXBJFXwC +ZDbELefyskhenxhRIzwdINsJIWbbUrdlKgbb3AFkbYV3/Eq6nRBouupwWSf+/FaR +/4AhM1jQmRqPAMh/DP8XGRxq9+om7B1V/+EMNNc/CToplkniQSG1sQOTsVZtFCOv +jyFJcQ47lvbN9eZHKYge0ny54eOyn2CgptrgZmK0ZeREBFzRKmueGUOVuvKsH952 +CDp1oIEzbJ5demii7+Wgr8l7PgEPKUg5KToiQYBHJ05EM6bUXUn3 +=cdN3 +-END PGP PUBLIC KEY BLOCK-
[I] [Enhancement] Make the handle of ppv2 tlv more extendable [rocketmq]
dingshuangxi888 opened a new issue, #7774: URL: https://github.com/apache/rocketmq/issues/7774 ### Before Creating the Enhancement Request - [X] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Summary In the PPV2 protocol, TLV data is generally customized and needs to have the capability for extension. ### Motivation In the PPV2 protocol, TLV data is generally customized and needs to have the capability for extension. ### Describe the Solution You'd Like In the PPV2 protocol, TLV data is generally customized and needs to have the capability for extension. ### Describe Alternatives You've Considered In the PPV2 protocol, TLV data is generally customized and needs to have the capability for extension. ### 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
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 1a9742a09ad04748f7e4cab9ccbc99cff9489218 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7611184889 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" is working again!
The GitHub Actions job "PR-CI" on rocketmq.git has succeeded. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 1a9742a09ad04748f7e4cab9ccbc99cff9489218 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7611184904 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7611220218 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" is working again!
The GitHub Actions job "Coverage" on rocketmq.git has succeeded. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 1a9742a09ad04748f7e4cab9ccbc99cff9489218 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7611184900 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #7774] Make the handle of ppv2 tlv more extendable [rocketmq]
codecov-commenter commented on PR #7775: URL: https://github.com/apache/rocketmq/pull/7775#issuecomment-1903958755 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: `30 lines` in your changes are missing coverage. Please review. > Comparison is base [(`6d75134`)](https://app.codecov.io/gh/apache/rocketmq/commit/6d7513425c2aeb17e527be9d0d98d47f7251927d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.21% compared to head [(`1a9742a`)](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.14%. | [Files](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [...etmq/proxy/grpc/ProxyAndTlsProtocolNegotiator.java](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cHJveHkvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3Byb3h5L2dycGMvUHJveHlBbmRUbHNQcm90b2NvbE5lZ290aWF0b3IuamF2YQ==) | 0.00% | [9 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...g/protocol/http2proxy/HAProxyMessageForwarder.java](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cHJveHkvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3Byb3h5L3JlbW90aW5nL3Byb3RvY29sL2h0dHAycHJveHkvSEFQcm94eU1lc3NhZ2VGb3J3YXJkZXIuamF2YQ==) | 0.00% | [8 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...e/rocketmq/remoting/netty/NettyRemotingServer.java](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cmVtb3Rpbmcvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3JlbW90aW5nL25ldHR5L05ldHR5UmVtb3RpbmdTZXJ2ZXIuamF2YQ==) | 11.11% | [8 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [...protocol/http2proxy/Http2ProtocolProxyHandler.java](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-cHJveHkvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JvY2tldG1xL3Byb3h5L3JlbW90aW5nL3Byb3RvY29sL2h0dHAycHJveHkvSHR0cDJQcm90b2NvbFByb3h5SGFuZGxlci5qYXZh) | 0.00% | [5 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop#7775 +/- ## = - Coverage 43.21% 43.14% -0.08% + Complexity 9859 9850 -9 = Files 1171 1171 Lines 8502585029 +4 Branches 1101511015 = - Hits 3674436682 -62 - Misses 4371743789 +72 + Partials4564 4558 -6 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7775?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!
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: 1a9742a09ad04748f7e4cab9ccbc99cff9489218 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7611184896 With regards, GitHub Actions via GitBox
(rocketmq-clients) branch nodejs_release_5.0.0 created (now 90044056)
This is an automated email from the ASF dual-hosted git repository. tigerlee pushed a change to branch nodejs_release_5.0.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git at 90044056 [ISSUE #660] Add namespace in metadata (#671) No new revisions were added by this update.
(rocketmq-clients) branch nodejs_release_1.0.0 created (now 90044056)
This is an automated email from the ASF dual-hosted git repository. tigerlee pushed a change to branch nodejs_release_1.0.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git at 90044056 [ISSUE #660] Add namespace in metadata (#671) No new revisions were added by this update.
(rocketmq-clients) branch nodejs_release_5.0.0 deleted (was 90044056)
This is an automated email from the ASF dual-hosted git repository. tigerlee pushed a change to branch nodejs_release_5.0.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git was 90044056 [ISSUE #660] Add namespace in metadata (#671) The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(rocketmq-clients) annotated tag nodejs-1.0.0 updated (7a093ad9 -> 3f7fb980)
This is an automated email from the ASF dual-hosted git repository. tigerlee pushed a change to annotated tag nodejs-1.0.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git *** WARNING: tag nodejs-1.0.0 was modified! *** from 7a093ad9 (commit) to 3f7fb980 (tag) tagging 7a093ad919d73ef7edfc97a83e7ed8ba870eae8b (commit) replaces rust-5.0.0 by tigerweili on Mon Jan 22 22:01:17 2024 +0800 - Log - --- No new revisions were added by this update. Summary of changes:
Re: [I] 配置文件不能自动装配RocketMQAutoConfiguration [rocketmq-spring]
Duckxyh commented on issue #609: URL: https://github.com/apache/rocketmq-spring/issues/609#issuecomment-1904083791 w我也是 解决了吗? -- 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 "CodeSpell Check" failed!
The GitHub Actions job "CodeSpell Check" on rocketmq-clients.git has failed. Run started by GitHub user francisoliverlee (triggered by francisoliverlee). Head commit for run: 7a093ad919d73ef7edfc97a83e7ed8ba870eae8b / tigerweili publish first release 1.0.0 Report URL: https://github.com/apache/rocketmq-clients/actions/runs/7612454441 With regards, GitHub Actions via GitBox
[GH] (rocketmq-clients): Workflow run "License Checker" failed!
The GitHub Actions job "License Checker" on rocketmq-clients.git has failed. Run started by GitHub user francisoliverlee (triggered by francisoliverlee). Head commit for run: 7a093ad919d73ef7edfc97a83e7ed8ba870eae8b / tigerweili publish first release 1.0.0 Report URL: https://github.com/apache/rocketmq-clients/actions/runs/7612454438 With regards, GitHub Actions via GitBox
[PR] Java release 5.0.6 [rocketmq-clients]
francisoliverlee opened a new pull request, #674: URL: https://github.com/apache/rocketmq-clients/pull/674 ### Which Issue(s) This PR Fixes Fixes #issue_id ### Brief Description ### 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
[GH] (rocketmq-clients): Workflow run "CodeSpell Check" is working again!
The GitHub Actions job "CodeSpell Check" on rocketmq-clients.git has succeeded. Run started by GitHub user francisoliverlee (triggered by francisoliverlee). Head commit for run: 203ec756c2f7145207b4992ae0a4be13e5815530 / tigerlee [maven-release-plugin] prepare for next development iteration Report URL: https://github.com/apache/rocketmq-clients/actions/runs/7612473488 With regards, GitHub Actions via GitBox
Re: [PR] publish first release 1.0.0 [rocketmq-clients]
codecov-commenter commented on PR #673: URL: https://github.com/apache/rocketmq-clients/pull/673#issuecomment-1904093078 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq-clients/pull/673?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Comparison is base [(`9004405`)](https://app.codecov.io/gh/apache/rocketmq-clients/commit/90044056cee6eb009b70fb524077728d745057c7?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 55.89% compared to head [(`7a093ad`)](https://app.codecov.io/gh/apache/rocketmq-clients/pull/673?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 55.89%. Additional details and impacted files ```diff @@Coverage Diff@@ ## master #673 +/- ## = Coverage 55.89% 55.89% Complexity 668 668 = Files 259 259 Lines 1562715627 Branches 3865 3865 = Hits 8735 8735 Misses 6641 6641 Partials251 251 ``` | [Flag](https://app.codecov.io/gh/apache/rocketmq-clients/pull/673/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Coverage Δ | | |---|---|---| | [nodejs](https://app.codecov.io/gh/apache/rocketmq-clients/pull/673/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | `86.63% <ø> (ø)` | | Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment) to find out more. [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq-clients/pull/673?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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
[GH] (rocketmq-clients): Workflow run "License Checker" is working again!
The GitHub Actions job "License Checker" on rocketmq-clients.git has succeeded. Run started by GitHub user francisoliverlee (triggered by francisoliverlee). Head commit for run: 203ec756c2f7145207b4992ae0a4be13e5815530 / tigerlee [maven-release-plugin] prepare for next development iteration Report URL: https://github.com/apache/rocketmq-clients/actions/runs/7612473483 With regards, GitHub Actions via GitBox
Re: [PR] Java release 5.0.6 [rocketmq-clients]
codecov-commenter commented on PR #674: URL: https://github.com/apache/rocketmq-clients/pull/674#issuecomment-1904095072 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Comparison is base [(`9004405`)](https://app.codecov.io/gh/apache/rocketmq-clients/commit/90044056cee6eb009b70fb524077728d745057c7?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 55.89% compared to head [(`203ec75`)](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 47.12%. Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #674 +/- ## - Coverage 55.89% 47.12% -8.78% Complexity 668 668 Files 259 207 -52 Lines 1562712156-3471 Branches 3865 3513 -352 - Hits 8735 5728-3007 + Misses 6641 6177 -464 Partials251 251 ``` | [Flag](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Coverage Δ | | |---|---|---| | [java](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | `62.95% <ø> (ø)` | | | [nodejs](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | `?` | | Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment) to find out more. [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq-clients/pull/674?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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] 配置文件在springboot3.0.x之后不自动装配 [rocketmq-spring]
Duckxyh commented on issue #608: URL: https://github.com/apache/rocketmq-spring/issues/608#issuecomment-1904125949 包路径指的是? -- 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] [ISSUE #7768]Improve RouteInfoManager#registerTopic readability [rocketmq]
mxsm opened a new pull request, #7776: URL: https://github.com/apache/rocketmq/pull/7776 ### Which Issue(s) This PR Fixes Fixes #7768 ### Brief Description Improve RouteInfoManager#registerTopic readability ### 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
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user mxsm (triggered by mxsm). Head commit for run: fde276fb84ba138347d210c5bc9ee1ddd8ac3466 / mxsm [ISSUE #7768]Improve RouteInfoManager#registerTopic readability Report URL: https://github.com/apache/rocketmq/actions/runs/7613630803 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" is working again!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has succeeded. Run started by GitHub user mxsm (triggered by mxsm). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7613668173 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #7768]Improve RouteInfoManager#registerTopic readability [rocketmq]
codecov-commenter commented on PR #7776: URL: https://github.com/apache/rocketmq/pull/7776#issuecomment-1904319414 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: `2 lines` in your changes are missing coverage. Please review. > Comparison is base [(`6d75134`)](https://app.codecov.io/gh/apache/rocketmq/commit/6d7513425c2aeb17e527be9d0d98d47f7251927d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.21% compared to head [(`fde276f`)](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.19%. | [Files](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [...e/rocketmq/namesrv/routeinfo/RouteInfoManager.java](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-bmFtZXNydi9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcm9ja2V0bXEvbmFtZXNydi9yb3V0ZWluZm8vUm91dGVJbmZvTWFuYWdlci5qYXZh) | 77.77% | [1 Missing and 1 partial :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop#7776 +/- ## = - Coverage 43.21% 43.19% -0.02% - Complexity 9859 9860 +1 = Files 1171 1171 Lines 8502585016 -9 Branches 1101511013 -2 = - Hits 3674436725 -19 - Misses 4371743733 +16 + Partials4564 4558 -6 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7776?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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
[I] [Enhancement] Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization [rocketmq]
mxsm opened a new issue, #: URL: https://github.com/apache/rocketmq/issues/ ### Before Creating the Enhancement Request - [X] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Summary Adjust code logic to avoid unnecessary deserialization  ### Motivation Adjust code logic to avoid unnecessary deserialization ### Describe the Solution You'd Like Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization ### Describe Alternatives You've Considered Avoid deserialization when it's disabled in the configuration to enhance program efficiency ### 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
[PR] [ISSUE #7777]Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization [rocketmq]
mxsm opened a new pull request, #7778: URL: https://github.com/apache/rocketmq/pull/7778 ### Which Issue(s) This PR Fixes Fixes # ### Brief Description - Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization ### 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
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user mxsm (triggered by mxsm). Head commit for run: 3cba8df5ef30d52b66e33e549decc6bd765f6ac0 / mxsm [ISSUE #]Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization Report URL: https://github.com/apache/rocketmq/actions/runs/7614476995 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user mxsm (triggered by mxsm). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7614510567 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #7777]Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization [rocketmq]
codecov-commenter commented on PR #7778: URL: https://github.com/apache/rocketmq/pull/7778#issuecomment-1904442353 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: `2 lines` in your changes are missing coverage. Please review. > Comparison is base [(`6d75134`)](https://app.codecov.io/gh/apache/rocketmq/commit/6d7513425c2aeb17e527be9d0d98d47f7251927d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.21% compared to head [(`3cba8df`)](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.16%. | [Files](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [...tmq/namesrv/processor/DefaultRequestProcessor.java](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-bmFtZXNydi9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcm9ja2V0bXEvbmFtZXNydi9wcm9jZXNzb3IvRGVmYXVsdFJlcXVlc3RQcm9jZXNzb3IuamF2YQ==) | 77.77% | [1 Missing and 1 partial :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop#7778 +/- ## = - Coverage 43.21% 43.16% -0.05% + Complexity 9859 9848 -11 = Files 1171 1171 Lines 8502585025 Branches 1101511015 = - Hits 3674436703 -41 - Misses 4371743761 +44 + Partials4564 4561 -3 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7778?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user mxsm (triggered by mxsm). Head commit for run: 3cba8df5ef30d52b66e33e549decc6bd765f6ac0 / mxsm [ISSUE #]Optimize the logic of DefaultRequestProcessor#getTopicsByCluster to avoid unnecessary deserialization Report URL: https://github.com/apache/rocketmq/actions/runs/7614477010 With regards, GitHub Actions via GitBox
Re: [I] Remove BrokerStatsManager class deprecated and useless attributes [rocketmq]
github-actions[bot] commented on issue #5914: URL: https://github.com/apache/rocketmq/issues/5914#issuecomment-1905056800 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: [I] Wrong variable name In MessageStoreConfig.class [rocketmq]
github-actions[bot] commented on issue #5882: URL: https://github.com/apache/rocketmq/issues/5882#issuecomment-1905056824 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] [ISSUE #196] Fix serviceAccountName inconsistency [rocketmq-operator]
caigy commented on code in PR #197: URL: https://github.com/apache/rocketmq-operator/pull/197#discussion_r1462633756 ## deploy/operator.yaml: ## @@ -27,7 +27,7 @@ spec: labels: name: rocketmq-operator spec: - serviceAccountName: rocketmq-operator + serviceAccountName: {{ template "rocketmq-operator.serviceAccountName" . }} Review Comment: Files in `deploy` directory are for deploying by `kubectl` instead of helm, so templating is not supported. @drivebyer Pls also take a look, it seems some substitution operations should be added in `make manifest`. -- 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!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 8f7436dd5ca0b79d4b47bc7bce8057ef31dcf7ed / juntao checkstyle Report URL: https://github.com/apache/rocketmq/actions/runs/7619934250 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #196] Fix serviceAccountName inconsistency [rocketmq-operator]
sinloss commented on code in PR #197: URL: https://github.com/apache/rocketmq-operator/pull/197#discussion_r1462640250 ## deploy/operator.yaml: ## @@ -27,7 +27,7 @@ spec: labels: name: rocketmq-operator spec: - serviceAccountName: rocketmq-operator + serviceAccountName: {{ template "rocketmq-operator.serviceAccountName" . }} Review Comment: Sure! -- 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 #202 #159]when the broker uses hostNetwork, the IP registered by the broker to the nameserver is not the podIP [rocketmq-operator]
caigy commented on code in PR #203: URL: https://github.com/apache/rocketmq-operator/pull/203#discussion_r1434724183 ## images/broker/alpine/brokerGenConfig.sh: ## @@ -27,7 +27,12 @@ function create_config() { echo "brokerClusterName=$BROKER_CLUSTER_NAME" >> $BROKER_CONFIG_FILE echo "brokerName=$BROKER_NAME" >> $BROKER_CONFIG_FILE echo "brokerId=$BROKER_ID" >> $BROKER_CONFIG_FILE -echo "brokerIP1=`hostname -i`" >> $BROKER_CONFIG_FILE + # If the STATUS_POD_IP ip is not empty, the pod uses hostNetwork: true +if [ -n "${HOST_NETWORK_POD_IP}" ]; then +echo "brokerIP1=${HOST_NETWORK_POD_IP}" >> ${BROKER_CONFIG_FILE} +else +echo "brokerIP1=`hostname -i`" >> $BROKER_CONFIG_FILE +fi Review Comment: Should we always use `status.podIP` as `brokerIP1` instead of the output of `hostname`? -- 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" is working again!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has succeeded. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7619953647 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #7772] Ensuring broker protection capabilities when POP does not return ACK [rocketmq]
codecov-commenter commented on PR #7773: URL: https://github.com/apache/rocketmq/pull/7773#issuecomment-1905173464 ## [Codecov](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: `13 lines` in your changes are missing coverage. Please review. > Comparison is base [(`6d75134`)](https://app.codecov.io/gh/apache/rocketmq/commit/6d7513425c2aeb17e527be9d0d98d47f7251927d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.21% compared to head [(`8f7436d`)](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 43.13%. | [Files](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [...rocketmq/broker/processor/PopMessageProcessor.java](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-YnJva2VyL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yb2NrZXRtcS9icm9rZXIvcHJvY2Vzc29yL1BvcE1lc3NhZ2VQcm9jZXNzb3IuamF2YQ==) | 0.00% | [5 Missing and 2 partials :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | | [.../java/org/apache/rocketmq/common/BrokerConfig.java](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-Y29tbW9uL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yb2NrZXRtcS9jb21tb24vQnJva2VyQ29uZmlnLmphdmE=) | 25.00% | [6 Missing :warning: ](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop#7773 +/- ## = - Coverage 43.21% 43.13% -0.08% + Complexity 9859 9849 -10 = Files 1171 1171 Lines 8502585040 +15 Branches 1101511017 +2 = - Hits 3674436683 -61 - Misses 4371743798 +81 + Partials4564 4559 -5 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/rocketmq/pull/7773?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_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
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has succeeded. Run started by GitHub user GenerousMan (triggered by GenerousMan). Head commit for run: 8f7436dd5ca0b79d4b47bc7bce8057ef31dcf7ed / juntao checkstyle Report URL: https://github.com/apache/rocketmq/actions/runs/7619934252 With regards, GitHub Actions via GitBox
[GH] (rocketmq-clients): Workflow run "CodeSpell Check" failed!
The GitHub Actions job "CodeSpell Check" on rocketmq-clients.git has failed. Run started by GitHub user francisoliverlee (triggered by francisoliverlee). Head commit for run: 7a093ad919d73ef7edfc97a83e7ed8ba870eae8b / tigerweili publish first release 1.0.0 Report URL: https://github.com/apache/rocketmq-clients/actions/runs/7612454441 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 9dccbcd96f2a443aadbe1f316d2979a59f125a44 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620382310 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7620385700 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 9dccbcd96f2a443aadbe1f316d2979a59f125a44 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620382312 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 9dccbcd96f2a443aadbe1f316d2979a59f125a44 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620382311 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "License checker" failed!
The GitHub Actions job "License checker" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 9dccbcd96f2a443aadbe1f316d2979a59f125a44 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620382308 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
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: 9dccbcd96f2a443aadbe1f316d2979a59f125a44 / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620382313 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: bbf3dc0ac84a9058760df9bbdf37afe4754744dd / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620638327 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "License checker" is working again!
The GitHub Actions job "License checker" on rocketmq.git has succeeded. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: bbf3dc0ac84a9058760df9bbdf37afe4754744dd / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620638333 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" is working again!
The GitHub Actions job "PR-CI" on rocketmq.git has succeeded. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: bbf3dc0ac84a9058760df9bbdf37afe4754744dd / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620638332 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 6d7513425c2aeb17e527be9d0d98d47f7251927d / Ji Juntao [RIP-46] Enhanced metrics for timing and transactional messages (#7500) * add request codes' distribution and timing messages' distribution * remove the requestCode distribution. * add delay message latency distribution. * add transaction metrics * transaction metric of topics finished, v1. * add the transaction metrics, to be tested. * fix the judgement of putMessageResult * optimize. * add config. * fix test case. * add unit tests for transactionMetrics. * remove chinese character * add rocksdb metrics. * add more rocksdb metrics. * fix NPE * avoid the total time is 0. * add license * remove useless import. Report URL: https://github.com/apache/rocketmq/actions/runs/7620657154 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" is working again!
The GitHub Actions job "Coverage" on rocketmq.git has succeeded. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: bbf3dc0ac84a9058760df9bbdf37afe4754744dd / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620638325 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!
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: bbf3dc0ac84a9058760df9bbdf37afe4754744dd / ShuangxiDing make the handle of ppv2 tlv extendable. Report URL: https://github.com/apache/rocketmq/actions/runs/7620638339 With regards, GitHub Actions via GitBox
Re: [PR] Java release 5.0.6 [rocketmq-clients]
aaron-ai commented on code in PR #674: URL: https://github.com/apache/rocketmq-clients/pull/674#discussion_r1462716643 ## java/client-apis/pom.xml: ## @@ -18,7 +18,7 @@ rocketmq-client-java-parent org.apache.rocketmq -5.0.6-SNAPSHOT +5.0.7-SNAPSHOT Review Comment: Could you set it to 5.0.6 ? Example: https://github.com/apache/rocketmq-clients/blob/997d322e71a5f6d8bc189b88eea6caad211105f8/java/pom.xml#L29C5-L29C29 -- 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] publish first release 1.0.0 [rocketmq-clients]
aaron-ai commented on PR #673: URL: https://github.com/apache/rocketmq-clients/pull/673#issuecomment-1905283957 @francisoliverlee Could you fix the CI issue above? Thanks -- 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] [ISSUE #153] add scm block for release [rocketmq-exporter]
caigy opened a new pull request, #156: URL: https://github.com/apache/rocketmq-exporter/pull/156 ## What is the purpose of the change Add scm configuration for releasing. ## Brief changelog XX ## Verifying this change Follow this checklist to help us incorporate your contribution quickly and easily. Notice, `it would be helpful if you could finish the following 5 checklist(the last one is not necessary)before request the community to review your PR`. - [x] Make sure there is a [Github issue](https://github.com/apache/rocketmq/issues) filed for the change (usually before you start working on it). Trivial changes like typos do not require a Github issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue. - [x] Format the pull request title like `[ISSUE #123] Fix UnknownException when host config not exist`. Each commit in the pull request should have a meaningful subject line and body. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit-test(over 80% coverage) to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add integration-test in [test module](https://github.com/apache/rocketmq/tree/master/test). - [x] Run `mvn -B clean apache-rat:check findbugs:findbugs checkstyle:checkstyle` to make sure basic checks pass. Run `mvn clean install -DskipITs` to make sure unit-test pass. Run `mvn clean test-compile failsafe:integration-test` to make sure integration-test pass. - [ ] If this contribution is large, please file an [Apache Individual Contributor License Agreement](http://www.apache.org/licenses/#clas). -- 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 #153] add scm block for release [rocketmq-exporter]
RongtongJin merged PR #156: URL: https://github.com/apache/rocketmq-exporter/pull/156 -- 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-exporter) branch master updated: [ISSUE #153] add scm block for release
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-exporter.git The following commit(s) were added to refs/heads/master by this push: new 25c1138 [ISSUE #153] add scm block for release 25c1138 is described below commit 25c1138b449dd77d3ceb1dc9b9348cad75558cd6 Author: caigy AuthorDate: Tue Jan 23 13:48:54 2024 +0800 [ISSUE #153] add scm block for release --- pom.xml | 7 +++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index bdfbce9..e8b3ace 100644 --- a/pom.xml +++ b/pom.xml @@ -15,6 +15,13 @@ Apache RocketMQ Prometheus Exporter + +g...@github.com:apache/rocketmq-exporter.git + scm:git:g...@github.com:apache/rocketmq-exporter.git + scm:git:g...@github.com:apache/rocketmq-exporter.git +HEAD + + 4.9.4 docker.io
Re: [PR] [ISSUE #7699] Refector NamespaceRpcHook [rocketmq]
drpmma merged PR #7769: URL: https://github.com/apache/rocketmq/pull/7769 -- 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 #7699] Refector NamespaceRpcHook (#7769)
This is an automated email from the ASF dual-hosted git repository. zhouxzhan 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 5262358140 [ISSUE #7699] Refector NamespaceRpcHook (#7769) 5262358140 is described below commit 5262358140bcf7b283754a71dd16c2a5c6dbf821 Author: Zhouxiang Zhan AuthorDate: Tue Jan 23 13:56:26 2024 +0800 [ISSUE #7699] Refector NamespaceRpcHook (#7769) * [ISSUE #7699] Refector NamespaceRpcHook * fix --- .../apache/rocketmq/broker/out/BrokerOuterAPI.java | 6 +++-- .../rocketmq/client/impl/MQClientAPIImpl.java | 6 +++-- .../client/impl/mqclient/MQClientAPIExt.java | 6 +++-- .../rocketmq/client/rpchook/NamespaceRpcHook.java | 13 -- .../client/rpchook/NamespaceRpcHookTest.java | 8 +++ .../java/org/apache/rocketmq/common/MixAll.java| 2 ++ .../protocol/header/LockBatchMqRequestHeader.java | 28 ++ .../header/UnlockBatchMqRequestHeader.java | 28 ++ 8 files changed, 78 insertions(+), 19 deletions(-) diff --git a/broker/src/main/java/org/apache/rocketmq/broker/out/BrokerOuterAPI.java b/broker/src/main/java/org/apache/rocketmq/broker/out/BrokerOuterAPI.java index 3827beb5b6..01745a2b79 100644 --- a/broker/src/main/java/org/apache/rocketmq/broker/out/BrokerOuterAPI.java +++ b/broker/src/main/java/org/apache/rocketmq/broker/out/BrokerOuterAPI.java @@ -102,11 +102,13 @@ import org.apache.rocketmq.remoting.protocol.header.GetMaxOffsetRequestHeader; import org.apache.rocketmq.remoting.protocol.header.GetMaxOffsetResponseHeader; import org.apache.rocketmq.remoting.protocol.header.GetMinOffsetRequestHeader; import org.apache.rocketmq.remoting.protocol.header.GetMinOffsetResponseHeader; +import org.apache.rocketmq.remoting.protocol.header.LockBatchMqRequestHeader; import org.apache.rocketmq.remoting.protocol.header.PullMessageRequestHeader; import org.apache.rocketmq.remoting.protocol.header.PullMessageResponseHeader; import org.apache.rocketmq.remoting.protocol.header.SendMessageRequestHeader; import org.apache.rocketmq.remoting.protocol.header.SendMessageRequestHeaderV2; import org.apache.rocketmq.remoting.protocol.header.SendMessageResponseHeader; +import org.apache.rocketmq.remoting.protocol.header.UnlockBatchMqRequestHeader; import org.apache.rocketmq.remoting.protocol.header.controller.AlterSyncStateSetRequestHeader; import org.apache.rocketmq.remoting.protocol.header.controller.ElectMasterRequestHeader; import org.apache.rocketmq.remoting.protocol.header.controller.ElectMasterResponseHeader; @@ -906,7 +908,7 @@ public class BrokerOuterAPI { final LockBatchRequestBody requestBody, final long timeoutMillis, final LockCallback callback) throws RemotingException, InterruptedException { -RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.LOCK_BATCH_MQ, null); +RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.LOCK_BATCH_MQ, new LockBatchMqRequestHeader()); request.setBody(requestBody.encode()); this.remotingClient.invokeAsync(addr, request, timeoutMillis, new InvokeCallback() { @@ -945,7 +947,7 @@ public class BrokerOuterAPI { final UnlockBatchRequestBody requestBody, final long timeoutMillis, final UnlockCallback callback) throws RemotingException, InterruptedException { -RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.UNLOCK_BATCH_MQ, null); +RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.UNLOCK_BATCH_MQ, new UnlockBatchMqRequestHeader()); request.setBody(requestBody.encode()); diff --git a/client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java b/client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java index f46dbe3124..1b4b3878c6 100644 --- a/client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java +++ b/client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java @@ -173,6 +173,7 @@ import org.apache.rocketmq.remoting.protocol.header.GetTopicConfigRequestHeader; import org.apache.rocketmq.remoting.protocol.header.GetTopicStatsInfoRequestHeader; import org.apache.rocketmq.remoting.protocol.header.GetTopicsByClusterRequestHeader; import org.apache.rocketmq.remoting.protocol.header.HeartbeatRequestHeader; +import org.apache.rocketmq.remoting.protocol.header.LockBatchMqRequestHeader; import org.apache.rocketmq.remoting.protocol.header.PopMessageRequestHeader; import org.apache.rocketmq.remoting.protocol.header.PopMessageResponseHeader; import org.apache.rocketmq.remoting.protocol.header.PullMessageRequestHeader; @@ -195,6 +196,7 @@ import org.apache.rocketmq.remoting.protocol.header.SearchOffsetResponseHeader; import org.apache.r
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 5262358140bcf7b283754a71dd16c2a5c6dbf821 / Zhouxiang Zhan [ISSUE #7699] Refector NamespaceRpcHook (#7769) * [ISSUE #7699] Refector NamespaceRpcHook * fix Report URL: https://github.com/apache/rocketmq/actions/runs/7621649741 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PUSH-CI" is working again!
The GitHub Actions job "PUSH-CI" on rocketmq.git has succeeded. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 5262358140bcf7b283754a71dd16c2a5c6dbf821 / Zhouxiang Zhan [ISSUE #7699] Refector NamespaceRpcHook (#7769) * [ISSUE #7699] Refector NamespaceRpcHook * fix Report URL: https://github.com/apache/rocketmq/actions/runs/7621649738 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 866df8cdb742d48fcf61e1528d05b55841f8744a / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622303374 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "License checker" failed!
The GitHub Actions job "License checker" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 866df8cdb742d48fcf61e1528d05b55841f8744a / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622303369 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 5262358140bcf7b283754a71dd16c2a5c6dbf821 / Zhouxiang Zhan [ISSUE #7699] Refector NamespaceRpcHook (#7769) * [ISSUE #7699] Refector NamespaceRpcHook * fix Report URL: https://github.com/apache/rocketmq/actions/runs/7622317787 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 866df8cdb742d48fcf61e1528d05b55841f8744a / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622303372 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Bazel" failed!
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: 96cca98e26d34c0b7b4764494c167e6f5dd01efd / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622336753 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "License checker" failed!
The GitHub Actions job "License checker" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 96cca98e26d34c0b7b4764494c167e6f5dd01efd / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622336749 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 96cca98e26d34c0b7b4764494c167e6f5dd01efd / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622336747 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
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: 5262358140bcf7b283754a71dd16c2a5c6dbf821 / Zhouxiang Zhan [ISSUE #7699] Refector NamespaceRpcHook (#7769) * [ISSUE #7699] Refector NamespaceRpcHook * fix Report URL: https://github.com/apache/rocketmq/actions/runs/7622350825 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user dingshuangxi888 (triggered by dingshuangxi888). Head commit for run: 866df8cdb742d48fcf61e1528d05b55841f8744a / ShuangxiDing add tests. Report URL: https://github.com/apache/rocketmq/actions/runs/7622303394 With regards, GitHub Actions via GitBox