This is an automated email from the ASF dual-hosted git repository. morningman 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 2a1209d3cc7 [opt](catalog) cache the Configuration object (#45433) 2a1209d3cc7 is described below commit 2a1209d3cc77dac4f3ee7073240cd354bd6575c8 Author: Mingyu Chen (Rayner) <morning...@163.com> AuthorDate: Fri Dec 20 13:33:25 2024 +0800 [opt](catalog) cache the Configuration object (#45433) ### What problem does this PR solve? Problem Summary: Creating Configuration object is very costly, so we cache it for better performance --- .../apache/doris/datasource/ExternalCatalog.java | 21 +++++++++++++++++++++ .../datasource/hive/HiveMetaStoreClientHelper.java | 7 +------ 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/datasource/ExternalCatalog.java b/fe/fe-core/src/main/java/org/apache/doris/datasource/ExternalCatalog.java index d7cbee18c74..2575169f792 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/datasource/ExternalCatalog.java +++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/ExternalCatalog.java @@ -153,6 +153,9 @@ public abstract class ExternalCatalog protected MetaCache<ExternalDatabase<? extends ExternalTable>> metaCache; protected PreExecutionAuthenticator preExecutionAuthenticator; + private volatile Configuration cachedConf = null; + private final byte[] confLock = new byte[0]; + public ExternalCatalog() { } @@ -164,6 +167,20 @@ public abstract class ExternalCatalog } public Configuration getConfiguration() { + // build configuration is costly, so we cache it. + if (cachedConf != null) { + return cachedConf; + } + synchronized (confLock) { + if (cachedConf != null) { + return cachedConf; + } + cachedConf = buildConf(); + return cachedConf; + } + } + + private Configuration buildConf() { Configuration conf = DFSFileSystem.getHdfsConf(ifNotSetFallbackToSimpleAuth()); Map<String, String> catalogProperties = catalogProperty.getHadoopProperties(); for (Map.Entry<String, String> entry : catalogProperties.entrySet()) { @@ -409,6 +426,10 @@ public abstract class ExternalCatalog this.convertedProperties = null; } + synchronized (this.confLock) { + this.cachedConf = null; + } + refreshOnlyCatalogCache(invalidCache); } diff --git a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HiveMetaStoreClientHelper.java b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HiveMetaStoreClientHelper.java index 884cfbee45b..706bd653a85 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HiveMetaStoreClientHelper.java +++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HiveMetaStoreClientHelper.java @@ -42,7 +42,6 @@ import org.apache.doris.common.DdlException; import org.apache.doris.common.security.authentication.AuthenticationConfig; import org.apache.doris.common.security.authentication.HadoopAuthenticator; import org.apache.doris.datasource.ExternalCatalog; -import org.apache.doris.fs.remote.dfs.DFSFileSystem; import org.apache.doris.thrift.TExprOpcode; import com.google.common.base.Strings; @@ -843,11 +842,7 @@ public class HiveMetaStoreClientHelper { } public static Configuration getConfiguration(HMSExternalTable table) { - Configuration conf = DFSFileSystem.getHdfsConf(table.getCatalog().ifNotSetFallbackToSimpleAuth()); - for (Map.Entry<String, String> entry : table.getHadoopProperties().entrySet()) { - conf.set(entry.getKey(), entry.getValue()); - } - return conf; + return table.getCatalog().getConfiguration(); } public static Optional<String> getSerdeProperty(Table table, String key) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org