|
@@ -0,0 +1,158 @@
|
|
|
+/**
|
|
|
+ * Licensed to the Apache Software Foundation (ASF) under one
|
|
|
+ * or more contributor license agreements. See the NOTICE file
|
|
|
+ * distributed with this work for additional information
|
|
|
+ * regarding copyright ownership. The ASF licenses this file
|
|
|
+ * to you 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.
|
|
|
+ */
|
|
|
+package org.apache.hadoop.ha.protocolPB;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+
|
|
|
+import org.apache.hadoop.classification.InterfaceAudience;
|
|
|
+import org.apache.hadoop.classification.InterfaceStability;
|
|
|
+import org.apache.hadoop.ha.HAServiceProtocol;
|
|
|
+import org.apache.hadoop.ha.HAServiceProtocol.HAServiceState;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.GetServiceStateRequestProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.GetServiceStateResponseProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.HAServiceStateProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.MonitorHealthRequestProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.MonitorHealthResponseProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.ReadyToBecomeActiveRequestProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.ReadyToBecomeActiveResponseProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToActiveRequestProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToActiveResponseProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToStandbyRequestProto;
|
|
|
+import org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToStandbyResponseProto;
|
|
|
+import org.apache.hadoop.ipc.ProtocolSignature;
|
|
|
+import org.apache.hadoop.ipc.RPC;
|
|
|
+
|
|
|
+import com.google.protobuf.RpcController;
|
|
|
+import com.google.protobuf.ServiceException;
|
|
|
+
|
|
|
+/**
|
|
|
+ * This class is used on the server side. Calls come across the wire for the
|
|
|
+ * for protocol {@link HAServiceProtocolPB}.
|
|
|
+ * This class translates the PB data types
|
|
|
+ * to the native data types used inside the NN as specified in the generic
|
|
|
+ * ClientProtocol.
|
|
|
+ */
|
|
|
+@InterfaceAudience.Private
|
|
|
+@InterfaceStability.Stable
|
|
|
+public class HAServiceProtocolServerSideTranslatorPB implements
|
|
|
+ HAServiceProtocolPB {
|
|
|
+ private final HAServiceProtocol server;
|
|
|
+ private static final MonitorHealthResponseProto MONITOR_HEALTH_RESP =
|
|
|
+ MonitorHealthResponseProto.newBuilder().build();
|
|
|
+ private static final TransitionToActiveResponseProto TRANSITION_TO_ACTIVE_RESP =
|
|
|
+ TransitionToActiveResponseProto.newBuilder().build();
|
|
|
+ private static final TransitionToStandbyResponseProto TRANSITION_TO_STANDBY_RESP =
|
|
|
+ TransitionToStandbyResponseProto.newBuilder().build();
|
|
|
+
|
|
|
+ public HAServiceProtocolServerSideTranslatorPB(HAServiceProtocol server) {
|
|
|
+ this.server = server;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public MonitorHealthResponseProto monitorHealth(RpcController controller,
|
|
|
+ MonitorHealthRequestProto request) throws ServiceException {
|
|
|
+ try {
|
|
|
+ server.monitorHealth();
|
|
|
+ return MONITOR_HEALTH_RESP;
|
|
|
+ } catch(IOException e) {
|
|
|
+ throw new ServiceException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public TransitionToActiveResponseProto transitionToActive(
|
|
|
+ RpcController controller, TransitionToActiveRequestProto request)
|
|
|
+ throws ServiceException {
|
|
|
+ try {
|
|
|
+ server.transitionToActive();
|
|
|
+ return TRANSITION_TO_ACTIVE_RESP;
|
|
|
+ } catch(IOException e) {
|
|
|
+ throw new ServiceException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public TransitionToStandbyResponseProto transitionToStandby(
|
|
|
+ RpcController controller, TransitionToStandbyRequestProto request)
|
|
|
+ throws ServiceException {
|
|
|
+ try {
|
|
|
+ server.transitionToStandby();
|
|
|
+ return TRANSITION_TO_STANDBY_RESP;
|
|
|
+ } catch(IOException e) {
|
|
|
+ throw new ServiceException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GetServiceStateResponseProto getServiceState(RpcController controller,
|
|
|
+ GetServiceStateRequestProto request) throws ServiceException {
|
|
|
+ HAServiceState s;
|
|
|
+ try {
|
|
|
+ s = server.getServiceState();
|
|
|
+ } catch(IOException e) {
|
|
|
+ throw new ServiceException(e);
|
|
|
+ }
|
|
|
+
|
|
|
+ HAServiceStateProto ret;
|
|
|
+ switch (s) {
|
|
|
+ case ACTIVE:
|
|
|
+ ret = HAServiceStateProto.ACTIVE;
|
|
|
+ break;
|
|
|
+ case STANDBY:
|
|
|
+ ret = HAServiceStateProto.STANDBY;
|
|
|
+ break;
|
|
|
+ case INITIALIZING:
|
|
|
+ default:
|
|
|
+ ret = HAServiceStateProto.INITIALIZING;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ return GetServiceStateResponseProto.newBuilder().setState(ret).build();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public long getProtocolVersion(String protocol, long clientVersion)
|
|
|
+ throws IOException {
|
|
|
+ return RPC.getProtocolVersion(HAServiceProtocolPB.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ProtocolSignature getProtocolSignature(String protocol,
|
|
|
+ long clientVersion, int clientMethodsHash) throws IOException {
|
|
|
+ if (!protocol.equals(RPC.getProtocolName(HAServiceProtocolPB.class))) {
|
|
|
+ throw new IOException("Serverside implements " +
|
|
|
+ RPC.getProtocolName(HAServiceProtocolPB.class) +
|
|
|
+ ". The following requested protocol is unknown: " + protocol);
|
|
|
+ }
|
|
|
+
|
|
|
+ return ProtocolSignature.getProtocolSignature(clientMethodsHash,
|
|
|
+ RPC.getProtocolVersion(HAServiceProtocolPB.class),
|
|
|
+ HAServiceProtocolPB.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ReadyToBecomeActiveResponseProto readyToBecomeActive(
|
|
|
+ RpcController controller, ReadyToBecomeActiveRequestProto request)
|
|
|
+ throws ServiceException {
|
|
|
+ try {
|
|
|
+ return ReadyToBecomeActiveResponseProto.newBuilder()
|
|
|
+ .setReadyToBecomeActive(server.readyToBecomeActive()).build();
|
|
|
+ } catch (IOException e) {
|
|
|
+ throw new ServiceException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|