not recognizing holdingdisk define?

2014-02-27 Thread Michael Stauffer
Amanda 3.3.4 Hi, Seems like I'm having trouble getting amanda to use my holding disk. Here's my setup in amanda.conf: define holdingdisk holdingdisk1 { directory "/mnt/amanda-holdingdisk1/" use 4500Gb chunksize 100Gb } define dumptype gui-base { global program "GNUTAR"

Re: not recognizing holdingdisk define?

2014-02-27 Thread Brian Cuttler
I don't believe amanda attempts to write to the holding disk. Who owns it? On Thu, Feb 27, 2014 at 03:09:20PM -0500, Michael Stauffer wrote: > Amanda 3.3.4 > > Hi, > > Seems like I'm having trouble getting amanda to use my holding disk. > > Here's my setup in amanda.conf: > > define holdingd

Re: not recognizing holdingdisk define?

2014-02-27 Thread Jean-Francois Malouin
* Michael Stauffer [20140227 15:10]: > Amanda 3.3.4 > > Hi, > > Seems like I'm having trouble getting amanda to use my holding disk. > > Here's my setup in amanda.conf: > > define holdingdisk holdingdisk1 { > directory "/mnt/amanda-holdingdisk1/" > use 4500Gb > chunksize 100Gb > } Ah,

Re: not recognizing holdingdisk define?

2014-02-27 Thread Jean-Louis Martineau
Michael, You define the holdingdisk but you don't tell amanda to use it. Add: holdingdisk "holdingdisk1" after the define Jean-Louis On 02/27/2014 03:09 PM, Michael Stauffer wrote: Amanda 3.3.4 Hi, Seems like I'm having trouble getting amanda to use my holding disk. Here's my setup in am

Re: not recognizing holdingdisk define?

2014-02-27 Thread Jon LaBadie
On Thu, Feb 27, 2014 at 03:09:20PM -0500, Michael Stauffer wrote: > Amanda 3.3.4 > > Hi, > > Seems like I'm having trouble getting amanda to use my holding disk. > > Here's my setup in amanda.conf: > > define holdingdisk holdingdisk1 { > directory "/mnt/amanda-holdingdisk1/" > use 4500Gb >

Re: not recognizing holdingdisk define?

2014-02-27 Thread Debra S Baddorf
My config merely has holdingdisk hd1 { yada yada yada } Does it work because I didn't DEFINE it but merely declared it to be? Just wondering. It works fineā€¦. I've left the param in the dump type out, so I guess I'm getting the "auto" for yes, do use it. Deb On Feb 27, 2014, at

Re: not recognizing holdingdisk define?

2014-02-27 Thread Michael Stauffer
Great, thanks - that's the trick. I figured it was something like this but FWIW, this isn't in the amanda.conf docs. -M On Thu, Feb 27, 2014 at 3:21 PM, Jean-Louis Martineau wrote: > Michael, > > You define the holdingdisk but you don't tell amanda to use it. > > Add: > holdingdisk "holdingdi

Re: not recognizing holdingdisk define?

2014-02-27 Thread Michael Stauffer
Yes, it's 4.5TB. I's not clear to me from the docs whether a level 0 dump gets written fully to holding disk before it gets streamed to tape, or if streaming starts once one or more chunks have been written to the holding disk - anyone know? I'd prefer the latter for performance reasons. If the fo

Re: not recognizing holdingdisk define?

2014-02-27 Thread Debra S Baddorf
I believe the whole dump has to be done before it starts to write to tape. This prevents incomplete dumps from wasting space on the tape. I try to have numerous smaller DLEs, so that it takes several DLEs to fill a tape. Thus, when any one of them is finished, it can start going to tape. If

Re: not recognizing holdingdisk define?

2014-02-27 Thread Michael Stauffer
I see, I think then that's why there's a separate disk cache option (tapetype:part-cache-type)? So if have a very large DLE and I use disk for cache, it will spool chunks to disk and starting streaming to tape before the whole DLE is written to disk? I want to avoid memory cache since I'd end up wi

Re: not recognizing holdingdisk define?

2014-02-27 Thread Jon LaBadie
On Thu, Feb 27, 2014 at 04:44:13PM -0500, Michael Stauffer wrote: > Yes, it's 4.5TB. > > I's not clear to me from the docs whether a level 0 dump gets written fully > to holding disk before it gets streamed to tape, or if streaming starts > once one or more chunks have been written to the holding

Re: not recognizing holdingdisk define?

2014-02-28 Thread Jean-Louis Martineau
On 02/27/2014 05:54 PM, Michael Stauffer wrote: I see, I think then that's why there's a separate disk cache option (tapetype:part-cache-type)? So if have a very large DLE and I use disk for cache, it will spool chunks to disk and starting streaming to tape before the whole DLE is written to di

Re: not recognizing holdingdisk define?

2014-02-28 Thread Brian Cuttler
On Thu, Feb 27, 2014 at 10:20:29PM +, Debra S Baddorf wrote: > I believe the whole dump has to be done before it starts to write to tape. > This prevents incomplete dumps from wasting space on the tape. > > I try to have numerous smaller DLEs, so that it takes several DLEs to fill a > tape