The Java Multi-Cloud Toolkit
Go to file
Adrian Cole 2a0e1d50f8 Merge branch 'master' of github.com:jclouds/jclouds into 1.5.x
* 'master' of github.com:jclouds/jclouds:
  Issue 915: don't create full path on useradd
  Issue 889: fixes error msg on aborting early wait for node-running.
  update sshj to 0.8.0, fixing power-of-2 bug reported by me and fixed by aled
  Issue 926: cleaned up usage of authentication client
  removed awkward test, as this is now addressed at a higher level. Ex. malformed date string creation can be tested in jclouds-core
  Issue 647: normalized use of IllegalArgumentException
  Added a 'clear container' admin function to cf-tweetstore-spring
  Added a 'clear container' admin function to runatcloud-tweetstore
  Added a 'clear container' admin function to rhcloud-tweetstore
  Added a 'clear container' admin function to gae-tweetstore-spring
  Added a 'clear container' admin function to gae-tweetstore
2012-05-22 23:16:31 -06:00
all [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
allblobstore [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
allcompute [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
allloadbalancer [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
antcontrib [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
apis Merge branch 'master' of github.com:jclouds/jclouds into 1.5.x 2012-05-21 22:37:11 -06:00
archetypes [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
assemblies [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
blobstore Issue 936: fixes async multi-part upload of small blob 2012-05-21 15:39:27 +01:00
common Issue 926: cleaned up usage of authentication client 2012-05-22 11:31:32 -06:00
compute Issue 915: don't create full path on useradd 2012-05-22 23:10:41 -06:00
core Issue 647: normalized use of IllegalArgumentException 2012-05-22 11:31:32 -06:00
demos Added a 'clear container' admin function to cf-tweetstore-spring 2012-05-22 02:41:27 -04:00
drivers update sshj to 0.8.0, fixing power-of-2 bug reported by me and fixed by aled 2012-05-22 12:00:43 -06:00
labs Merge branch 'master' of github.com:jclouds/jclouds into 1.5.x 2012-05-21 22:37:11 -06:00
loadbalancer [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
project Issue 928:update jclouds-jsch default version to 0.1.48 2012-05-14 23:12:27 -07:00
providers Merge branch 'master' of github.com:jclouds/jclouds into 1.5.x 2012-05-22 23:16:31 -06:00
resources [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
sandbox-apis Merge pull request #602 from andrewgaul/propagate-or-null 2012-05-02 15:21:30 -07:00
sandbox-drivers/asynchttpclient freshen ning 2012-05-07 13:34:55 -07:00
sandbox-providers removed ContextBuilder subclasses; added unwrap; undid generic params 2012-04-16 00:44:20 -07:00
scriptbuilder Issue 915: don't create full path on useradd 2012-05-22 23:10:41 -06:00
skeletons [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00
.gitignore Add support to apis/cloudwatch for listing stored metrics. 2012-04-26 19:14:30 -06:00
README.md README.md - improved 2012-03-28 21:59:16 +01:00
README.txt Issue 895:add openstack-nova-ec2 api 2012-04-03 00:06:00 -07:00
pom.xml [maven-release-plugin] prepare for next development iteration 2012-05-01 10:44:39 -07:00

README.md

jclouds

jclouds is an open source library that helps you get started in the cloud and reuse your java and clojure development skills. Our api allows you freedom to use portable abstractions or cloud-specific features. We test support of 30 cloud providers and cloud software stacks, including Amazon, GoGrid, Ninefold, vCloud, OpenStack, and Azure. We offer several API abstractions as java and clojure libraries. The following are the most mature:

Features

Even if you don't need the portable apis we provide, or could roll it your own, programming against cloud environments can be challenging. We focus on the following areas so that you can focus on using the cloud, rather than troubleshooting it!

  • SIMPLE INTERFACE Instead of creating new object types, we reuse concepts like maps so that the programming model is familiar. In this way, you can get started without dealing with REST-like apis or WS.

  • RUNTIME PORTABILITY We have drivers that allow you to operate in restricted environments like Google App Engine. We have very few required dependencies, so we are unlikely to clash with your app.

  • DEAL WITH WEB COMPLEXITY Network based computing introduces issues such as transient failures and redirects. We handle this for you.

  • UNIT TESTABILITY Writing tests for cloud endpoints is difficult. We provide you with Stub connections that simulate a cloud without creating network connections. In this way, you can write your unit tests without mocking complexity or the brittleness of remote connections.

  • PERFORMANCE Writing tests for cloud endpoints is difficult. We provide you with Stub connections that simulate a cloud without creating network connections. In this way, you can write your unit tests without mocking complexity or the brittleness of remote connections.

  • LOCATION All of our abstractions are location-aware. For example, you can get ISO-3166 codes to tell which country or province a cloud runs in.

  • QUALITY We test every provider with live scenarios before each release. If it doesn't pass, the provider goes into the sandbox.

BlobStore

Simplifies dealing with key-value providers such as Amazon S3. For example, BlobStore can give you a simple Map view of a container.

BlobStore Example (Java):

// init
context = new BlobStoreContextFactory().createContext(
"aws-s3",
accesskeyid,
secretaccesskey);
blobStore = context.getBlobStore();

// create container
blobStore.createContainerInLocation(null, "mycontainer");

// add blob
blob = blobStore.blobBuilder("test").payload("testdata").build();
blobStore.putBlob("mycontainer", blob);

BlobStore Example (Clojure):

(use 'org.jclouds.blobstore2)
(def *blobstore* (blobstore "azureblob" account encodedkey))
(create-container *blobstore* "mycontainer")
(put-blob *blobstore* "mycontainer" (blob "test" :payload "testdata"))

ComputeService

Simplifies the task of managing machines in the cloud. For example, you can use ComputeService to start 5 machines and install your software on them.

Compute Example (Java):

// init
context = new ComputeServiceContextFactory().createContext(
"aws-ec2",
accesskeyid,
secretaccesskey,
ImmutableSet.of(new Log4JLoggingModule(), new SshjSshClientModule()));

client = context.getComputeService();

// define the requirements of your node
template = client.templateBuilder().osFamily(UBUNTU).smallest().build();

// setup a boot user which is the same as your login
template.getOptions().runScript(AdminAccess.standard());

// these nodes will be accessible via ssh when the call returns
nodes = client.createNodesInGroup("mycluster", 2, template);

// you can now run ad-hoc commands on the nodes based on predicates
responses = client.runScriptOnNodesMatching(inGroup("mycluster"), "uptime", wrapInInitScript(false));

Compute Example (Clojure):

(use 'org.jclouds.compute2)

; create a compute service using sshj and log4j extensions
(def compute (*compute* "trmk`-ecloud" "user" "password" :sshj :log4j))

; launch a couple nodes with the default operating system, installing your user.
(create-nodes *compute* "mycluster" 2
(TemplateOptions$Builder/runScript (AdminAccess/standard)))

; run a command on that group 
(run-script-on-nodes-matching *compute* (in-group? "mycluster") "uptime" 
(RunScriptOptions$Builder/wrapInInitScript false))

Check out https://github.com/jclouds/jclouds-examples for more examples!

Downloads

Resources

License

Copyright (C) 2009-2012 jclouds, Inc.

Licensed under the Apache License, Version 2.0