Re: Error on storing JCLoud blob

2015-11-11 Thread Felipe Gutierrez
yes. thanks On Wed, Nov 11, 2015 at 2:11 PM, Ignasi Barrera wrote: > > java.io.IOException: Não há espaço disponível no dispositivo > > It looks like the disk ran out of space? > --

Error on storing JCLoud blob

2015-11-11 Thread Felipe Gutierrez
Hi, I got this error using JClouds after 2 days I am copying files to my container. The line is where I call putBlob Blob blob = mStore.blobBuilder(Integer.toString(mBucketIndex)).build(); blob.setPayload(data); mStore.putBlob(mContainerName, blob); I am using this versions

distributed file system with jclouds.

2014-11-19 Thread felipe gutierrez
Hi Gaul, I was reading your site http://gaul.org/ and this presentation http://gaul.org/talks/cloud-storage-with-apache-jclouds/#4. Thanks to share that =)! I am wondering to study about distributed file systems and may you have any books/papers to help me on the theory about it? I also wonder

Re: too may files open

2014-11-19 Thread Felipe Gutierrez
thanks, apparently it is working well. I already could 130Gb and the files open remain around 2800. Let's see until 400Gb. On Wed, Nov 19, 2014 at 12:46 AM, Andrew Gaul g...@apache.org wrote: On Tue, Nov 18, 2014 at 05:27:48PM -0300, felipe gutierrez wrote: time ago I asked here why I am

Re: Version of jclouds 1.8.0 with jdk1.7.0_60

2014-10-14 Thread felipe gutierrez
Thanks Andrew, at the reflection jar there is another guava.jar. So I excluded it: dependency groupIdorg.reflections/groupId artifactIdreflections/artifactId version0.9.9/version exclusions exclusion artifactIdguava/artifactId groupIdcom.google.guava/groupId /exclusion /exclusions /dependency

Re: Method initialization failed from the command prompt

2014-09-08 Thread felipe gutierrez
I think you are missing some jars. http://stackoverflow.com/questions/15475576/error-package-org-jclouds-logging-slf4j-config-does-not-exist-the-class-slf4j On Mon, Sep 8, 2014 at 1:48 PM, Sofiane Bendoukha saw...@hotmail.com wrote: Hello, executing this

Re: Error: No space left on device

2014-08-27 Thread felipe gutierrez
available? Note that the filesystem blobstore does not create any temporary files although other processes can consume this space. On Mon, Aug 25, 2014 at 03:12:59PM -0300, felipe gutierrez wrote: I am using rootfs, but I deleted the blocks to start again. So I have 83G free. My copy of 100G stoped

Error: No space left on device

2014-08-25 Thread felipe gutierrez
Hi, I am trying to understand this error: 22:21:39 ERROR pool-13-thread-3 storage.JCloudsStorageModule - Error when storing blob: java.lang.RuntimeException: java.io.IOException: No space left on device at com.google.common.base.Throwables.propagate(Throwables.java:160) at

Re: Error: No space left on device

2014-08-25 Thread felipe gutierrez
I am using rootfs, but I deleted the blocks to start again. So I have 83G free. My copy of 100G stoped in 80G. $ df -h Filesystem Size Used Avail Use% Mounted on rootfs 92G 4.7G 83G 6% / udev

Re: Error: No space left on device

2014-08-25 Thread felipe gutierrez
yes, I used local file system context. Properties properties = new Properties(); properties.setProperty(FilesystemConstants.PROPERTY_BASEDIR, pFile.getAbsolutePath()); ContextBuilder overrides = ContextBuilder.newBuilder(filesystem).overrides(properties); mContext =

Re: How does jclouds storage my files?

2014-08-12 Thread felipe gutierrez
- The indexes are the blobs that indicates there are some files on my driver, but not really the file content. Hope this answer. On Mon, Aug 11, 2014 at 9:33 PM, Andrew Gaul g...@apache.org wrote: On Mon, Aug 11, 2014 at 05:08:16PM -0300, felipe gutierrez wrote: I am new with jclouds. What I

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 andr...@apache.org wrote: 2 - I use this implementation of iSCSI http://jscsi.org/. And it is this class that

How does jclouds storage my files?

