Ufs path /archive does not exist
alluxio.user.file.writetype.default=CACHE_THROUGH
alluxio.underfs.address=/underStorage <---- note: I was assuming that this made no difference on the master
alluxio.logs.dir=/opt/alluxio/logs
alluxio.master.hostname=test3
On the worker, the contents are:
alluxio.worker.memory.size=5GB
alluxio.underfs.object.store.mount.shared.publicly=true
alluxio.underfs.address=/archive
alluxio.worker.hostname=test1
alluxio.master.hostname=test3
Thanks for any insight you can give,
John Ouellette
--
You received this message because you are subscribed to the Google Groups "Alluxio Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to alluxio-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to alluxio-user...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to alluxio-users+unsubscribe@googlegroups.com.
Hi John,
I want to clarify some concepts:- Under storage is a distributed file system such as s3, HDFS, or NFS that can be mounted to Alluxio namespace. The data on such file system should be available to all Alluxio masters and workers, and Alluxio masters and workers will make such assumption as well.- Tiered storage is your local storage resources (MEM, SSD, and HDD) managed by Alluxio. You do not need to mount any of those local folders, and Alluxio will take care of that.Hope this makes sense to you. And it will be helpful to let me know the goal you try to achieve. If your goal is to migrate the local resources to Alluxio and use Alluxio to manage the local resources, then I suggest you use bin/alluxio fs copyFromLocal command.Cheers,