Difference between revisions of "How to use the Data Miner Pool Manager"

From Gcube Wiki
Jump to: navigation, search
(Usage and APIs)
 
(22 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
In such sense, the service accepts as input, among the others, the url of an algorithm package (including jar, and metadata), extracts the information needed to installation, installs the script, update the list of dependencies, optionally publishs the new algorithm in the Information System and returns asynchronously the execution outcome to the caller.
 
In such sense, the service accepts as input, among the others, the url of an algorithm package (including jar, and metadata), extracts the information needed to installation, installs the script, update the list of dependencies, optionally publishs the new algorithm in the Information System and returns asynchronously the execution outcome to the caller.
  
==Testing==
+
== Maven coordinates ==
 +
The maven artifact coordinates are:
 +
<dependency>
 +
    <groupId>org.gcube.dataanalysis</groupId>
 +
    <artifactId>dataminer-pool-manager</artifactId>
 +
    <version>1.0.0-SNAPSHOT</version>
 +
    <packaging>war</packaging>
 +
</dependency>
  
DMPM is a SmartGear compliant service. In such sense, an instance has already been deployed and configured at Development level.
+
==Configuration and Testing==
 +
 
 +
DMPM is a SmartGears compliant service.  
 +
 
 +
<source lang="text">
 +
/home/gcube/SmartGears-Bundle/tomcat/webapps/dataminer-pool-manager-1.0.0-SNAPSHOT
 +
</source>
 +
 
 +
In such sense, an instance has already been deployed and configured at Development level.
  
 
<source lang="text">
 
<source lang="text">
 
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/
 
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/
 +
</source>
 +
 +
Such environment contains the configurations for ansible playbook, inventory and roles for algorithm installer, scripts, algorithms, dependencies and the logs of the execution.
 +
 +
<source lang="text">
 +
/home/gcube/gcube/dataminer-pool-manager/custom      // static directory
 +
/home/gcube/gcube/dataminer-pool-manager/static      // static directory
 +
/home/gcube/gcube/dataminer-pool-manager/templates  // static directory
 +
/home/gcube/gcube/dataminer-pool-manager/work        // dinamically generated directory
 
</source>
 
</source>
  
Line 36: Line 60:
  
 
<source lang="java">
 
<source lang="java">
addAlgorithmToHost(algorithm, hostname, name, description, category, algorithmType, skipJava, publish);
+
addAlgorithmToHost(algorithm, hostname, name, description, category, algorithmType, skipJava, publish, updateSVN);
 
</source>
 
</source>
  
Line 52: Line 76:
 
@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
 
@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
 
@DefaultValue("N") @QueryParam("skipJava") String skipJava,
 
@DefaultValue("N") @QueryParam("skipJava") String skipJava,
@DefaultValue("false") @QueryParam("publish") boolean publish)
+
@DefaultValue("false") @QueryParam("publish") boolean publish,
 +
@DefaultValue("false") @QueryParam("updateSVN") boolean updateSVN)
 
throws IOException, InterruptedException, SVNException {
 
throws IOException, InterruptedException, SVNException {
 
Algorithm algo = this.getAlgorithm(algorithm, null, hostname, name, description, category, algorithmType,
 
Algorithm algo = this.getAlgorithm(algorithm, null, hostname, name, description, category, algorithmType,
 
skipJava);
 
skipJava);
 
// publish algo
 
// publish algo
 +
 
if (publish) {
 
if (publish) {
 
service.addAlgToIs(algo);
 
service.addAlgToIs(algo);
 
}
 
}
  
// update svn
+
return service.addAlgorithmToHost(algo, hostname, updateSVN);
for (Dependency d : algo.getDependencies()) {
+
 
+
if (d.getType().equals("os")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_deb_pkgs.txt", ls);
+
}
+
if (d.getType().equals("cran")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_cran_pkgs.txt", ls);
+
}
+
if (d.getType().equals("github")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_github_pkgs.txt", ls);
+
}
+
}
+
return service.addAlgorithmToHost(algo, hostname);
+
 
}
 
}
 
</source>
 
</source>
Line 97: Line 104:
 
** '''algorithmType''': by default set to "transducerers"
 
** '''algorithmType''': by default set to "transducerers"
 
** '''skipJava''': by default set to "N"
 
** '''skipJava''': by default set to "N"
** '''publish''': by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the publishing in the IS of the deployed algorithm at caller scope level.
+
** '''publish''': by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the registration in the IS of the deployed algorithm at caller scope level. The algorithm will be registered as Generic Resource.
 