2014-08-11 Thread felipe gutierrez
Hi, I am new with jclouds. What I am doing is: Opening a disk with java and formatting it with jclouds. So, instead of write Files.write() I use jclouds. When I format I can see about 63 blocks of 2MB. The blocks next to it, say the 30 neighbors, are the indexes of my files copied to the disk.

Examples of another providers

2014-07-15 Thread felipe gutierrez
Hi all, I use org.jclouds.blobstore.domain.Blob to manage my block of files and send it to the cloud. Eg: ContextBuilder overrides = ContextBuilder.newBuilder(filesystem).overrides(properties); mContext = overrides.buildView(BlobStoreContext.class); Looking at the jclouds git I saw another lib

Re: How to identify the index blocks on jclouds filesystem?

2014-05-29 Thread felipe gutierrez
, and robustness. On Wed, May 28, 2014 at 11:35:59PM -0300, felipe gutierrez wrote: ok. Thanks. It is I would like to know. I wonder to develope a method to check if some block has the index files of my driver, so I could open a driver with many files only with few blocks, and fill

Re: How to identify the index blocks on jclouds filesystem?

2014-05-28 Thread felipe gutierrez
stuff, but do you think it will contribute to apache? Thanks Andrew On Wed, May 28, 2014 at 5:08 PM, Andrew Gaul g...@apache.org wrote: On Wed, May 28, 2014 at 08:40:50AM -0300, felipe gutierrez wrote: Hi all, I am using jClouds BlobStore with filesystem, so I have blocks at my FileSystem

Re: Error on connect with jclouds

2014-05-23 Thread felipe gutierrez
Thanks Andrew, I solved with this dependency, guava-14.0 was breaking my code: dependency groupIdcom.google.guava/groupId artifactIdguava/artifactId version15.0/version /dependency On Fri, May 23, 2014 at 1:11 AM, Andrew Phillips andr...@apache.org wrote: I attached the output of mvn

Error on ContextBuilder.newBuilder(filesystem)

2014-05-23 Thread felipe gutierrez
Hi all, I got other error on the line: ContextBuilder overrides = ContextBuilder.newBuilder(filesystem).overrides(properties); mContext = overrides.buildView(BlobStoreContext.class); maybe is another wrong version of some .jar. Does anybody have a idea? Or how do I discover the error? Thanks a

Re: Error on ContextBuilder.newBuilder(filesystem)

2014-05-23 Thread felipe gutierrez
yes dependency groupIdorg.apache.jclouds/groupId artifactIdjclouds-blobstore/artifactId version1.7.2/version /dependency dependency groupIdorg.apache.jclouds.api/groupId artifactIdfilesystem/artifactId version1.7.2/version /dependency dependency groupIdcom.google.guava/groupId

Re: Error on ContextBuilder.newBuilder(filesystem)

2014-05-23 Thread felipe gutierrez
from eclipse On Fri, May 23, 2014 at 2:12 PM, Andrew Phillips andr...@apache.org wrote: I don't see any obvious classpath dependency conflicts now, but the error still very much looks like that. Are you running the program from Eclipse, or from the command line via Maven? ap

Re: Error on ContextBuilder.newBuilder(filesystem)

2014-05-23 Thread felipe gutierrez
I runned from cmd and I think it is the same output. On Fri, May 23, 2014 at 2:30 PM, Andrew Phillips andr...@apache.org wrote: from eclipse Then I suspect we still have something on the command line that maybe is either in the project config cache, or is not being managed via Maven.

Re: Error on connect with jclouds

2014-05-22 Thread felipe gutierrez
Thanks for reply Andrew, Do i need some account at AWS when I use a filesystem ? I have it o my maven: dependency groupIdorg.apache.jclouds/groupId artifactIdjclouds-blobstore/artifactId version1.7.2/version /dependency dependency groupIdorg.apache.jclouds.provider/groupId

Re: Error on connect with jclouds

2014-05-22 Thread felipe gutierrez
) at org.jscsi.batch.App.startTarget(App.java:32) at org.jscsi.batch.App.main(App.java:55) 17:30:07 ERROR main batch.App - Exit Status : [java.lang.IllegalAccessError: tried to access class com.google.common.reflect.TypeResolver from class org.jclouds.util.TypeToken2] On Thu, May 22, 2014 at 5:02 PM, felipe gutierrez fel