This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new ba4b6aa0c0 [hot-fix](cooldown) Fix unknown module cooldownJob when
load fe image #16545
ba4b6aa0c0 is described below
commit ba4b6aa0c0515b17a6ac238970854ae91b0fe6a6
Author: plat1ko <[email protected]>
AuthorDate: Thu Feb 9 15:36:01 2023 +0800
[hot-fix](cooldown) Fix unknown module cooldownJob when load fe image #16545
---
.../src/main/java/org/apache/doris/persist/meta/MetaReader.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/persist/meta/MetaReader.java
b/fe/fe-core/src/main/java/org/apache/doris/persist/meta/MetaReader.java
index 37a89ad001..bdf616686e 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/persist/meta/MetaReader.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/persist/meta/MetaReader.java
@@ -88,9 +88,8 @@ public class MetaReader {
continue;
}
// Should skip some bytes because ignore some meta, such as
load job
- if (metaIndex.name.equals("loadJob")) {
- LOG.info("This is {}, skip {} bytes", metaIndex.name,
- metaFooter.metaIndices.get(i + 1).offset -
metaIndex.offset);
+ if (metaIndex.name.equals("loadJob") ||
metaIndex.name.equals("cooldownJob")) {
+ LOG.info("Skip {} module", metaIndex.name);
if (i < metaFooter.metaIndices.size() - 1) {
IOUtils.skipFully(dis, metaFooter.metaIndices.get(i +
1).offset - metaIndex.offset);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]