+
** '''updateSVN''': by default set to "false"; If the package contains dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, the caller can set such parameter to true and they will be added to such lists in the related files by using the default svn credentials of the caller (~/.subversion folder). The update happens only at the end of the process, when the algorithm has been successfully deployed
 
+
If the package contain dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, they will be added to such lists in the related files.  
+
  
 
An example of the usage is the following:
 
An example of the usage is the following:
Line 115: Line 120:
  
 
<source lang="java">
 
<source lang="java">
addAlgorithmToVRE(algorithm, name, description, category, algorithmType, skipJava, publish);
+
addAlgorithmToVRE(algorithm, name, description, category, algorithmType, skipJava, publish, updateSVN);
 
</source>
 
</source>
  
Line 130: Line 135:
 
@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
 
@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
 
@DefaultValue("N") @QueryParam("skipJava") String skipJava,
 
@DefaultValue("N") @QueryParam("skipJava") String skipJava,
@DefaultValue("false") @QueryParam("publish") boolean publish)
+
@DefaultValue("false") @QueryParam("publish") boolean publish,
 +
@DefaultValue("false") @QueryParam("updateSVN") boolean updateSVN)
 
throws IOException, InterruptedException, SVNException {
 
throws IOException, InterruptedException, SVNException {
 
Algorithm algo = this.getAlgorithm(algorithm, /*vre*/null, null, name, description, category, algorithmType, skipJava);
 
Algorithm algo = this.getAlgorithm(algorithm, /*vre*/null, null, name, description, category, algorithmType, skipJava);
Line 138: Line 144:
 
service.addAlgToIs(algo);
 
service.addAlgToIs(algo);
 
}
 
}
 
+
// update svn
+
return service.addAlgorithmToVRE(algo, ScopeProvider.instance.get(),updateSVN);
for (Dependency d : algo.getDependencies()) {
+
 
+
if (d.getType().equals("os")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_deb_pkgs.txt", ls);
+
}
+
if (d.getType().equals("cran")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_cran_pkgs.txt", ls);
+
}
+
if (d.getType().equals("github")) {
+
List<String> ls = new LinkedList<String>();
+
ls.add(d.getName());
+
service.updateSVN("r_github_pkgs.txt", ls);
+
}
+
}
+
 
+
return service.addAlgorithmToVRE(algo, ScopeProvider.instance.get());
+
 
}
 
}
 
</source>
 
</source>
Line 168: Line 154:
 
* Mandatories:
 
* Mandatories:
 
** '''algorithm''': URL related the package of the Algorithm; such parameter is mandatory.
 
** '''algorithm''': URL related the package of the Algorithm; such parameter is mandatory.
** '''hostname''': the hostname of the DataMiner on which deploy the script; such parameter is mandatory.
 
  
 
* Optionals (The overall set of parameters, except the mandatory ones. can be extract from the metadata file (where available), or overwritten by the caller):
 
* Optionals (The overall set of parameters, except the mandatory ones. can be extract from the metadata file (where available), or overwritten by the caller):
Line 176: Line 161:
 
** '''algorithmType''': by default set to "transducerers"
 
** '''algorithmType''': by default set to "transducerers"
 
** '''skipJava''': by default set to "N"
 
** '''skipJava''': by default set to "N"
** '''publish''': by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the publishing in the IS of the deployed algorithm at caller scope level.
+
** '''publish''': by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the registration in the IS of the deployed algorithm at caller scope level. The algorithm will be registered as Generic Resource.
 
+
** '''updateSVN''': by default set to "false"; If the package contains dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, the caller can set such parameter to true and they will be added to such lists in the related files by using the default svn credentials of the caller (~/.subversion folder). The update happens only at the end of the process, when the algorithm has been successfully deployed
 
+
If the package contain dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, they will be added to such lists in the related files.  
+
  
 
An example of the usage is the following:
 
An example of the usage is the following:
 
<source lang ="text">
 
<source lang ="text">
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/hosts/add?gcube-token=TOKEN_ID&algorithm=URL_TP_ALGORITHM&hostname=TARGET_DATAMINER
+
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/hosts/add?gcube-token=TOKEN_ID&algorithm=URL_TP_ALGORITHM
 
</source>
 
</source>
  
Line 212: Line 195:
 
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/log?gcube-token=TOKEN_ID&logUrl=LOG_ID
 
http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/log?gcube-token=TOKEN_ID&logUrl=LOG_ID
 
</source>
 
</source>
 
==Next Steps==
 
