problems compiling jclouds 1.8.x

2014-08-12 Thread Inbar Stolberg
hi all, i am having trouble with running mvn on jclouds branch 1.8.x command: mvn clean install -DskipTests i am getting error (full mvn output attached in a file ): [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project jclouds-co

Re: jclouds-example using up-to-date jclouds ?

2014-08-12 Thread Andrew Phillips
Latest jclouds-examples can build under 1.8.0. With jclouds 2.0, I see the errors below: Since jclouds 2.0.0 does not exist yet, you will not be able to use that version. Please use 1.8.0 instead. ap

Re: jclouds-example using up-to-date jclouds ?

2014-08-12 Thread liang cheng
Hi Andrew, Latest jclouds-examples can build under 1.8.0. With jclouds 2.0, I see the errors below: [ERROR] Failed to execute goal on project compute-basics: Could not resolve dependencies for project org.apache.jclouds.examples:compute-basics:jar:1.8.0-SNAPSHOT: The following artifacts could not

Re: IllegalArgumentException when deleting node on Rackspace

2014-08-12 Thread Daniel Widdis
Zack, I've updated to 1.8.0 and I'll keep an eye out. The reason I brought it to light because it seemed like a similar instance to the previous one in which the naming conventions jclouds enforces are more restrictive than the ones permitted by other means of creating the instances, and the

Re: jclouds-example using up-to-date jclouds ?

2014-08-12 Thread Andrew Phillips
When will jclouds-example be using jclouds 2.0 ? Currently it's using 1.7.3. jclouds 2.0 has not been released yet. We will be updating the examples to use 1.8.0 soon. Is there anything you are trying to do using the examples that is not working with 1.8.0? Most of the examples that work o

Re: jclouds-example using up-to-date jclouds ?

2014-08-12 Thread Sunil Shah
Hey Liang, I think the latest release is 1.8.0 (as of last week ) - so might be a while. Sunil On Tue, Aug 12, 2014 at 10:38 PM, liang cheng wrote: > Hi, > > When will jclouds-example be using jclouds 2.0 ? Currently i

jclouds-example using up-to-date jclouds ?

2014-08-12 Thread liang cheng
Hi, When will jclouds-example be using jclouds 2.0 ? Currently it's using 1.7.3. https://github.com/jclouds/jclouds-examples Thanks, -Liang

Re: S3Proxy 1.0.0 release

2014-08-12 Thread Andrew Phillips
Over the last few weeks I have hacked up S3Proxy, which provides an S3 interface on top of the jclouds BlobStore portable abstraction. Looks cool! Is there an example or a guide somewhere demonstrating how to use this? One comment about the Limitations: is "single-part uploads larger than

Re: How does jclouds storage my files?

2014-08-12 Thread Andrew Phillips
yes. But What I am doing is editing jscsi code. So they don't know how to answer because they don't move the blobs to other place. Ah, OK. Still, the specific details of how a blob is stored are either jSCSI-specific, or (as Andrew Gaul pointed out) specific to the native filesystem provider

Re: How to configure Jclouds S3 API to put the container name *after* the hostname?

2014-08-12 Thread Steve Kingsland
Unfortunately I'm stuck on 1.6.3. 1.7.x depends on Guava 15.0 and is incompatible with 14.0 (see JCLOUDS-427), but I have to use Guava 14.0 because the version of HBase my company uses (0.94.6) depends on a Guava class that was removed in 15.0. And yes, I'm using the "s3" provider/API string. So

Re: How to configure Jclouds S3 API to put the container name *after* the hostname?

2014-08-12 Thread Steve Kingsland
Thanks Niraj, this fixed my problem! I had looked in the org.jclouds.Constants interface for this exact property, but it makes sense that it would be in the S3Constants interface instead, since virtual host buckets are an S3-specific thing. Just out of curiosity, is this property documented anywhe

Re: How does jclouds storage my files?

2014-08-12 Thread felipe gutierrez
yes. But What I am doing is editing jscsi code. So they don't know how to answer because they don't move the blobs to other place. On Tue, Aug 12, 2014 at 10:27 AM, Andrew Phillips wrote: > 2 - I use this implementation of iSCSI http://jscsi.org/. And it is this >> class that saves my blobs >>

Re: How does jclouds storage my files?

2014-08-12 Thread Andrew Phillips
2 - I use this implementation of iSCSI http://jscsi.org/. And it is this class that saves my blobs http://grepcode.com/file/repo1.maven.org/maven2/org.jscsi/target/2.5.2/org/jscsi/target/storage/JCloudsStorageModule.java?av=f As far as I can see, the questions you have are related to jSCSI, wh

Re: How does jclouds storage my files?

2014-08-12 Thread felipe gutierrez
ok, thanks for reply. 1 - To store the Blobs I am using it: private BlobStore mStore; mStore = mContext.getBlobStore(); if (!mStore.containerExists(mContainerName)) { Location locToSet = null; for (Location loc : mStore.listAssignableLocations()) { if (loc.getId().equals("eu-west-1")) { l

Re: Specify a network interface when assigning floating IP

2014-08-12 Thread Ignasi Barrera
Hi Udara, Have you tried using the jclouds Neutron api as Zack suggested? Hi, Ping! On Fri, Aug 8, 2014 at 4:17 PM, Udara Liyanage wrote: > Hi, > > I was able to create an instance in Openstack specifying multiple > networks. Instance has two network interfaces and each is assigned a > privat

S3Proxy 1.0.0 release

2014-08-12 Thread Andrew Gaul
Over the last few weeks I have hacked up S3Proxy, which provides an S3 interface on top of the jclouds BlobStore portable abstraction. This enables new uses of jclouds, especially for non-programmers, similar to jclouds-cli. For example, one could use an existing S3 application with a CloudFiles