You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2016/03/09 20:02:50 UTC

svn commit: r1734298 - /uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java

Author: cwiklik
Date: Wed Mar  9 19:02:50 2016
New Revision: 1734298

URL: http://svn.apache.org/viewvc?rev=1734298&view=rev
Log:
UIMA-4831 utility to test cgroup creation

Added:
    uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java   (with props)

Added: uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java?rev=1734298&view=auto
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java (added)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java Wed Mar  9 19:02:50 2016
@@ -0,0 +1,145 @@
+/*
+ * 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.uima.ducc.agent.launcher;
+
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+import java.util.concurrent.Future;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+import org.apache.uima.ducc.agent.NodeAgent;
+import org.apache.uima.ducc.common.utils.DuccLogger;
+import org.apache.uima.ducc.common.utils.id.DuccIdFactory;
+
+
+public class CGroupsTest {
+	 public static DuccLogger logger = DuccLogger.getLogger(NodeAgent.class, "CGroupsTest");
+	 CGroupsManager cgroupsManager = null;
+	 DuccIdFactory idFactory = null;
+	 Lock lock = new ReentrantLock();
+	 
+	public static void main(String[] args) {
+		try {
+			CGroupsTest tester = new CGroupsTest();
+			tester.initialize();
+			if ( args.length > 1) {
+				// run concurrent threads 
+				tester.run(Long.parseLong(args[0]), true);
+			} else {
+				// run sequentially 
+				tester.run(Long.parseLong(args[0]), false);
+			}
+		} catch( Exception e) {
+			e.printStackTrace();
+		}
+	}
+	public void run(long howMany, boolean concurrent) {
+		try {
+			CGroupsTest tester = new CGroupsTest();
+			tester.initialize();
+			ExecutorService executor = Executors.newCachedThreadPool();
+			// more than 1 arg to this program = concurrent
+			if ( concurrent ) {
+				for (int i = 0; i < howMany; i++) {
+					WorkerThread t = new WorkerThread();
+					executor.execute(t);
+					// if the wait below is removed, cgroup creation fails
+					synchronized(t) {
+						// NOTE: waiting for 100ms seems to make cgcreate working.
+						// Tested 10ms and got a failure to create cgroup. Weird.
+						t.wait(100);
+					}
+				}
+			} else {
+				for (int i = 0; i < howMany; i++) {
+					WorkerThread t = new WorkerThread();
+					Future<?> f = executor.submit(t);
+					f.get();
+
+				}
+			}
+			executor.shutdownNow();
+		} catch( Exception e) {
+			e.printStackTrace();
+		}
+		
+	}
+	public void initialize() throws Exception {
+
+		idFactory = new DuccIdFactory(null,null);
+		String cgroupsUtilsDirs = System.getProperty("ducc.agent.launcher.cgroups.utils.dir");
+      	String cgUtilsPath=null;
+      	if (cgroupsUtilsDirs == null) {
+        	cgUtilsPath = "/bin";  // default
+        } 
+        // get the top level cgroup folder from ducc.properties. If
+        // not defined, use /cgroup/ducc as default
+        String cgroupsBaseDir = System.getProperty("ducc.agent.launcher.cgroups.basedir");
+        if (cgroupsBaseDir == null) {
+          cgroupsBaseDir = "/cgroup/ducc";
+        }
+        // get the cgroup subsystems. If not defined, default to the
+        // memory and cpu subsystem
+        String cgroupsSubsystems = System.getProperty("ducc.agent.launcher.cgroups.subsystems");
+        if (cgroupsSubsystems == null) {
+          cgroupsSubsystems = "memory,cpu";
+        }
+		long maxTimeToWaitForProcessToStop = 60000; // default 1 minute
+
+		cgroupsManager = 
+				new CGroupsManager(cgUtilsPath, cgroupsBaseDir, cgroupsSubsystems, logger, maxTimeToWaitForProcessToStop);
+
+		
+	}
+	
+	public class WorkerThread implements Runnable {
+		public WorkerThread() {
+			
+		}
+	public void run() {
+		try {
+			String containerId;
+			lock.lock();
+			containerId = idFactory.next().toString()+"."+idFactory.next().toString();
+			
+			System.out.println(">>>> Thread::"+Thread.currentThread().getId()+" creating cgroup with id:"+containerId);
+			if ( !cgroupsManager.createContainer(containerId, "cwiklik", true) ) {
+				System.out.println("Thread::"+Thread.currentThread().getId()+" Failure to create cgroup with id:"+containerId);
+				System.exit(-1);
+				
+			} else {
+				if ( cgroupsManager.cgroupExists(cgroupsManager.getDuccCGroupBaseDir() + "/" + containerId) ) {
+					System.out.println("Thread::"+Thread.currentThread().getId()+" Success creating cgroup with id:"+containerId);
+				} else {
+					System.out.println("Failed to validate existance of cgroup with id:"+containerId);
+					System.exit(-1);
+				}
+			}
+			cgroupsManager.destroyContainer(containerId, "cwiklik", NodeAgent.SIGTERM);
+			System.out.println("Cgroup "+containerId+" Removed");
+		} catch( Exception e ) {
+			e.printStackTrace();
+			//System.exit(-1);
+		} finally {
+			lock.unlock();
+		}
+	}
+	}
+}

Propchange: uima/sandbox/uima-ducc/trunk/uima-ducc-agent/src/main/java/org/apache/uima/ducc/agent/launcher/CGroupsTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain