HDFS-12835. Fix the javadoc errors in Router-based federation.

This commit is contained in:
Wei Yan 2017-11-29 09:43:03 -08:00
parent 3881c9ef7e
commit 301641811d
18 changed files with 53 additions and 56 deletions

View File

@ -94,7 +94,7 @@ public interface ActiveNamenodeResolver {
* @return True if the node was registered and successfully committed to the * @return True if the node was registered and successfully committed to the
* data store. * data store.
* @throws IOException Throws exception if the namenode could not be * @throws IOException Throws exception if the namenode could not be
* registered. * registered.
*/ */
boolean registerNamenode(NamenodeStatusReport report) throws IOException; boolean registerNamenode(NamenodeStatusReport report) throws IOException;
@ -103,7 +103,8 @@ public interface ActiveNamenodeResolver {
* federation. * federation.
* *
* @return List of name spaces in the federation * @return List of name spaces in the federation
* @throws Throws exception if the namespace list is not available. * @throws IOException Throws exception if the namespace list is not
* available.
*/ */
Set<FederationNamespaceInfo> getNamespaces() throws IOException; Set<FederationNamespaceInfo> getNamespaces() throws IOException;
@ -111,7 +112,7 @@ public interface ActiveNamenodeResolver {
* Assign a unique identifier for the parent router service. * Assign a unique identifier for the parent router service.
* Required to report the status to the namenode resolver. * Required to report the status to the namenode resolver.
* *
* @param router Unique string identifier for the router. * @param routerId Unique string identifier for the router.
*/ */
void setRouterId(String routerId); void setRouterId(String routerId);
} }

View File

@ -270,8 +270,7 @@ public class MembershipNamenodeResolver
* (if showStandby) 3) Most recently updated UNAVAILABLE registration (if * (if showStandby) 3) Most recently updated UNAVAILABLE registration (if
* showUnavailable). EXPIRED registrations are ignored. * showUnavailable). EXPIRED registrations are ignored.
* *
* @param query The select query for NN registrations. * @param request The select query for NN registrations.
* @param excludes List of NNs to exclude from matching results.
* @param addUnavailable include UNAVAILABLE registrations. * @param addUnavailable include UNAVAILABLE registrations.
* @param addExpired include EXPIRED registrations. * @param addExpired include EXPIRED registrations.
* @return List of memberships or null if no registrations that * @return List of memberships or null if no registrations that

View File

