Class WrappedFailoverProxyProvider<T>

java.lang.Object
org.apache.hadoop.hdfs.server.namenode.ha.AbstractNNFailoverProxyProvider<T>
org.apache.hadoop.hdfs.server.namenode.ha.WrappedFailoverProxyProvider<T>
All Implemented Interfaces:
Closeable, AutoCloseable, org.apache.hadoop.io.retry.FailoverProxyProvider<T>

public class WrappedFailoverProxyProvider<T> extends AbstractNNFailoverProxyProvider<T>
A NNFailoverProxyProvider implementation which wrapps old implementations directly implementing the FailoverProxyProvider interface. It is assumed that the old impelmentation is using logical URI.
  • Constructor Details

    • WrappedFailoverProxyProvider

      public WrappedFailoverProxyProvider(org.apache.hadoop.io.retry.FailoverProxyProvider<T> provider)
      Wrap the given instance of an old FailoverProxyProvider.
  • Method Details

    • getInterface

      public Class<T> getInterface()
      Specified by:
      getInterface in interface org.apache.hadoop.io.retry.FailoverProxyProvider<T>
      Overrides:
      getInterface in class AbstractNNFailoverProxyProvider<T>
    • getProxy

      public org.apache.hadoop.io.retry.FailoverProxyProvider.ProxyInfo<T> getProxy()
    • performFailover

      public void performFailover(T currentProxy)
    • close

      public void close() throws IOException
      Close the proxy,
      Throws:
      IOException
    • useLogicalURI

      public boolean useLogicalURI()
      Assume logical URI is used for old proxy provider implementations.
      Specified by:
      useLogicalURI in class AbstractNNFailoverProxyProvider<T>
      Returns:
      true if logical HA URI is used. false, if not used.