This is an automated email from the ASF dual-hosted git repository.
nic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/master by this push:
new 925a4c6 minor, correct the config name printed in logs/exception.
new 2311b05 Merge pull request #573 from Aaaaaaron/minor-log
925a4c6 is described below
commit 925a4c6552f9dcf78fda3da00fcb8f3ba90c9228
Author: Jiatao Tao <[email protected]>
AuthorDate: Sun Mar 31 19:39:24 2019 +0800
minor, correct the config name printed in logs/exception.
---
.../java/org/apache/kylin/common/persistence/JDBCResourceStore.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/core-common/src/main/java/org/apache/kylin/common/persistence/JDBCResourceStore.java
b/core-common/src/main/java/org/apache/kylin/common/persistence/JDBCResourceStore.java
index 9e5a989..74c797f 100644
---
a/core-common/src/main/java/org/apache/kylin/common/persistence/JDBCResourceStore.java
+++
b/core-common/src/main/java/org/apache/kylin/common/persistence/JDBCResourceStore.java
@@ -400,12 +400,12 @@ public class JDBCResourceStore extends
PushdownResourceStore {
if (content.length > smallCellMetadataWarningThreshold) {
logger.warn(
- "A JSON metadata entry's size is not supposed to
exceed kap.metadata.jdbc.small-cell-meta-size-warning-threshold({}), resPath:
{}, actual size: {}",
+ "A JSON metadata entry's size is not supposed to
exceed kylin.metadata.jdbc.small-cell-meta-size-warning-threshold({}), resPath:
{}, actual size: {}",
smallCellMetadataWarningThreshold, resPath,
content.length);
}
if (content.length > smallCellMetadataErrorThreshold) {
throw new SQLException(new IllegalArgumentException(
- "A JSON metadata entry's size is not supposed to
exceed kap.metadata.jdbc.small-cell-meta-size-error-threshold("
+ "A JSON metadata entry's size is not supposed to
exceed kylin.metadata.jdbc.small-cell-meta-size-error-threshold("
+ smallCellMetadataErrorThreshold + "),
resPath: " + resPath + ", actual size: "
+ content.length));
}