HDFS-13402. RBF: Fix java doc for StateStoreFileSystemImpl. Contributed by Yiran Wu.

This commit is contained in:
Yiqun Lin 2018-04-08 12:01:55 +08:00
parent 0b345b7653
commit 5700556cd6
1 changed files with 4 additions and 2 deletions

View File

@ -35,13 +35,15 @@ import org.apache.hadoop.fs.Options;
import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hdfs.server.federation.router.RBFConfigKeys; import org.apache.hadoop.hdfs.server.federation.router.RBFConfigKeys;
import org.apache.hadoop.hdfs.DistributedFileSystem; import org.apache.hadoop.hdfs.DistributedFileSystem;
import org.apache.hadoop.hdfs.server.federation.store.driver.StateStoreDriver;
import org.apache.hadoop.hdfs.server.federation.store.records.BaseRecord; import org.apache.hadoop.hdfs.server.federation.store.records.BaseRecord;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/** /**
* StateStoreDriver} implementation based on a filesystem. The most common uses * {@link StateStoreDriver} implementation based on a filesystem. The common
* HDFS as a backend. * implementation uses HDFS as a backend. The path can be specified setting
* dfs.federation.router.driver.fs.path=hdfs://host:port/path/to/store.
*/ */
public class StateStoreFileSystemImpl extends StateStoreFileBaseImpl { public class StateStoreFileSystemImpl extends StateStoreFileBaseImpl {