Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HADOOP-19376. Add fs..impl.disable.cache to core-default.xml. #7249

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4468,4 +4468,14 @@ The switch to turn S3A auditing on or off.
<description>The AbstractFileSystem for Ozone FileSystem o3fs uri</description>
</property>

<property>
<name>fs.$SCHEMA.impl.disable.cache</name>
<value>false</value>
<description>Whether create a new FileSystem instance for schema specified by $SCHEMA or not.
If false and there is a cached FileSystem instance matching the same schema of the URI,
it will be returned. Otherwise,a new FileSystem instance will be created,
initialized with the configuration and URI, cached and returned to the caller.
</description>
</property>

</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -250,5 +250,6 @@ public void initializeMemberVariables() {
xmlPropsToSkipCompare.add("io.seqfile.local.dir");

xmlPropsToSkipCompare.add("hadoop.http.sni.host.check.enabled");
xmlPropsToSkipCompare.add("fs.$SCHEMA.impl.disable.cache");
}
}
Loading