diff --git a/dora/core/common/src/main/java/alluxio/conf/PropertyKey.java b/dora/core/common/src/main/java/alluxio/conf/PropertyKey.java index 501619219fdf..953ee927a672 100755 --- a/dora/core/common/src/main/java/alluxio/conf/PropertyKey.java +++ b/dora/core/common/src/main/java/alluxio/conf/PropertyKey.java @@ -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") @@ -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 " - + "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(); @@ -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(); @@ -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 =