You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/11/05 11:58:41 UTC

[iotdb] branch rel/0.11 updated: [IOTDB-983] [To rel/0.11] Add file changelist of WAL (#1953)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/0.11
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/0.11 by this push:
     new 9bd4187  [IOTDB-983] [To rel/0.11] Add file changelist of WAL (#1953)
9bd4187 is described below

commit 9bd4187e84267ca17f80bd0f95e1e1f5a9cf82df
Author: Zesong Sun <sz...@mails.tsinghua.edu.cn>
AuthorDate: Thu Nov 5 19:57:02 2020 +0800

    [IOTDB-983] [To rel/0.11] Add file changelist of WAL (#1953)
---
 server/file-changelists/wal-changelist.md                      | 10 ++++++++++
 .../java/org/apache/iotdb/db/writelog/recover/LogReplayer.java |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/server/file-changelists/wal-changelist.md b/server/file-changelists/wal-changelist.md
index 6cb339c..7298321 100644
--- a/server/file-changelists/wal-changelist.md
+++ b/server/file-changelists/wal-changelist.md
@@ -18,3 +18,13 @@
     under the License.
 
 -->
+
+# 0.10.x -> 0.11.x
+
+Last updated on 2020-11-05 by Zesong Sun.
+
+| PR# | Name | Author | Changes |
+| ---- | ---- | ---- | ---- |
+| 1850 | add plan index and flush/close listeners  | jiangtian | Change serialization of InsertRowPlan and InsertTabletPlan |
+
+  
\ No newline at end of file
diff --git a/server/src/main/java/org/apache/iotdb/db/writelog/recover/LogReplayer.java b/server/src/main/java/org/apache/iotdb/db/writelog/recover/LogReplayer.java
index 204d510..d2c0a9b5b 100644
--- a/server/src/main/java/org/apache/iotdb/db/writelog/recover/LogReplayer.java
+++ b/server/src/main/java/org/apache/iotdb/db/writelog/recover/LogReplayer.java
@@ -113,7 +113,7 @@ public class LogReplayer {
       try {
         modFile.close();
       } catch (IOException e) {
-        logger.error("Canno close the modifications file {}", modFile.getFilePath(), e);
+        logger.error("Cannot close the modifications file {}", modFile.getFilePath(), e);
       }
     }
     tempStartTimeMap.forEach((k, v) -> currentTsFileResource.updateStartTime(k, v));