管理员命令行接口
Alluxio的管理员命令行接口为管理员提供了管理Alluxio文件系统的操作。 您可以调用以下命令行来获取所有子命令:
以UFS URI作为参数的fsadmin ufs
子命令,参数应该是像hdfs://<name-service>/
这样的根UFS URI,而不是hdfs://<name-service>/<folder>
。
操作列表
backup
backup [directory] [--local]
Back up all Alluxio metadata to the backup directory configured on master.
doctor
doctor [category]
Show Alluxio errors and warnings.
report
report [category] [category args]
Report Alluxio running cluster information.
ufs
ufs --mode <noAccess/readOnly/readWrite> "ufsPath"
Update attributes for a mounted under storage system.
示例用例
backup(备份)
backup
命令创建Alluxio元数据的备份
备份到默认备份文件夹(由alluxio.master.backup.directory
)配置
备份到下存储中的特定目录。
备份到主主机的本地文件系统的特定目录。
doctor
doctor
命令显示Alluxio错误和警告。
report
report
命令提供了Alluxio运行中的集群信息。
使用 -h
选项来获得更多信息。
ufs
ufs
命令提供了选项来更新挂载的底层存储的属性。mode
选项可用于将底层存储设置为维护模式。目前某些操作可能会受到限制。
例如,一个底层存储可以设为readOnly
模式来禁止写入操作。 Alluxio将不会对底层存储尝试任何写入操作。
fsadmin ufs
命令接受一个UFS URI作为参数。该参数需要是一个 UFS URI的根,类似hdfs://<name-service>/
,而非hdfs://<name-service>/<folder>
。
Last updated