Questions tagged [jclouds]

Apache jclouds® is an open source multi-cloud toolkit for the Java platform that gives you the freedom to create applications that are portable across clouds while giving you full control to use cloud-specific features.

Apache jclouds® is an open source multi-cloud toolkit for the Java platform that gives you the freedom to create applications that are portable across clouds while giving you full control to use cloud-specific features.

See http://jclouds.apache.org/

269 questions
3
votes
1 answer

Apache Brooklyn Application Launch using REST API

Can we launch a VM using Brooklyn REST API's by passing YAML documents? Sample YAML: name: simple-vm location: ... services: - type: brooklyn.entity.basic.EmptySoftwareProcess name: VM provisioning.properties: user: b-user …
sm-azure
  • 307
  • 3
  • 12
3
votes
1 answer

jclouds support for newer vCloud APIs

We must support a number of different target clouds for our migration service (from AWS to Openstack to vCloud and more) so I thought I'd use jclouds at least for the part where we retrieve account attributes (such as regions, organizations,…
Marco Massenzio
  • 2,822
  • 1
  • 25
  • 37
3
votes
1 answer

How access native provider API with Jclouds 1.7

Using JClouds, up to version 1.6.x it was possible to access to the native EC2 provider API by using the following idiom: AWSEC2Client ec2Client = AWSEC2Client.class.cast(context.getProviderSpecificContext().getApi()); Actually, I copied from the…
pditommaso
  • 3,186
  • 6
  • 28
  • 43
3
votes
1 answer

Error creating BlobContext using jclouds in a Spring MVC application

I have a Spring MVC 4.0.1 web application that needs to upload files to Rackspace Cloud Files. I am using Apache jClouds in order to do this. When trying to create the BlobStore using the following code: BlobStoreContext context =…
Justin Haygood
  • 193
  • 1
  • 7
3
votes
2 answers

openstack swift: The server has waited too long for the request to be sent by the client

we get few of these now and then: Caused by: javax.ejb.EJBException: org.jclouds.http.HttpResponseException: command: PUT {{PUT_URL}} HTTP/1.1 failed with response: HTTP/1.1 408 Request Timeout; content: [

Request Timeout

The…

Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
3
votes
1 answer

JClouds: BlobStore.getBlob() taking a long time

I'm using jclouds 1.6.1-incubating in a web application (using scala playframework 2.1.3, but that shouldn't matter). Since all other methods in jclouds to receive a blob seem to be deprecated, I want to…
Heinzi
  • 5,793
  • 4
  • 40
  • 69
3
votes
1 answer

CloudStack and Cloudify compatibility

There is compatibility requirements everyone should be clear of before working bring Cloudify and CloudStack together. For the most part from what I can see Cloudify depends on JClouds for its CloudStack and probably other vendors API integration.…
Noel King
  • 545
  • 2
  • 4
  • 9
3
votes
1 answer

Registering VM on Cloudify version 2.2 or less on CloudStack 3: NumberFormatException

I was trying to get CloudStack 3.0 working with Cloudify 2.1 and 2.2, however I got the error outlined below: Stack trace The first encountered error was: java.lang.NumberFormatException: For input string: "11e2ccc4-43dd-4558-99ef-a687000g632f" …
Noel King
  • 545
  • 2
  • 4
  • 9
2
votes
2 answers

How to upload file to S3 from GAE (a horror story)

I am trying to upload a file to amazon S3 from GAE. I tried the official amazon sdk (jetS3t, built on top of the lower-level sdk), just to find out that even if you can get it to work locally by setting permissions on the local JVM it is not…
JohnIdol
  • 48,899
  • 61
  • 158
  • 242
2
votes
0 answers

JClouds: Multiple threads BLOCKED on object monitor owned by thread waiting in pool for work to do

It doesn't seem possible in Java for this scenario to occur, but here's what I'm seeing in a jstack dump of a deadlocked process: "clrd-normalpri-13" Id=165 BLOCKED on java.text.SimpleDateFormat@1b9ff8be owned by "clrd-normalpri-12" Id=164 …
John Calcote
  • 793
  • 1
  • 8
  • 15
2
votes
2 answers

Newbie / Ballerina Build with gson issue while running the build

I am a newbie in Ballerina. I am importing a platform lib as a executable jar , which is an inter op method call in java using openstack swift api using jclouds. There has been a known issue with JCLOUDS where it fails to build due to gson version…
2
votes
2 answers

Does Apache jclouds api support Miscrosoft Azure SAS

Have a project where I would like to use Apache jclouds to talk to MS Azure but need to use SAS to restrict downloads, is this supported in jclouds?
Llew
  • 21
  • 5
2
votes
2 answers

Use Virtual Private Cloud in Blueprint of Apache Brooklyn

If a Virtual Private Cloud (VPC) is created in Amazon Web Services (AWS) or wherever. Is there any chance to use it (and configure it) in our blueprint to deploy it later via Apache Brooklyn? Has Apache Brooklyn VPC support?
Iker Aguayo
  • 3,980
  • 4
  • 37
  • 49
2
votes
1 answer

How to enable s3 path style access in jclouds

Normally, when I'm using the AWS S3 Java SDK, I can enable path style access in the following way: S3ClientOptions clientOptions = new S3ClientOptions() clientOptions.setPathStyleAccess(true) awsS3Client.setS3ClientOptions(clientOptions) We are…
Aaron Khoo
  • 43
  • 1
  • 4
2
votes
1 answer

How to use subnets in blueprints of Apache Brooklyn

I am trying to use a subnet (precreated in AWS) in my Blueprint to run it in Apache Brooklyn. I have the following Blueprint without subnet, which works correctly. (Ambari Server, with Cluster of two Hadoop nodes) name: IDA Ambari All Services…
Iker Aguayo
  • 3,980
  • 4
  • 37
  • 49
1
2
3
17 18