8030d0044d
* 'master' of github.com:jclouds/jclouds: Issue 997:support AWS IAM api added paginated set functionality glesys: updating to API version 0.1.29 glesys: removing ArchiveDetails (duplicate of Archive) glesys: bean cleaning, using ConstructorProperties for deserialization (note no serialization annotations as we don't currently serialize any of these beans) glesys: adjusting ParserModule - removing support for odd dates (no longer present in api) and adding support for "yes"/"no" Boolean fields Specifically adding the osgi import org.apache.commons.io.input;version=[1.4,3) Upgrading commons-io dependency of sshj driver to 2.0 Improve Maven build time dramatically by moving source and javadoc to profiles. Issue 992: Fix AWS S3 to work with non-DNS, but still valid, named buckets. Issue 995: handle illegal argument in vcloud images Issue 994: fix vcloud sax parsing of namespaces cloudstack: don't set networkId to default when iptonetworklist is populated Fix for iptonetworklist (was incorrectly sending ipnetworklist) Adjusting general strategy to accept @Named in place of @SerializedName. Adding TypeAdapterFactory to handle deserialization based on constructor annotations (Inject/Named and/or ConstructorProperties). added min-disk to compute2.clj Issue 988:Extra port added to swift url consistent ordering of hardware fixed missing provider name on ninefold test Eliminate unlikely transient blobstore TOCTOU bug |
||
---|---|---|
all | ||
allblobstore | ||
allcompute | ||
allloadbalancer | ||
antcontrib | ||
apis | ||
archetypes | ||
assemblies | ||
blobstore | ||
common | ||
compute | ||
core | ||
demos | ||
drivers | ||
labs | ||
loadbalancer | ||
project | ||
providers | ||
resources | ||
sandbox-apis | ||
sandbox-drivers/asynchttpclient | ||
sandbox-providers | ||
scriptbuilder | ||
skeletons | ||
.gitignore | ||
README.md | ||
README.txt | ||
pom.xml |
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
- release notes: http://www.jclouds.org/documentation/releasenotes/1.3
- installation guide: http://www.jclouds.org/documentation/userguide/installation-guide
- maven repo: http://repo2.maven.org/maven2 (maven central - the default repository)
- snapshot repo: https://oss.sonatype.org/content/repositories/snapshots
Resources
- Project page: http://jclouds.org/
- Documentation: http://www.jclouds.org/documentation/index
- Javadocs (1.1.0): http://jclouds.rimuhosting.com/apidocs/
- Javadocs (1.0-SNAPSHOT): http://jclouds.rimuhosting.com/apidocs-SNAPSHOT/
- Community: http://www.jclouds.org/documentation/reference/apps-that-use-jclouds
- User group: http://groups.google.com/group/jclouds
- Dev group: http://groups.google.com/group/jclouds-dev
- Twitter: http://twitter.com/jclouds
License
Copyright (C) 2009-2012 jclouds, Inc.
Licensed under the Apache License, Version 2.0