~~ Licensed under the Apache License, Version 2.0 (the "License"); ~~ you may not use this file except in compliance with the License. ~~ You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, software ~~ distributed under the License is distributed on an "AS IS" BASIS, ~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~~ See the License for the specific language governing permissions and ~~ limitations under the License. See accompanying LICENSE file. --- Hadoop Distributed File System-${project.version} - ViewFs Guide --- --- ${maven.build.timestamp} ViewFs Guide %{toc|section=1|fromDepth=0} * {Introduction} The View File System (ViewFs) provides a way to manage multiple Hadoop file system namespaces (or namespace volumes). It is particularly useful for clusters having multiple namenodes, and hence multiple namespaces, in {{{./Federation.html}HDFS Federation}}. ViewFs is analogous to in some Unix/Linux systems. ViewFs can be used to create personalized namespace views and also per-cluster common views. This guide is presented in the context of Hadoop systems that have several clusters, each cluster may be federated into multiple namespaces. It also describes how to use ViewFs in federated HDFS to provide a per-cluster global namespace so that applications can operate in a way similar to the pre-federation world. * The Old World (Prior to Federation) ** Single Namenode Clusters In the old world prior to {{{./Federation.html}HDFS Federation}}, a cluster has a single namenode which provides a single file system namespace for that cluster. Suppose there are multiple clusters. The file system namespaces of each cluster are completely independent and disjoint. Furthermore, physical storage is NOT shared across clusters (i.e. the Datanodes are not shared across clusters.) The <<>> of each cluster has a configuration property that sets the default file system to the namenode of that cluster: +----------------- fs.default.name hdfs://namenodeOfClusterX:port +----------------- Such a configuration property allows one to use slash-relative names to resolve paths relative to the cluster namenode. For example, the path <<>> is referring to <<>> using the above configuration. This configuration property is set on each gateway on the clusters and also on key services of that cluster such the JobTracker and Oozie. ** Pathnames Usage Patterns Hence on Cluster X where the <<>> is set as above, the typical pathnames are [[1]] <<>> * This is equivalent to <<>> as before. [[2]] <<>> * While this is a valid pathname, one is better using <<>> as it allows the application and its data to be transparently moved to another cluster when needed. [[3]] <<>> * It is an URI for referring a pathname on another cluster such as Cluster Y. In particular, the command for copying files from cluster Y to Cluster Z looks like: +----------------- distcp hdfs://namenodeClusterY:port/pathSrc hdfs://namenodeClusterZ:port/pathDest +----------------- [[4]] <<>> and <<>> * These are file system URIs respectively for accessing files via the WebHDFS file system and the HFTP file system. Note that WebHDFS and HFTP use the HTTP port of the namenode but not the RPC port. [[5]] <<>> and <<>> * These are HTTP URLs respectively for accessing files via {{{./WebHDFS.html}WebHDFS REST API}} and HDFS proxy. ** Pathname Usage Best Practices When one is within a cluster, it is recommended to use the pathname of type (1) above instead of a fully qualified URI like (2). Fully qualified URIs are similar to addresses and do not allow the application to move along with its data. * New World – Federation and ViewFs ** How The Clusters Look Suppose there are multiple clusters. Each cluster has one or more namenodes. Each namenode has its own namespace. A namenode belongs to one and only one cluster. The namenodes in the same cluster share the physical storage of that cluster. The namespaces across clusters are independent as before. Operations decide what is stored on each namenode within a cluster based on the storage needs. For example, they may put all the user data (<<>>>) in one namenode, all the feed-data (<<>>) in another namenode, all the projects (<<>>) in yet another namenode, etc. ** A Global Namespace Per Cluster Using ViewFs In order to provide transparency with the old world, the ViewFs file system (i.e. client-side mount table) is used to create each cluster an independent cluster namespace view, which is similar to the namespace in the old world. The client-side mount tables like the Unix mount tables and they mount the new namespace volumes using the old naming convention. The following figure shows a mount table mounting four namespace volumes <<>>, <<>>, <<>>, and <<>>: [./images/viewfs_TypicalMountTable.png] ViewFs implements the Hadoop file system interface just like HDFS and the local file system. It is a trivial file system in the sense that it only allows linking to other file systems. Because ViewFs implements the Hadoop file system interface, it works transparently Hadoop tools. For example, all the shell commands work with ViewFs as with HDFS and local file system. The mount points of a mount table are specified in the standard Hadoop configuration files. In the configuration of each cluster, the default file system is set to the mount table for that cluster as shown below (compare it with the configuration in {{Single Namenode Clusters}}). +----------------- fs.default.name viewfs://clusterX +----------------- The authority following the <<>> scheme in the URI is the mount table name. It is recommanded that the mount table of a cluster should be named by the cluster name. Then Hadoop system will look for a mount table with the name "clusterX" in the Hadoop configuration files. Operations arrange all gateways and service machines to contain the mount tables for ALL clusters such that, for each cluster, the default file system is set to the ViewFs mount table for that cluster as described above. ** Pathname Usage Patterns Hence on Cluster X, where the <<>> is set to make the default fs to use the mount table of that cluster, the typical pathnames are [[1]] <<>> * This is equivalent to <<>>. If such pathname is used in the old non-federated world, then the transition to federation world is transparent. [[2]] <<>> * While this a valid pathname, one is better using <<>> as it allows the application and its data to be transparently moved to another cluster when needed. [[3]] <<>> * It is an URI for referring a pathname on another cluster such as Cluster Y. In particular, the command for copying files from cluster Y to Cluster Z looks like: +----------------- distcp viewfs://clusterY:/pathSrc viewfs://clusterZ/pathDest +----------------- [[4]] <<>> and <<>> * These are URIs respectively for accessing files via the WebHDFS file system and the HFTP file system. [[5]] <<>> and <<>> * These are HTTP URLs respectively for accessing files via {{{./WebHDFS.html}WebHDFS REST API}} and HDFS proxy. Note that they are the same as before. ** Pathname Usage Best Practices When one is within a cluster, it is recommended to use the pathname of type (1) above instead of a fully qualified URI like (2). Futher, applications should not use the knowledge of the mount points and use a path like <<>> to refer to a file in a particular namenode. One should use <<>> instead. ** Renaming Pathnames Across Namespaces Recall that one cannot rename files or directories across namenodes or clusters in the old world. The same is true in the new world but with an additional twist. For example, in the old world one can perform the commend below. +----------------- rename /user/joe/myStuff /data/foo/bar +----------------- This will NOT work in the new world if <<>> and <<>> are actually stored on different namenodes within a cluster. ** FAQ [[1]] <> No, you won’t. See the examples above – you are either using a relative name and taking advantage of the default file system, or changing your path from <<>> to <<>>. [[2]] <> Operations may move files from one namenode to another in order to deal with storage capacity issues. They will do this in a way to avoid applications from breaking. Let's take some examples. * Example 1: <<>> and <<>> were on one namenode and later they need to be on separate namenodes to deal with capacity issues. Indeed, operations would have created separate mount points for <<>> and <<>>. Prior to the change the mounts for <<>> and <<>> would have pointed to the same namenode, say <<>>. Operations will update the mount tables so that the mount points are changed to <<>> and <<>>, respectively. * Example 2: All projects were fitted on one namenode and but later they need two or more namenodes. ViewFs allows mounts like <<>> and <<>>. This allows mount tables to be updated to point to the corresponding namenode. [[3]] <> <<>> <> The plan is to keep the mount tables in separate files and have the <<>> {{{http://www.w3.org/2001/XInclude}xincluding}} it. While one can keep these files on each machine locally, it is better to use HTTP to access it from a central location. [[4]] <> The configuration should have the mount definitions for all clusters since one needs to have access to data in other clusters such as with distcp. [[5]] <> The mount table is read when the job is submitted to the cluster. The <<>> in <<>> is expanded at job submission time. This means that if the mount table are changed then the jobs need to be resubmitted. Due to this reason, we want to implement merge-mount which will greatly reduce the need to change mount tables. Further, we would like to read the mount tables via another mechanism that is initialized at job start time in the future. [[6]] <> No, it does not need to. Neither does the NodeManager. [[7]] <> No; it is more general. For example, one can mount <<>> and <<>>. In this case, an internal read-only directory is created for <<>> in the mount table. All operations on <<>> are valid except that <<>> is read-only. [[8]] <> You should store <<>> type path names, the same as it uses when running applications. This insulates you from movement of data within namenodes inside a cluster as long as operations do the moves in a transparent fashion. It does not insulate you if data gets moved from one cluster to another; the older (pre-federation) world did not protect you form such data movements across clusters anyway. [[9]] <> Delegation tokens for the cluster to which you are submitting the job (including all mounted volumes for that cluster’s mount table), and for input and output paths to your map-reduce job (including all volumes mounted via mount tables for the specified input and output paths) are all handled automatically. In addition, there is a way to add additional delegation tokens to the base cluster configuration for special circumstances. * Appendix: A Mount Table Configuration Example Generally, users do not have to define mount tables or the <<>> to use the mount table. This is done by operations and the correct configuration is set on the right gateway machines as is done for <<>> today. The mount tables can be described in <<>> but it is better to use indirection in <<>> to reference a separate configuration file, say <<>>. Add the following configuration element to <<>> for referencing <<>>: +----------------- +----------------- In the file <<>>, there is a definition of the mount table "ClusterX" for the hypothetical cluster that is a federation of the three namespace volumes managed by the three namenodes [[1]] nn1-clusterx.example.com:8020, [[2]] nn2-clusterx.example.com:8020, and [[3]] nn3-clusterx.example.com:8020. [] Here <<>> and <<>> are in the namespace managed by namenode nn1-clusterx.example.com:8020, and projects <<>> and <<>> are hosted on the other namenodes of the federated cluster. The home directory base path is set to <<>> so that each user can access its home directory using the getHomeDirectory() method defined in {{{../../api/org/apache/hadoop/fs/FileSystem.html}FileSystem}}/{{{../../api/org/apache/hadoop/fs/FileContext.html}FileContext}}. +----------------- fs.viewfs.mounttable.ClusterX.homedir /home fs.viewfs.mounttable.ClusterX.link./home hdfs://nn1-clusterx.example.com:8020/home fs.viewfs.mounttable.ClusterX.link./tmp hdfs://nn1-clusterx.example.com:8020/tmp fs.viewfs.mounttable.ClusterX.link./projects/foo hdfs://nn2-clusterx.example.com:8020/projects/foo fs.viewfs.mounttable.ClusterX.link./projects/bar hdfs://nn3-clusterx.example.com:8020/projects/bar +-----------------