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
2
votes
1 answer

Hibernate Search + Infinispan + S3 -- Prevent alphanumeric file names

I'm looking for help in configuring Hibernate Search using Infinispan, storing the indexes on S3 Currently, it seems to be mostly working, but one of the index files it creates has an alphanumeric name, which comes back to throw the following…
Dave V
  • 53
  • 2
  • 6
2
votes
2 answers

Getting an object's links in Rackspace cloud files API

I am using the Java jclouds API for access to my Rackspace cloud files account. I can create and list containers, and upload objects, but I can't figure out how to get the public links for an uploaded object. (I can see these public links from…
Andrew
  • 1,157
  • 1
  • 20
  • 37
2
votes
1 answer

Setting container location using JClouds Location API

I am using JClouds to abstract over various cloud providers, including Rackspace. I am using the BlobStore from JClouds to store files, their API suggests that I can create a container in a specific (provider dependent) Location…
jvandertil
  • 23
  • 4
2
votes
1 answer

JClouds RackspaceUK wont start Server

i used the Rackspace example Code from JClouds (http://www.jclouds.org/documentation/quickstart/rackspace/) and if i use my Rackspace US account. It works all fine. But if i use the Rackspace UK Account and want to create/start a server(the Access…
Rene Herget
  • 1,506
  • 13
  • 28
1
vote
2 answers

JClouds for Azure Blob

I can't find an example on how to create a new container/bucket with specific Location (Singapore) using JClouds. All the examples that I found on google are using null as default location. azureBlobStore.createContainerInLocation(null,…
carbotex
  • 569
  • 1
  • 6
  • 16
1
vote
1 answer

Jclouds dedicated timeout exceptions

Is there a dedicated exception which jclouds blobstore client API throws in the case of this error: connect timeout, request timeout, max retries I could not find it in the document. This information would really be helpful.
1
vote
0 answers

Using jclouds to call GCE without supplying credentials (GoogleCredentialsFromJson not an option)

I'm able to successfully make GCP calls (e.g. list/create/delete instances) using jclouds, but I'm currently relying on GoogleCredentialsFromJson to supply the credentials. For security reasons (including auto rotation of credentials), I don't want…
1
vote
1 answer

Apache Jclouds BlobStore getBlob with GetOptions

Anyone knows how to get blob from blob store with GetOptions: BlobStore blobStore = context.getBlobStore(); Blob blob = blobStore.getBlob(cloudStorageContainer, fileName); what I wanted to achieve is to pass the ETag value to the…
kenn3th
  • 1,187
  • 2
  • 22
  • 47
1
vote
1 answer

JClouds: How Do You Ask For an AWS-EC2 Public IP Address

When using Apache JClouds, how do you get launch a compute instance with a public IP? This is different from an elastic IP. Using the official AWS API you can do something like: //create network information InstanceNetworkInterfaceSpecification…
YoungDinosaur
  • 1,550
  • 17
  • 22
1
vote
1 answer

Getting OpenStack Server's Tags

I'm using jclouds Java SDK, i search in the documentation and in the jclouds examples for how to get the tags of a Nova server, but i didn't find any mention of it. i found some other function to get the instance name, instance metadata and so on in…
ibr
  • 319
  • 1
  • 5
  • 19
1
vote
1 answer

Getting Tags List for OpenStack Nova Instance

I'm using Java and Jclouds SDK to interact with OpenStack Nova, i tried to get the "Tags list" for nova instances, i used the following code String region = novaApi.getConfiguredRegions().iterator().next(); ServerApi serverApi =…
ibr
  • 319
  • 1
  • 5
  • 19
1
vote
0 answers

Can't Create OpenStack Queue

I'm trying to create an OpenStack queue using Java and jclouds, but i couldn't, i followed the example example, my code is: MarconiApi marconiApi = ContextBuilder.newBuilder("openstack-marconi") .endpoint(Auth_URL) …
ibr
  • 319
  • 1
  • 5
  • 19
1
vote
1 answer

OpenStack Swift Multi Part Upload jclouds

I'm using jclouds Java SDK to interact with the OpenStack resources, I want to upload as multipart yet I didn't find in the SDK how to do that, in the examples I only saw a way to upload multipart but just for the blobs, which is not what I'm using,…
ibr
  • 319
  • 1
  • 5
  • 19
1
vote
1 answer

Getting OpenStack Container Metadata

im using jclouds SDK, to handle OpenStack resources using Java, yet i couldn't anyway to get the metadata of the Container, in the ContainerApi class there is updateMetadata but i couldn't find any function to get the meta, also i didn't find any…
ibr
  • 319
  • 1
  • 5
  • 19
1
vote
1 answer

Jclouds multipart upload to Google Cloud Storage failing with 400 Bad Request

I am building an application that uses Jclouds (version 2.1.0) to access Google Cloud Storage and upload/download files. I am encountering an issue with multipart uploads. Not sure if I am doing something wrong, or if this is a bug. What I am…
Chris
  • 55
  • 1
  • 5