@ -207,7 +207,7 @@ public class MountTableResolver
/** /**
* Invalidates all cache entries below this path. It requires the write lock. * Invalidates all cache entries below this path. It requires the write lock.
* *
* @param src Source path. * @param path Source path.
*/ */
private void invalidateLocationCache(final String path) { private void invalidateLocationCache(final String path) {
if (locationCache.isEmpty()) { if (locationCache.isEmpty()) {
@ -449,7 +449,8 @@ public class MountTableResolver
/** /**
* Build a location for this result beneath the discovered mount point. * Build a location for this result beneath the discovered mount point.
* *
* @param result Tree node search result. * @param path Path to build for.
* @param entry Mount table entry.
* @return PathLocation containing the namespace, local path. * @return PathLocation containing the namespace, local path.
*/ */
private static PathLocation buildLocation( private static PathLocation buildLocation(

View File

@ -289,9 +289,9 @@ public class NamenodeStatusReport {
* @param numFiles Number of files. * @param numFiles Number of files.
* @param numBlocks Total number of blocks. * @param numBlocks Total number of blocks.
* @param numBlocksMissing Number of missing blocks. * @param numBlocksMissing Number of missing blocks.
* @param numOfBlocksPendingReplication Number of blocks pending replication. * @param numBlocksPendingReplication Number of blocks pending replication.
* @param numOfBlocksUnderReplicated Number of blocks under replication. * @param numBlocksUnderReplicated Number of blocks under replication.
* @param numOfBlocksPendingDeletion Number of blocks pending deletion. * @param numBlocksPendingDeletion Number of blocks pending deletion.
*/ */
public void setNamesystemInfo(long available, long total, public void setNamesystemInfo(long available, long total,
long numFiles, long numBlocks, long numBlocksMissing, long numFiles, long numBlocks, long numBlocksMissing,
@ -385,4 +385,4 @@ public class NamenodeStatusReport {
return String.format("%s-%s:%s", return String.format("%s-%s:%s",
nameserviceId, namenodeId, serviceAddress); nameserviceId, namenodeId, serviceAddress);
} }
} }

View File

@ -93,8 +93,6 @@ public class ConnectionManager {
* Creates a proxy client connection pool manager. * Creates a proxy client connection pool manager.
* *
* @param config Configuration for the connections. * @param config Configuration for the connections.
* @param minPoolSize Min size of the connection pool.
* @param maxPoolSize Max size of the connection pool.
*/ */
public ConnectionManager(Configuration config) { public ConnectionManager(Configuration config) {
this.conf = config; this.conf = config;
@ -428,4 +426,4 @@ public class ConnectionManager {
this.interrupt(); this.interrupt();
} }
} }
} }

View File

@ -171,7 +171,7 @@ public class ConnectionPool {
/** /**
* Add a connection to the current pool. It uses a Copy-On-Write approach. * Add a connection to the current pool. It uses a Copy-On-Write approach.
* *
* @param conns New connections to add to the pool. * @param conn New connection to add to the pool.
*/ */
public synchronized void addConnection(ConnectionContext conn) { public synchronized void addConnection(ConnectionContext conn) {
List<ConnectionContext> tmpConnections = new ArrayList<>(this.connections); List<ConnectionContext> tmpConnections = new ArrayList<>(this.connections);
@ -334,4 +334,4 @@ public class ConnectionPool {
ConnectionContext connection = new ConnectionContext(clientProxy); ConnectionContext connection = new ConnectionContext(clientProxy);
return connection; return connection;
} }
} }

View File

@ -155,7 +155,7 @@ public final class FederationUtil {
* Creates an instance of an ActiveNamenodeResolver from the configuration. * Creates an instance of an ActiveNamenodeResolver from the configuration.
* *
* @param conf Configuration that defines the namenode resolver class. * @param conf Configuration that defines the namenode resolver class.
* @param obj Context object passed to class constructor. * @param stateStore State store passed to class constructor.
* @return New active namenode resolver. * @return New active namenode resolver.
*/ */
public static ActiveNamenodeResolver newActiveNamenodeResolver( public static ActiveNamenodeResolver newActiveNamenodeResolver(

View File

@ -89,8 +89,8 @@ public class NamenodeHeartbeatService extends PeriodicService {
/** /**
* Create a new Namenode status updater. * Create a new Namenode status updater.
* @param resolver Namenode resolver service to handle NN registration. * @param resolver Namenode resolver service to handle NN registration.
* @param nameserviceId Identifier of the nameservice. * @param nsId Identifier of the nameservice.
* @param namenodeId Identifier of the namenode in HA. * @param nnId Identifier of the namenode in HA.
*/ */
public NamenodeHeartbeatService( public NamenodeHeartbeatService(
ActiveNamenodeResolver resolver, String nsId, String nnId) { ActiveNamenodeResolver resolver, String nsId, String nnId) {
@ -320,7 +320,7 @@ public class NamenodeHeartbeatService extends PeriodicService {
/** /**
* Get the parameters for a Namenode from JMX and add them to the report. * Get the parameters for a Namenode from JMX and add them to the report.
* @param webAddress Web interface of the Namenode to monitor. * @param address Web interface of the Namenode to monitor.
* @param report Namenode status report to update with JMX data. * @param report Namenode status report to update with JMX data.
*/ */
private void updateJMXParameters( private void updateJMXParameters(

View File

@ -267,7 +267,7 @@ public class Router extends CompositeService {
/** /**
* Set the current RPC socket for the router. * Set the current RPC socket for the router.
* *
* @param rpcAddress RPC address. * @param address RPC address.
*/ */
protected void setRpcServerAddress(InetSocketAddress address) { protected void setRpcServerAddress(InetSocketAddress address) {
this.rpcAddress = address; this.rpcAddress = address;
@ -310,7 +310,7 @@ public class Router extends CompositeService {
/** /**
* Set the current Admin socket for the router. * Set the current Admin socket for the router.
* *
* @param adminAddress Admin RPC address. * @param address Admin RPC address.
*/ */
protected void setAdminServerAddress(InetSocketAddress address) { protected void setAdminServerAddress(InetSocketAddress address) {
this.adminAddress = address; this.adminAddress = address;
@ -513,7 +513,7 @@ public class Router extends CompositeService {
/** /**
* Sets a unique ID for this router. * Sets a unique ID for this router.
* *
* @param router Identifier of the Router. * @param id Identifier of the Router.
*/ */
public void setRouterId(String id) { public void setRouterId(String id) {
this.routerId = id; this.routerId = id;

View File

@ -264,7 +264,7 @@ public class RouterRpcClient {
/** /**
* If we should retry the RPC call. * If we should retry the RPC call.
* *
* @param ex Exception reported. * @param ioe IOException reported.
* @param retryCount Number of retries. * @param retryCount Number of retries.
* @return Retry decision. * @return Retry decision.
* @throws IOException Original exception if the retry policy generates one. * @throws IOException Original exception if the retry policy generates one.
@ -675,8 +675,8 @@ public class RouterRpcClient {
/** /**
* Checks if a result matches the required result class. * Checks if a result matches the required result class.
* *
* @param expectedResultClass Required result class, null to skip the check. * @param expectedClass Required result class, null to skip the check.
* @param result The result to check. * @param clazz The result to check.
* @return True if the result is an instance of the required class or if the * @return True if the result is an instance of the required class or if the
* expected class is null. * expected class is null.
*/ */
@ -693,8 +693,8 @@ public class RouterRpcClient {
/** /**
* Checks if a result matches the expected value. * Checks if a result matches the expected value.
* *
* @param expectedResultValue The expected value, null to skip the check. * @param expectedValue The expected value, null to skip the check.
* @param result The result to check. * @param value The result to check.
* @return True if the result is equals to the expected value or if the * @return True if the result is equals to the expected value or if the
* expected value is null. * expected value is null.
*/ */
@ -717,7 +717,7 @@ public class RouterRpcClient {
* *
* @param <T> The type of the remote location. * @param <T> The type of the remote location.
* @param locations List of remote locations to call concurrently. * @param locations List of remote locations to call concurrently.
* @param remoteMethod The remote method and parameters to invoke. * @param method The remote method and parameters to invoke.
* @param requireResponse If true an exception will be thrown if all calls do * @param requireResponse If true an exception will be thrown if all calls do
* not complete. If false exceptions are ignored and all data results * not complete. If false exceptions are ignored and all data results
* successfully received are returned. * successfully received are returned.
@ -740,12 +740,12 @@ public class RouterRpcClient {
* RemoteException or IOException. * RemoteException or IOException.
* *
* @param locations List of remote locations to call concurrently. * @param locations List of remote locations to call concurrently.
* @param remoteMethod The remote method and parameters to invoke. * @param method The remote method and parameters to invoke.
* @param requireResponse If true an exception will be thrown if all calls do * @param requireResponse If true an exception will be thrown if all calls do
* not complete. If false exceptions are ignored and all data results * not complete. If false exceptions are ignored and all data results
* successfully received are returned. * successfully received are returned.
* @param standby If the requests should go to the standby namenodes too. * @param standby If the requests should go to the standby namenodes too.
* @param timeoutMs Timeout for each individual call. * @param timeOutMs Timeout for each individual call.
* @return Result of invoking the method per subcluster: nsId -> result. * @return Result of invoking the method per subcluster: nsId -> result.
* @throws IOException If requiredResponse=true and any of the calls throw an * @throws IOException If requiredResponse=true and any of the calls throw an
* exception. * exception.
@ -877,7 +877,7 @@ public class RouterRpcClient {
* Get a prioritized list of NNs that share the same nameservice ID (in the * Get a prioritized list of NNs that share the same nameservice ID (in the
* same namespace). NNs that are reported as ACTIVE will be first in the list. * same namespace). NNs that are reported as ACTIVE will be first in the list.
* *
* @param nameserviceId The nameservice ID for the namespace. * @param nsId The nameservice ID for the namespace.
* @return A prioritized list of NNs to use for communication. * @return A prioritized list of NNs to use for communication.
* @throws IOException If a NN cannot be located for the nameservice ID. * @throws IOException If a NN cannot be located for the nameservice ID.
*/ */
@ -898,7 +898,7 @@ public class RouterRpcClient {
* Get a prioritized list of NNs that share the same block pool ID (in the * Get a prioritized list of NNs that share the same block pool ID (in the
* same namespace). NNs that are reported as ACTIVE will be first in the list. * same namespace). NNs that are reported as ACTIVE will be first in the list.
* *
* @param blockPoolId The blockpool ID for the namespace. * @param bpId The blockpool ID for the namespace.
* @return A prioritized list of NNs to use for communication. * @return A prioritized list of NNs to use for communication.
* @throws IOException If a NN cannot be located for the block pool ID. * @throws IOException If a NN cannot be located for the block pool ID.
*/ */
@ -929,4 +929,4 @@ public class RouterRpcClient {
FederationNamenodeContext namenode = namenodes.get(0); FederationNamenodeContext namenode = namenodes.get(0);
return namenode.getNameserviceId(); return namenode.getNameserviceId();
} }
} }

View File

@ -1390,7 +1390,7 @@ public class RouterRpcServer extends AbstractService implements ClientProtocol {
/** /**
* Aggregate content summaries for each subcluster. * Aggregate content summaries for each subcluster.
* *
* @param results Collection of individual summaries. * @param summaries Collection of individual summaries.
* @return Aggregated content summary. * @return Aggregated content summary.
*/ */
private ContentSummary aggregateContentSummary( private ContentSummary aggregateContentSummary(
@ -1999,7 +1999,7 @@ public class RouterRpcServer extends AbstractService implements ClientProtocol {
* *
* @param name Name of the mount point. * @param name Name of the mount point.
* @param childrenNum Number of children. * @param childrenNum Number of children.
* @param dates Map with the dates. * @param date Map with the dates.
* @return New HDFS file status representing a mount point. * @return New HDFS file status representing a mount point.
*/ */
private HdfsFileStatus getMountPointStatus( private HdfsFileStatus getMountPointStatus(

View File

@ -86,7 +86,7 @@ public abstract class CachedRecordStore<R extends BaseRecord>
* *
* @param clazz Class of the record to store. * @param clazz Class of the record to store.
* @param driver State Store driver. * @param driver State Store driver.
* @param override If the entries should be override if they expire * @param over If the entries should be override if they expire
*/ */
protected CachedRecordStore( protected CachedRecordStore(
Class<R> clazz, StateStoreDriver driver, boolean over) { Class<R> clazz, StateStoreDriver driver, boolean over) {
@ -167,7 +167,6 @@ public abstract class CachedRecordStore<R extends BaseRecord>
* expired state. * expired state.
* *
* @param query RecordQueryResult containing the data to be inspected. * @param query RecordQueryResult containing the data to be inspected.
* @param clazz Type of objects contained in the query.
* @throws IOException * @throws IOException
*/ */
public void overrideExpiredRecords(QueryResult<R> query) throws IOException { public void overrideExpiredRecords(QueryResult<R> query) throws IOException {
@ -194,9 +193,7 @@ public abstract class CachedRecordStore<R extends BaseRecord>
* Updates the state store with any record overrides we detected, such as an * Updates the state store with any record overrides we detected, such as an
* expired state. * expired state.
* *
* @param driver State store driver for the data store.
* @param record Record record to be updated. * @param record Record record to be updated.
* @param clazz Type of data record.
* @throws IOException * @throws IOException
*/ */
public void overrideExpiredRecord(R record) throws IOException { public void overrideExpiredRecord(R record) throws IOException {
@ -242,4 +239,4 @@ public abstract class CachedRecordStore<R extends BaseRecord>
this.readLock.unlock(); this.readLock.unlock();
} }
} }
} }

View File

@ -80,7 +80,7 @@ public abstract class RecordStore<R extends BaseRecord> {
/** /**
* Build a state store API implementation interface. * Build a state store API implementation interface.
* *
* @param interfaceClass The specific interface implementation to create * @param clazz The specific interface implementation to create
* @param driver The {@link StateStoreDriver} implementation in use. * @param driver The {@link StateStoreDriver} implementation in use.
* @return An initialized instance of the specified state store API * @return An initialized instance of the specified state store API
* implementation. * implementation.

View File

@ -128,9 +128,10 @@ public abstract class StateStoreDriver implements StateStoreRecordOperations {
/** /**
* Initialize storage for a single record class. * Initialize storage for a single record class.
* *
* @param name String reference of the record class to initialize, used to * @param className String reference of the record class to initialize,
* construct paths and file names for the record. Determined by * used to construct paths and file names for the record.
* configuration settings for the specific driver. * Determined by configuration settings for the specific
* driver.
* @param clazz Record type corresponding to the provided name. * @param clazz Record type corresponding to the provided name.
* @return True if successful, false otherwise. * @return True if successful, false otherwise.
*/ */
@ -199,4 +200,4 @@ public abstract class StateStoreDriver implements StateStoreRecordOperations {
} }
return hostname; return hostname;
} }
} }

View File

@ -192,7 +192,7 @@ public abstract class StateStoreFileBaseImpl
* Read all lines from a file and deserialize into the desired record type. * Read all lines from a file and deserialize into the desired record type.
* *
* @param reader Open handle for the file. * @param reader Open handle for the file.
* @param recordClass Record class to create. * @param clazz Record class to create.
* @param includeDates True if dateModified/dateCreated are serialized. * @param includeDates True if dateModified/dateCreated are serialized.
* @return List of records. * @return List of records.
* @throws IOException * @throws IOException
@ -250,7 +250,7 @@ public abstract class StateStoreFileBaseImpl
/** /**
* Overwrite the existing data with a new data set. * Overwrite the existing data with a new data set.
* *
* @param list List of records to write. * @param records List of records to write.
* @param writer BufferedWriter stream to write to. * @param writer BufferedWriter stream to write to.
* @return If the records were succesfully written. * @return If the records were succesfully written.
*/ */
@ -426,4 +426,4 @@ public abstract class StateStoreFileBaseImpl
boolean status = writeAll(emptyList, clazz); boolean status = writeAll(emptyList, clazz);
return status; return status;
} }
} }

View File

@ -98,7 +98,7 @@ public class StateStoreFileSystemImpl extends StateStoreFileBaseImpl {
/** /**
* Get the folder path for the record class' data. * Get the folder path for the record class' data.
* *
* @param cls Data record class. * @param clazz Data record class.
* @return Path of the folder containing the record class' data files. * @return Path of the folder containing the record class' data files.
*/ */
private Path getPathForClass(Class<? extends BaseRecord> clazz) { private Path getPathForClass(Class<? extends BaseRecord> clazz) {
@ -175,4 +175,4 @@ public class StateStoreFileSystemImpl extends StateStoreFileBaseImpl {
return null; return null;
} }
} }
} }

View File

@ -309,7 +309,8 @@ public class StateStoreZooKeeperImpl extends StateStoreSerializableImpl {
/** /**
* Creates a record from a string returned by ZooKeeper. * Creates a record from a string returned by ZooKeeper.
* *
* @param source Object from ZooKeeper. * @param data The data to write.
* @param stat Stat of the data record to create.
* @param clazz The data record type to create. * @param clazz The data record type to create.
* @return The created record. * @return The created record.
* @throws IOException * @throws IOException
@ -321,4 +322,4 @@ public class StateStoreZooKeeperImpl extends StateStoreSerializableImpl {
record.setDateModified(stat.getMtime()); record.setDateModified(stat.getMtime());
return record; return record;
} }
} }

View File

@ -267,8 +267,7 @@ public class MembershipStoreImpl
* majority value 2) Otherwise the first sorted entry in the set of all * majority value 2) Otherwise the first sorted entry in the set of all
* entries * entries
* *
* @param entries - Collection of state store record objects of the same type * @param records - Collection of state store record objects of the same type
* @param fieldName - Field name for the value to compare
* @return record that is most representative of the field name * @return record that is most representative of the field name
*/ */
private MembershipState getRepresentativeQuorum( private MembershipState getRepresentativeQuorum(
@ -308,4 +307,4 @@ public class MembershipStoreImpl
return null; return null;
} }
} }
} }