Re: Error: No space left on device

2014-08-27 Thread felipe gutierrez
yes, it is better to do this.
Thanks


On Wed, Aug 27, 2014 at 3:44 PM, Andrew Gaul  wrote:

> Felipe, you exhausted your rootfs space; a file system with 83 GB
> available cannot accommodate a 100 GB copy.  Perhaps change your basedir
> to your home partition which has 750 GB 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 in 80G.
> >
> > $ df -h
> > Filesystem  Size  Used Avail
> Use% Mounted on
> > rootfs   92G  4.7G
>  83G   6% /
> > udev 10M 0
>  10M   0% /dev
> > tmpfs   779M  620K
> 779M   1% /run
> > /dev/disk/by-uuid/5147a770-64ed-4aae-918e-21bd237b359b   92G  4.7G
>  83G   6% /
> > tmpfs   5.0M 0
> 5.0M   0% /run/lock
> > tmpfs   4.6G   72K
> 4.6G   1% /run/shm
> > /dev/sda6   811G   17G
> 753G   3% /home
> >
> >
> > On Mon, Aug 25, 2014 at 2:44 PM, Andrew Phillips 
> wrote:
> >
> > > How could I delete the files only the temporary directory? I also cant
> find
> > >> this directory at /tmp
> > >>
> > >
> > > All I can see in your stacktrace is:
> > >
> > >
> > >  java.lang.RuntimeException: java.io.IOException: No space left on
> device
> > >>
> > >
> > > It does not say *which* device is out of space. Could you check on your
> > > target system to find out which device has no space left [1]?
> > >
> > > ap
> > >
> > > [1] https://kb.iu.edu/d/agfe
> > >
>
> --
> Andrew Gaul
> http://gaul.org/
>


Re: Error: No space left on device

2014-08-27 Thread Andrew Gaul
Felipe, you exhausted your rootfs space; a file system with 83 GB
available cannot accommodate a 100 GB copy.  Perhaps change your basedir
to your home partition which has 750 GB 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 in 80G.
> 
> $ df -h
> Filesystem  Size  Used Avail Use% 
> Mounted on
> rootfs   92G  4.7G   83G   6% 
> /
> udev 10M 0   10M   0% 
> /dev
> tmpfs   779M  620K  779M   1% 
> /run
> /dev/disk/by-uuid/5147a770-64ed-4aae-918e-21bd237b359b   92G  4.7G   83G   6% 
> /
> tmpfs   5.0M 0  5.0M   0% 
> /run/lock
> tmpfs   4.6G   72K  4.6G   1% 
> /run/shm
> /dev/sda6   811G   17G  753G   3% 
> /home
> 
> 
> On Mon, Aug 25, 2014 at 2:44 PM, Andrew Phillips  wrote:
> 
> > How could I delete the files only the temporary directory? I also cant find
> >> this directory at /tmp
> >>
> >
> > All I can see in your stacktrace is:
> >
> >
> >  java.lang.RuntimeException: java.io.IOException: No space left on device
> >>
> >
> > It does not say *which* device is out of space. Could you check on your
> > target system to find out which device has no space left [1]?
> >
> > ap
> >
> > [1] https://kb.iu.edu/d/agfe
> >

-- 
Andrew Gaul
http://gaul.org/


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 = overrides.buildView(BlobStoreContext.class);

Is there a way to go around it? Thanks.


On Mon, Aug 25, 2014 at 3:00 PM, Jeremy Daggett <
jeremy.dagg...@rackspace.com> wrote:

> Hi Felipe!
>
> Would you be able to send a code example of what you are trying to
> accomplish?  I have a feeling that you have configured your Context to use
> the local blob store (local filesystem) which could potentially exhaust
> resources on the system.
>
> Please let us known, thanks!
>
> /jd
>
>
>
>
> On 8/25/14, 10:44 AM, "Andrew Phillips"  wrote:
>
> >> How could I delete the files only the temporary directory? I also cant
> >>find
> >> this directory at /tmp
> >
> >All I can see in your stacktrace is:
> >
> >> java.lang.RuntimeException: java.io.IOException: No space left on device
> >
> >It does not say *which* device is out of space. Could you check on
> >your target system to find out which device has no space left [1]?
> >
> >ap
> >
> >[1] https://kb.iu.edu/d/agfe
>
>


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 10M 0   10M
0% /dev
tmpfs   779M  620K  779M
1% /run
/dev/disk/by-uuid/5147a770-64ed-4aae-918e-21bd237b359b   92G  4.7G   83G
6% /
tmpfs   5.0M 0  5.0M
0% /run/lock
tmpfs   4.6G   72K  4.6G
1% /run/shm
/dev/sda6   811G   17G  753G
3% /home


On Mon, Aug 25, 2014 at 2:44 PM, Andrew Phillips  wrote:

> How could I delete the files only the temporary directory? I also cant find
>> this directory at /tmp
>>
>
> All I can see in your stacktrace is:
>
>
>  java.lang.RuntimeException: java.io.IOException: No space left on device
>>
>
> It does not say *which* device is out of space. Could you check on your
> target system to find out which device has no space left [1]?
>
> ap
>
> [1] https://kb.iu.edu/d/agfe
>


Re: Error: No space left on device

2014-08-25 Thread Jeremy Daggett
Hi Felipe!

Would you be able to send a code example of what you are trying to
accomplish?  I have a feeling that you have configured your Context to use
the local blob store (local filesystem) which could potentially exhaust
resources on the system.

Please let us known, thanks!

/jd




On 8/25/14, 10:44 AM, "Andrew Phillips"  wrote:

>> How could I delete the files only the temporary directory? I also cant
>>find
>> this directory at /tmp
>
>All I can see in your stacktrace is:
>
>> java.lang.RuntimeException: java.io.IOException: No space left on device
>
>It does not say *which* device is out of space. Could you check on
>your target system to find out which device has no space left [1]?
>
>ap
>
>[1] https://kb.iu.edu/d/agfe



Re: Error: No space left on device

2014-08-25 Thread Andrew Phillips

How could I delete the files only the temporary directory? I also cant find
this directory at /tmp


All I can see in your stacktrace is:


java.lang.RuntimeException: java.io.IOException: No space left on device


It does not say *which* device is out of space. Could you check on  
your target system to find out which device has no space left [1]?


ap

[1] https://kb.iu.edu/d/agfe


Re: Error: No space left on device

2014-08-25 Thread felipe gutierrez
I am writing on the root "/storage/bench53473ResourcegraveISCSI9284" at my
linux and my provide is a BlobStore.

How could I delete the files only the temporary directory? I also cant find
this directory at /tmp



On Mon, Aug 25, 2014 at 2:12 PM, Andrew Phillips  wrote:

> org.jclouds.blobstore.LocalAsyncBlobStore.putBlob(
>> LocalAsyncBlobStore.java:405)
>>
>
> The error is in putBlob, which actually tries to write the blob to the
> target location, but may also write to the temporary directory.
>
> Which drive on your system actually has no space left any more? And what
> is the root directory that you are passing to the filesystem provider?
>
> ap
>


Re: Error: No space left on device

2014-08-25 Thread Andrew Phillips

org.jclouds.blobstore.LocalAsyncBlobStore.putBlob(LocalAsyncBlobStore.java:405)


The error is in putBlob, which actually tries to write the blob to the  
target location, but may also write to the temporary directory.


Which drive on your system actually has no space left any more? And  
what is the root directory that you are passing to the filesystem  
provider?


ap