}
// launch master
List<String> groupSet = new ArrayList<String>();
groupSet.add(masterGroupName);
ReservationDescription master = _ec2.runInstances(_startAIM, 1, 1, groupSet, null, _keyName);
// polling until started wait at least 5 min
Ec2Instance masterInfo = waitForMaster(master, 5 * 60 * 1000);
if (masterInfo == null) {
throw new IOException("Master instance " + master + " did not boot up in time");