Alluxio部署(集群模式)

  • 下载(pre-build for Hadoop 2.7)
http://www.alluxio.org/download`

  • 解压
tar -xvf alluxio-1.3.0-hadoop2.7-bin.tar

  • 生成配置文件
./bin/alluxio bootstrapConf 10.10.20.204

  • 添加worker
    编辑conf/workers文件,将worker的主机名添加到该文件中(worker文件中原来就有localhost),这样就有两个worker了。
localhost docker-2

  • 与worker同步程序
    /root/alluxio为worker节点上的alluxio安装目录
./bin/alluxio copyDir /root/alluxio

  • 格式化
./bin/alluxio format

  • 启动
./bin/alluxio-start.sh all

  • 停止
./bin/alluxio-stop.sh all

  • 访问控制台
http://10.10.20.204:19999

  • 检测Alluxio是否正常
    运行测试程序
./bin/alluxio runTests

    推荐阅读