* Add a functionality able to automatically retrieve the set of dataMiners in a cluster from the Hproxy, in order to allow the deploy of an algorithm to the set of DataMiners available in a particular VRE (e.g., RProtoLab) --> '''waiting for HAproxy normalization (to update documentation)'''
 
* Add a functionality able to update the svn lists (by using the default svn credentials of the caller) related to dependencies (according to typology, if a dependency is present in a package but not in the SVN list, the SVN page will contain also the missing ones). --> '''done (to update documentation)'''
 
* Add an optional functionality able to register an algorithm in the IS (VRE scope) --> '''done (to update documentation)
 
'''
 

Latest revision as of 19:39, 22 April 2017

DataMiner Pool Manager

DataMiner Pool Manager service, aka DMPM, is a REST service able to rationalize and automatize the current process for publishing SAI algorithms on DataMiner nodes and keep DataMiner cluster updated.

Overview

The service may accept an algorithm descriptor, including its dependencies (either OS, R and custom packages), queries the IS for dataminers in the current scope, generates (via templating) ansible playbook, inventory and roles for relevant stuff (algorithm installer, algorithms, dependencies), executes ansible playbook on a DataMiner.

In such sense, the service accepts as input, among the others, the url of an algorithm package (including jar, and metadata), extracts the information needed to installation, installs the script, update the list of dependencies, optionally publishs the new algorithm in the Information System and returns asynchronously the execution outcome to the caller.

Maven coordinates

The maven artifact coordinates are:

<dependency>
   <groupId>org.gcube.dataanalysis</groupId>
   <artifactId>dataminer-pool-manager</artifactId>
   <version>1.0.0-SNAPSHOT</version> 
   <packaging>war</packaging>
</dependency>

Configuration and Testing

DMPM is a SmartGears compliant service.

/home/gcube/SmartGears-Bundle/tomcat/webapps/dataminer-pool-manager-1.0.0-SNAPSHOT

In such sense, an instance has already been deployed and configured at Development level.

http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/

Such environment contains the configurations for ansible playbook, inventory and roles for algorithm installer, scripts, algorithms, dependencies and the logs of the execution.

/home/gcube/gcube/dataminer-pool-manager/custom      // static directory
/home/gcube/gcube/dataminer-pool-manager/static      // static directory
/home/gcube/gcube/dataminer-pool-manager/templates   // static directory
/home/gcube/gcube/dataminer-pool-manager/work        // dinamically generated directory

In order to allow Ansible to access the DataMiner, it is necessary that the SSH key of the host where the Service is deployed is correctly configured at DataMiner host level.

Requirements

The dependencies in the metadata file inside the algorithm package, must respect the following guidelines:

  • R Dependencies must have prefix cran:
  • OS Dependencies must have prefix os:
  • Custom Dependencies must have prefix github:

In case no prefix is specified, the service considers such dependencies as OS ones.

Usage and APIs

Currently the service exposes the following REST methods:

  • Adding an Algorithm to a single DataMiner host

Such functionality installs the Algorithm on the specific DataMiner, update the SVN list of dependencies, optionally stores the algorithm in the Information System and returns immediately the log ID useful to monitor the execution.

addAlgorithmToHost(algorithm, hostname, name, description, category, algorithmType, skipJava, publish, updateSVN);


        @GET
	@Path("/hosts/add")
	@Produces("text/plain")
	public String addAlgorithmToHost(
			@QueryParam("algorithm") String algorithm, 
			@QueryParam("hostname") String hostname,
			@QueryParam("name") String name,
			@QueryParam("description") String description,
			@QueryParam("category") String category,
			@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
			@DefaultValue("N") @QueryParam("skipJava") String skipJava,
			@DefaultValue("false") @QueryParam("publish") boolean publish,
			@DefaultValue("false") @QueryParam("updateSVN") boolean updateSVN)
			throws IOException, InterruptedException, SVNException {
		Algorithm algo = this.getAlgorithm(algorithm, null, hostname, name, description, category, algorithmType,
				skipJava);
		// publish algo
 
		if (publish) {
			service.addAlgToIs(algo);
		}
 
		return service.addAlgorithmToHost(algo, hostname, updateSVN);
	}


