blob: 937f648510c00ae866e2e57fff31362cd2d41944 [file] [log] [blame]
/**
* 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.yarn.server.api;
import java.io.IOException;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.yarn.exceptions.YarnException;
import org.apache.hadoop.yarn.server.api.protocolrecords.SCMUploaderCanUploadRequest;
import org.apache.hadoop.yarn.server.api.protocolrecords.SCMUploaderCanUploadResponse;
import org.apache.hadoop.yarn.server.api.protocolrecords.SCMUploaderNotifyRequest;
import org.apache.hadoop.yarn.server.api.protocolrecords.SCMUploaderNotifyResponse;
/**
* <p>
* The protocol between a <code>NodeManager's</code>
* <code>SharedCacheUploadService</code> and the
* <code>SharedCacheManager.</code>
* </p>
*/
@Private
@Unstable
public interface SCMUploaderProtocol {
/**
* <p>
* The method used by the NodeManager's <code>SharedCacheUploadService</code>
* to notify the shared cache manager of a newly cached resource.
* </p>
*
* <p>
* The <code>SharedCacheManager</code> responds with whether or not the
* NodeManager should delete the uploaded file.
* </p>
*
* @param request notify the shared cache manager of a newly uploaded resource
* to the shared cache
* @return response indicating if the newly uploaded resource should be
* deleted
* @throws YarnException
* @throws IOException
*/
public SCMUploaderNotifyResponse
notify(SCMUploaderNotifyRequest request)
throws YarnException, IOException;
/**
* <p>
* The method used by the NodeManager's <code>SharedCacheUploadService</code>
* to request whether a resource can be uploaded.
* </p>
*
* <p>
* The <code>SharedCacheManager</code> responds with whether or not the
* NodeManager can upload the file.
* </p>
*
* @param request whether the resource can be uploaded to the shared cache
* @return response indicating if resource can be uploaded to the shared cache
* @throws YarnException
* @throws IOException
*/
public SCMUploaderCanUploadResponse
canUpload(SCMUploaderCanUploadRequest request)
throws YarnException, IOException;
}