blob: 9ce868606e6453d3a05151ff9dc6ae2d59301c67 [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.beam.examples.subprocess.utils;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.Semaphore;
import org.apache.beam.examples.subprocess.configuration.SubProcessConfiguration;
import org.apache.beam.vendor.guava.v20_0.com.google.common.collect.Sets;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Utility class for dealing with concurrency and binary file copies to the worker. */
public class CallingSubProcessUtils {
// Prevent Instantiation
private CallingSubProcessUtils() {}
static final Logger LOG = LoggerFactory.getLogger(CallingSubProcessUtils.class);
static boolean initCompleted = false;
// Allow multiple subclasses to create files, but only one thread per subclass can add the file to
// the worker
private static final Set<String> downloadedFiles = Sets.<String>newConcurrentHashSet();
// Limit the number of threads able to do work
private static Map<String, Semaphore> semaphores = new ConcurrentHashMap<>();
public static void setUp(SubProcessConfiguration configuration, String binaryName)
throws Exception {
if (!semaphores.containsKey(binaryName)) {
initSemaphore(configuration.getConcurrency(), binaryName);
}
synchronized (downloadedFiles) {
if (!downloadedFiles.contains(binaryName)) {
// Create Directories if needed
FileUtils.createDirectoriesOnWorker(configuration);
LOG.info("Calling filesetup to move Executables to worker.");
ExecutableFile executableFile = new ExecutableFile(configuration, binaryName);
FileUtils.copyFileFromGCSToWorker(executableFile);
downloadedFiles.add(binaryName);
}
}
}
public static synchronized void initSemaphore(Integer permits, String binaryName) {
if (!semaphores.containsKey(binaryName)) {
LOG.info(String.format(String.format("Initialized Semaphore for binary %s ", binaryName)));
semaphores.put(binaryName, new Semaphore(permits));
}
}
private static void aquireSemaphore(String binaryName) throws IllegalStateException {
if (!semaphores.containsKey(binaryName)) {
throw new IllegalStateException("Semaphore is NULL, check init logic in @Setup.");
}
try {
semaphores.get(binaryName).acquire();
} catch (InterruptedException ex) {
LOG.error("Interupted during aquire", ex);
}
}
private static void releaseSemaphore(String binaryName) throws IllegalStateException {
if (!semaphores.containsKey(binaryName)) {
throw new IllegalStateException("Semaphore is NULL, check init logic in @Setup.");
}
semaphores.get(binaryName).release();
}
/** Permit class for access to worker cpu resources. */
public static class Permit implements AutoCloseable {
private String binaryName;
public Permit(String binaryName) {
this.binaryName = binaryName;
CallingSubProcessUtils.aquireSemaphore(binaryName);
}
@Override
public void close() {
CallingSubProcessUtils.releaseSemaphore(binaryName);
}
}
}