diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/UpScalerSpark.java b/src/main/java/de/ugoe/cs/rwm/mocci/UpScalerSpark.java new file mode 100644 index 0000000000000000000000000000000000000000..da845c7f85977e859cc8a071b0169d724604df0c --- /dev/null +++ b/src/main/java/de/ugoe/cs/rwm/mocci/UpScalerSpark.java @@ -0,0 +1,347 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * <p> + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ + +package de.ugoe.cs.rwm.mocci; + +import java.nio.file.Path; + +import org.eclipse.cmf.occi.core.*; +import org.eclipse.cmf.occi.infrastructure.Compute; +import org.eclipse.cmf.occi.infrastructure.ComputeStatus; +import org.eclipse.emf.ecore.resource.Resource; +import org.modmacao.occi.platform.Application; +import org.modmacao.occi.platform.Component; +import org.modmacao.occi.platform.Componentlink; +import org.modmacao.placement.Placementlink; + +import de.ugoe.cs.rwm.docci.ModelUtility; +import de.ugoe.cs.rwm.docci.connector.Connector; +import monitoring.*; + +public class UpScalerSpark extends AbsScaler { + private String index; + + public UpScalerSpark(Connector conn, Path runtimePath) { + this.conn = conn; + this.runtimePath = runtimePath; + } + + public Resource upScaleNodes() { + runtimeModel = ModelUtility.loadOCCIintoEMFResource(conn.loadRuntimeModel(runtimePath)); + Configuration config = ((Configuration) runtimeModel.getContents().get(0)); + + Compute comp = addCompute(config); + Component worker = addWorkerComponent(config, comp); + Sensor sens = addSensor(config, comp); + Datagatherer dg = addDataGatherer(config, comp, sens); + Dataprocessor dp = addDataProcessor(config, comp, sens, dg); + Resultprovider rp = addResultProvider(config, comp, sens, dp); + + config.getResources().add(comp); + config.getResources().add(worker); + config.getResources().add(sens); + config.getResources().add(rp); + + return runtimeModel; + } + + private Compute addCompute(Configuration config) { + System.out.println(" Adding Compute Node to Model"); + Compute comp = iFactory.createCompute(); + comp.setOcciComputeState(ComputeStatus.ACTIVE); + + AttributeState state = factory.createAttributeState(); + state.setName("occi.compute.state"); + state.setValue("active"); + comp.getAttributes().add(state); + config.getResources().add(comp); + + index = Integer.toString(getIndex(config)); + comp.setTitle("Hadoop-worker-" + index); + + AttributeState hostname = factory.createAttributeState(); + hostname.setName("occi.compute.hostname"); + hostname.setValue("Hadoop-worker-" + index); + comp.getAttributes().add(hostname); + System.out.println(" " + comp.getTitle()); + + return comp; + } + + private int getIndex(Configuration config) { + int max = 1; + int i = 0; + for (org.eclipse.cmf.occi.core.Resource res : config.getResources()) { + if (res instanceof Compute) { + if (res.getTitle() != null && res.getTitle().contains("worker")) { + i = Integer.valueOf(getIndexOf((Compute) res)); + if (i > max) { + max = i; + } + } + } + } + return max + 1; + } + + private String getIndexOf(Compute res) { + String[] arr = res.getTitle().split("-"); + return arr[arr.length - 1]; + } + + private Component addWorkerComponent(Configuration config, Compute comp) { + System.out.println(" Adding Worker Component to Model"); + Component worker = pFactory.createComponent(); + worker.setTitle("hWorker"); + config.getResources().add(worker); + + AttributeState attr = factory.createAttributeState(); + attr.setName("occi.core.id"); + attr.setValue(worker.getId()); + worker.getAttributes().add(attr); + + MixinBase mBase = factory.createMixinBase(); + mBase.setMixin(getMixin("hadoop-worker", config)); + worker.getParts().add(mBase); + + Placementlink pLink = placeFactory.createPlacementlink(); + pLink.setSource(worker); + pLink.setTarget(comp); + + Componentlink compLink = pFactory.createComponentlink(); + compLink.setSource(getResourceById(config.getResources(), getApplicationId(config))); + compLink.setTarget(worker); + + Componentlink compLinkToMaster = pFactory.createComponentlink(); + Component master = getMaster(config); + + compLinkToMaster.setSource(getResourceById(config.getResources(), master.getId())); + compLinkToMaster.setTarget(worker); + + MixinBase mBase2 = factory.createMixinBase(); + mBase2.setMixin(getExecDepFromMaster(master)); + compLinkToMaster.getParts().add(mBase2); + + MAPE.newComp = worker; + return worker; + } + + private Mixin getExecDepFromMaster(Component master) { + for (Link link : master.getLinks()) { + if (link instanceof Componentlink) { + for (MixinBase mixB : link.getParts()) { + if (mixB.getMixin().getTerm().toLowerCase().equals("executiondependency")) { + return mixB.getMixin(); + } + } + } + } + return null; + } + + private String getMasterId(Configuration config) { + for (org.eclipse.cmf.occi.core.Resource res : config.getResources()) { + if (res instanceof Component) { + if (res.getTitle().toLowerCase().contains("master")) { + return res.getId(); + } + } + } + return ""; + } + + private Component getMaster(Configuration config) { + for (org.eclipse.cmf.occi.core.Resource res : config.getResources()) { + if (res instanceof Component) { + if (res.getTitle().toLowerCase().contains("master")) { + return (Component) res; + } + } + } + return null; + } + + private String getApplicationId(Configuration config) { + for (org.eclipse.cmf.occi.core.Resource res : config.getResources()) { + if (res instanceof Application) { + if (res.getTitle().toLowerCase().contains("hadoop")) { + return res.getId(); + } + } + } + return ""; + } + + private Sensor addSensor(Configuration config, Compute comp) { + System.out.println(" Adding Sensor to Model"); + Sensor sens = mFactory.createSensor(); + sens.setTitle("sensor"); + AttributeState attrName = factory.createAttributeState(); + attrName.setName("occi.app.name"); + attrName.setValue("sensor"); + sens.getAttributes().add(attrName); + + AttributeState attrContext = factory.createAttributeState(); + attrContext.setName("occi.app.context"); + attrContext.setValue("http://www.de"); + sens.getAttributes().add(attrContext); + + AttributeState attrUrl = factory.createAttributeState(); + attrUrl.setName("occi.app.url"); + attrUrl.setValue("http://www.de"); + sens.getAttributes().add(attrUrl); + + AttributeState attr = factory.createAttributeState(); + attr.setName("occi.core.id"); + attr.setValue(sens.getId()); + sens.getAttributes().add(attr); + + Monitorableproperty mp = mFactory.createMonitorableproperty(); + mp.setTitle("monProp"); + mp.setMonitoringProperty("CPU"); + AttributeState attrProp = factory.createAttributeState(); + attrProp.setName("monitoring.property"); + attrProp.setValue("CPU"); + mp.getAttributes().add(attrProp); + mp.setSource(sens); + mp.setTarget(comp); + + config.getResources().add(sens); + + return sens; + } + + private Datagatherer addDataGatherer(Configuration config, Compute comp, Sensor sens) { + System.out.println(" Adding Datagatherer to Model"); + Datagatherer dg = mFactory.createDatagatherer(); + dg.setTitle("glances"); + config.getResources().add(dg); + + AttributeState attr = factory.createAttributeState(); + attr.setName("occi.core.id"); + attr.setValue(dg.getId()); + dg.getAttributes().add(attr); + + MixinBase mBase = factory.createMixinBase(); + mBase.setMixin(getMixin("cpugatherer", config)); + dg.getParts().add(mBase); + + Componentlink c1 = pFactory.createComponentlink(); + c1.setSource(sens); + c1.setTarget(dg); + + Placementlink pl = placeFactory.createPlacementlink(); + pl.setSource(dg); + pl.setTarget(comp); + + return dg; + } + + private Dataprocessor addDataProcessor(Configuration config, Compute comp, Sensor sens, Datagatherer dg) { + System.out.println(" Adding Dataprocessor to Model"); + Dataprocessor dp = mFactory.createDataprocessor(); + dp.setTitle("dataprocessor"); + config.getResources().add(dp); + + AttributeState attr = factory.createAttributeState(); + attr.setName("occi.core.id"); + attr.setValue(dp.getId()); + dp.getAttributes().add(attr); + + MixinBase mBase = factory.createMixinBase(); + mBase.setMixin(getMixin("cpuprocessor", config)); + dp.getParts().add(mBase); + + Componentlink c2 = pFactory.createComponentlink(); + c2.setSource(sens); + c2.setTarget(dp); + Placementlink pl = placeFactory.createPlacementlink(); + pl.setSource(dp); + + Compute monVM = getMonVM(config); + if (monVM == null) { + monVM = comp; + } + pl.setTarget(monVM); + + Componentlink cl = pFactory.createComponentlink(); + cl.setSource(dp); + cl.setTarget(dg); + return dp; + } + + private Resultprovider addResultProvider(Configuration config, Compute comp, Sensor sens, Dataprocessor dp) { + System.out.println(" Adding Resultprovider to Model"); + Resultprovider rp = mFactory.createResultprovider(); + rp.setTitle("resultprovider"); + config.getResources().add(rp); + + Occiresultprovider orp = mFactory.createOcciresultprovider(); + orp.setResultProviderEndpoint("192.168.35.45:8080"); + AttributeState attrOP = factory.createAttributeState(); + attrOP.setName("result.provider.endpoint"); + attrOP.setValue("192.168.35.45:8080"); + rp.getAttributes().add(attrOP); + + rp.getParts().add(orp); + + MixinBase mBase = factory.createMixinBase(); + mBase.setMixin(getMixin("cpupublisher", config)); + rp.getParts().add(mBase); + + AttributeState attr = factory.createAttributeState(); + attr.setName("occi.core.id"); + attr.setValue(rp.getId()); + rp.getAttributes().add(attr); + + Componentlink c3 = pFactory.createComponentlink(); + c3.setSource(sens); + c3.setTarget(rp); + + Componentlink cl = pFactory.createComponentlink(); + cl.setSource(rp); + cl.setTarget(dp); + + Placementlink pl = placeFactory.createPlacementlink(); + pl.setSource(rp); + Compute monVM = getMonVM(config); + if (monVM == null) { + monVM = comp; + } + pl.setTarget(monVM); + + return rp; + } + + private Mixin getMixin(String string, Configuration config) { + for (Mixin mix : config.getMixins()) { + if (mix.getTerm().equals(string)) { + return mix; + } + } + return null; + } + + private Compute getMonVM(Configuration config) { + for (org.eclipse.cmf.occi.core.Resource res : config.getResources()) { + if (res instanceof Compute) { + Compute comp = (Compute) res; + for (Link rlink : comp.getRlinks()) { + if (rlink instanceof Placementlink && (rlink.getSource() instanceof Dataprocessor + || rlink.getSource() instanceof Resultprovider)) { + return comp; + } + } + } + } + return null; + } +}