It is possible to distinguish among mandatories parameters and optional ones:

  • Mandatories:
    • algorithm: URL related the package of the Algorithm; such parameter is mandatory.
    • hostname: the hostname of the DataMiner on which deploy the script; such parameter is mandatory.
  • Optionals (The overall set of parameters, except the mandatory ones. can be extract from the metadata file (where available), or overwritten by the caller):
    • name: the name of the Algorithm (e.g.,ICHTHYOP_MODEL_ONE_BY_ONE )
    • description: the description of the Algorithm
    • category: the category to which the Algorithm belongs to (e.g, ICHTHYOP_MODEL)
    • algorithmType: by default set to "transducerers"
    • skipJava: by default set to "N"
    • publish: by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the registration in the IS of the deployed algorithm at caller scope level. The algorithm will be registered as Generic Resource.
    • updateSVN: by default set to "false"; If the package contains dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, the caller can set such parameter to true and they will be added to such lists in the related files by using the default svn credentials of the caller (~/.subversion folder). The update happens only at the end of the process, when the algorithm has been successfully deployed

An example of the usage is the following:

http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/hosts/add?gcube-token=TOKEN_ID&algorithm=URL_TP_ALGORITHM&hostname=TARGET_DATAMINER


  • Adding an Algorithm to the set of DataMiners available in the VRE

Such functionality installs the Algorithm on the set of dataminers of a particular VRE, update the SVN list of dependencies, optionally stores the algorithm in the Information System and returns immediately the log ID useful to monitor the execution. It's possible to automatically retrieve the set of dataminers in a cluster from the HA proxy. In fact, this exposes its status in csv format where we can retrieve the association between clusters and dataminers. For this to be effective, the name of the cluster in the HAProxy has been normalized with the name of dataminer/haproxy in the VRE. By relying on this, given a VRE (e.g. RProtoLab), the service will be able to deploy an algorithm to all dataminers belonging to it.

addAlgorithmToVRE(algorithm, name, description, category, algorithmType, skipJava, publish, updateSVN);


        @GET
	@Path("/scopes/add")
	@Produces("text/plain")
	public String addAlgorithmToVRE(
			@QueryParam("algorithm") String algorithm, 
			@QueryParam("name") String name,
			@QueryParam("description") String description,
			@QueryParam("category") String category,
			@DefaultValue("transducerers") @QueryParam("algorithmType") String algorithmType,
			@DefaultValue("N") @QueryParam("skipJava") String skipJava,
			@DefaultValue("false") @QueryParam("publish") boolean publish,
			@DefaultValue("false") @QueryParam("updateSVN") boolean updateSVN)
			throws IOException, InterruptedException, SVNException {
		Algorithm algo = this.getAlgorithm(algorithm, /*vre*/null, null, name, description, category, algorithmType, skipJava);
 
		// publish algo
		if (publish) {
			service.addAlgToIs(algo);
		}
 
		return service.addAlgorithmToVRE(algo, ScopeProvider.instance.get(),updateSVN);
	}


It is possible to distinguish among mandatories parameters and optional ones:

  • Mandatories:
    • algorithm: URL related the package of the Algorithm; such parameter is mandatory.
  • Optionals (The overall set of parameters, except the mandatory ones. can be extract from the metadata file (where available), or overwritten by the caller):
    • name: the name of the Algorithm (e.g.,ICHTHYOP_MODEL_ONE_BY_ONE )
    • description: the description of the Algorithm
    • category: the category to which the Algorithm belongs to (e.g, ICHTHYOP_MODEL)
    • algorithmType: by default set to "transducerers"
    • skipJava: by default set to "N"
    • publish: by default set to "false"; the registration of the algorithm in the VRE is currently done both by the service and by the install script (addAlgorithm.sh); by the way, if set to true, this paramater forces the registration in the IS of the deployed algorithm at caller scope level. The algorithm will be registered as Generic Resource.
    • updateSVN: by default set to "false"; If the package contains dependencies not present in the SVN list of R/OS/GitHub Packages to be installed, the caller can set such parameter to true and they will be added to such lists in the related files by using the default svn credentials of the caller (~/.subversion folder). The update happens only at the end of the process, when the algorithm has been successfully deployed

An example of the usage is the following:

http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/hosts/add?gcube-token=TOKEN_ID&algorithm=URL_TP_ALGORITHM


  • Monitoring the execution

Such functionality allows the caller to monitor asynchronously the execution by using the log ID obtained when an algorithm is deployed.

getLogById(logID);


   @GET
   @Path("/log")
   @Produces("text/plain")
   public String getLogById(@QueryParam("logUrl") String logUrl) throws IOException {
       // TODO Auto-generated method stub
       LOGGER.debug("Returning Log =" + logUrl);
       return service.getScriptFromURL(service.getURLfromWorkerLog(logUrl));
   }


An example of the usage is the following:

http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-1.0.0-SNAPSHOT/rest/log?gcube-token=TOKEN_ID&logUrl=LOG_ID