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

[SMALLFIX] Remove invalid Property WORKER_FUSE_ENABLED #18349

Merged
merged 3 commits into from
Nov 11, 2023
Merged
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
17 changes: 3 additions & 14 deletions dora/core/common/src/main/java/alluxio/conf/PropertyKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -4043,13 +4043,6 @@ public String toString() {
.setConsistencyCheckLevel(ConsistencyCheckLevel.WARN)
.setScope(Scope.ALL)
.build();
public static final PropertyKey WORKER_FUSE_ENABLED =
booleanBuilder(Name.WORKER_FUSE_ENABLED)
.setDefaultValue(false)
.setDescription("If true, launch worker embedded Fuse application.")
.setConsistencyCheckLevel(ConsistencyCheckLevel.WARN)
.setScope(Scope.WORKER)
.build();
public static final PropertyKey WORKER_STARTUP_TIMEOUT =
durationBuilder(Name.WORKER_STARTUP_TIMEOUT)
.setDefaultValue("10min")
Expand Down Expand Up @@ -6398,9 +6391,8 @@ public String toString() {
.setAlias(Name.WORKER_FUSE_MOUNT_ALLUXIO_PATH)
.setDefaultValue("/")
.setDescription(format("The Alluxio path to mount to the given "
+ "Fuse mount point configured by %s in the worker when %s is enabled "
YichuanSun marked this conversation as resolved.
Show resolved Hide resolved
+ "or in the standalone Fuse process.",
Name.FUSE_MOUNT_POINT, Name.WORKER_FUSE_ENABLED))
+ "Fuse mount point configured by %s.",
Name.FUSE_MOUNT_POINT))
.setConsistencyCheckLevel(ConsistencyCheckLevel.WARN)
.setScope(Scope.ALL)
.build();
Expand All @@ -6418,8 +6410,7 @@ public String toString() {
stringBuilder(Name.FUSE_MOUNT_POINT)
.setAlias(Name.WORKER_FUSE_MOUNT_POINT)
.setDefaultValue("/mnt/alluxio-fuse")
.setDescription(format("The absolute local filesystem path that worker (if %s is enabled)"
+ "or standalone Fuse will mount Alluxio path to.", Name.WORKER_FUSE_ENABLED))
.setDescription("The absolute local filesystem path that mount Alluxio path to.")
.setConsistencyCheckLevel(ConsistencyCheckLevel.WARN)
.setScope(Scope.ALL)
.build();
Expand Down Expand Up @@ -7980,8 +7971,6 @@ public static final class Name {
"alluxio.worker.data.server.domain.socket.as.uuid";
public static final String WORKER_FAST_DATA_LOAD_ENABLED =
"alluxio.worker.fast.data.load.enabled";
public static final String WORKER_FUSE_ENABLED =
"alluxio.worker.fuse.enabled";
public static final String WORKER_FUSE_MOUNT_ALLUXIO_PATH =
"alluxio.worker.fuse.mount.alluxio.path";
public static final String WORKER_FUSE_MOUNT_OPTIONS =
Expand Down
Loading