Re: [Bacula-users] Bacula schedule
Thanks Ana for quick response. I will check. Thank you, Ankush More From: Ana Emília M. Arruda [mailto:emiliaarr...@gmail.com] Sent: Monday, October 19, 2015 10:50 PM To: More, Ankush Cc: bacula-users@lists.sourceforge.net Subject: Re: [Bacula-users] Bacula schedule Hello Ankush, On Mon, Oct 19, 2015 at 1:22 PM, More, Ankush mailto:ankush.m...@capgemini.com>> wrote: Team, Below is schedule configure in dir file. Bacula version 7.x Backup is not happening as per schedule , Notice full and differential backup happing same day. is there wrong in schedule? Schedule { Name = "Billable4" Run = Full 1st-3rd sun at 15:00 this will run 1st, 2nd and 3rd sundays Run = Incremental mon-thu at 22:00 Run = Differential 2nd-4th sun at 15:00 this will run 2nd, 3rd and 4th sundays So, they are coinciding in 2nd and 3rd sundays. I suppose you want to run them interchangeably: Run = Full 1st,3rd sun at 15:00 Run = Differential 2nd,4th sun at 15:00 If you have a 5th sunday, no job will run ok? Maybe you wanna run the full on your 5th sunday: Run = Full 1st,3rd, 5th sun at 15:00 The values are comma seppareted. Thank you, Ankush More Best regards, Ana -- ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net<mailto:Bacula-users@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/bacula-users -- ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula schedule
Hello Ankush, On Mon, Oct 19, 2015 at 1:22 PM, More, Ankush wrote: > Team, > > > > Below is schedule configure in dir file. Bacula version 7.x > > Backup is not happening as per schedule , Notice full and differential > backup happing same day. > > is there wrong in schedule? > > > > Schedule { > > Name = "Billable4" > > > > Run = Full 1st-3rd sun at 15:00 > > this will run 1st, 2nd and 3rd sundays > Run = Incremental mon-thu at 22:00 > > > > Run = Differential 2nd-4th sun at 15:00 > > this will run 2nd, 3rd and 4th sundays So, they are coinciding in 2nd and 3rd sundays. I suppose you want to run them interchangeably: Run = Full 1st,3rd sun at 15:00 Run = Differential 2nd,4th sun at 15:00 If you have a 5th sunday, no job will run ok? Maybe you wanna run the full on your 5th sunday: Run = Full 1st,3rd, 5th sun at 15:00 The values are comma seppareted. > > > > > Thank you, > > Ankush More > Best regards, Ana > > > > -- > > ___ > Bacula-users mailing list > Bacula-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bacula-users > > -- ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Bacula schedule
Team, Below is schedule configure in dir file. Bacula version 7.x Backup is not happening as per schedule , Notice full and differential backup happing same day. is there wrong in schedule? Schedule { Name = "Billable4" Run = Full 1st-3rd sun at 15:00 Run = Incremental mon-thu at 22:00 Run = Differential 2nd-4th sun at 15:00 Thank you, Ankush More -- ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula schedule - One tape for 2 days.
Hi, Thanks for your reply. I have thought of defining the number of the weeks throughout the whole year but was just thinking if there is any other easier option. When I was told to do the backup routine in this fashion, I didn't really have in mind that it would be so tricky due to my misunderstanding on how the schedule syntax works. On Thu, Jun 19, 2014 at 3:40 PM, Andreas Nastke wrote: > hi, > > problem seems to be 'odd week of a month'. > what if the week starts with a tuesday? > > why do you try to divide a month into two > groups which -- almost always -- contain a > different number of members? > > you could reduce the conflict to once a year > by defining odd/even weeks of the year. > > > Gi Dot schrieb: > >> Hi, >> >> I'm having a bit of a problem with my backup schedule. The requirement is >> to use 1 tape for 2 days incremental backup and 1 tape for 1 day full >> backup. The tapes will be classified into 2 groups, the odd week(1st, 3rd, >> 5th week of the month), and the even week(2nd and 4th week of the month). >> Let's call the odd week as Week 1, and even week as Week 2. >> >> Example: >> >> Week 1. >> Tape A: Monday - Tuesday (Incremental) >> Tape B: Wednesday - Thursday (Incremental) >> Tape C: Friday (Full) >> Tape D: Saturday - Sunday (Incremental) >> >> Week 2. >> Tape E: Monday - Tuesday (Incremental) >> Tape F: Wednesday - Thursday (Incremental) >> Tape G: Friday (Full) >> Tape H: Saturday - Sunday (Incremental) >> >> My problem is for incremental backup schedule. An excerpt of my schedule: >> >> Schedule { >> Name = "SatSunW1" >> Run = Incremental 1st sat-sun at 13:00 >> Run = Incremental 3rd sat-sun at 13:00 >> Run = Incremental 5th sat-sun at 13:00 >> } >> >> Schedule { >> Name = "SatSunW2" >> Run = Incremental 2nd sat-sun at 13:00 >> Run = Incremental 4th sat-sun at 13:00 >> } >> >> This works beautifully for Saturdays AND Sundays that fall on the same >> group of either odd or even day in the month. Else, it'll fail. >> >> Example where it works: >> WK Mo Tu We Th Fr Sa Su 18 ...1234 19 567891011 20 12131415161718 21 >> 1920 >> 2122232425 22 262728293031. >> Saturday, May3rd and Sunday, May 4th. Both are in the same week(1st week), >> in the month of May. This works well. >> >> >> Example where it doesn't work: >> WK Mo Tu We Th Fr Sa Su 22 ..1 23 2345678 24 9101112131415 25 >> 16171819 >> 202122 26 23242526272829 27 30 >> >> Saturday, June 14th and Sunday, June 15th. 14th June is the second >> Saturday >> in the month of June, while 15th June is the 3rd Sunday in the month of >> June. Thus, on Saturday, schedule SatSunW2 will be triggered (Tape H in >> the >> drive), but on Sunday, schedule SatSunW1 will be triggered but it won't >> run >> because it is waiting for Tape D. I thought my schedule syntax is right >> because I'm using day-range to run a backup job on Saturday and the next >> day, Sunday. >> >> What would be the best way for me to solve my schedule problem? >> >> Thanks. >> >> p.s. Sorry for the lengthy explanation, I tried my best to write up my >> problem the best way I could. >> >> >> >> >> >> >> -- >> HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions >> Find What Matters Most in Your Big Data with HPCC Systems >> Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. >> Leverages Graph Analysis for Fast Processing & Easy Data Exploration >> http://p.sf.net/sfu/hpccsystems >> >> >> >> >> ___ >> Bacula-users mailing list >> Bacula-users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/bacula-users >> > > -- > Mit besten Grüßen / Kind Regards > > Andreas Nastke > IT System Management > > g/d/p Markt- und Sozialforschung GmbH > Ein Unternehmen der Forschungsgruppe g/d/p > Richardstr. 18 > D-22081 Hamburg > Fon: +49 (0)40 / 29876-117 > Fax: +49 (0)40 / 29876-127 > nas...@gdp-group.com > www.gdp-group.com > > Sitz der Gesellschaft ist Hamburg, Handelsregister Hamburg, HRB 40482 > Geschäftsführer: Christa Braaß, Volker Rohweder > > --- > This e-mail may contain confidential and/or privileged information. If > you are not the intended recipient please notify the sender and delete > this e-mail from your whole system. Any unauthorised copying, disclosure > or distribution of the material in this e-mail is strictly forbidden. > --- > -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Le
[Bacula-users] Bacula schedule - One tape for 2 days.
Hi, I'm having a bit of a problem with my backup schedule. The requirement is to use 1 tape for 2 days incremental backup and 1 tape for 1 day full backup. The tapes will be classified into 2 groups, the odd week(1st, 3rd, 5th week of the month), and the even week(2nd and 4th week of the month). Let's call the odd week as Week 1, and even week as Week 2. Example: Week 1. Tape A: Monday - Tuesday (Incremental) Tape B: Wednesday - Thursday (Incremental) Tape C: Friday (Full) Tape D: Saturday - Sunday (Incremental) Week 2. Tape E: Monday - Tuesday (Incremental) Tape F: Wednesday - Thursday (Incremental) Tape G: Friday (Full) Tape H: Saturday - Sunday (Incremental) My problem is for incremental backup schedule. An excerpt of my schedule: Schedule { Name = "SatSunW1" Run = Incremental 1st sat-sun at 13:00 Run = Incremental 3rd sat-sun at 13:00 Run = Incremental 5th sat-sun at 13:00 } Schedule { Name = "SatSunW2" Run = Incremental 2nd sat-sun at 13:00 Run = Incremental 4th sat-sun at 13:00 } This works beautifully for Saturdays AND Sundays that fall on the same group of either odd or even day in the month. Else, it'll fail. Example where it works: WK Mo Tu We Th Fr Sa Su 18 ...1234 19 567891011 20 12131415161718 21 1920 2122232425 22 262728293031. Saturday, May3rd and Sunday, May 4th. Both are in the same week(1st week), in the month of May. This works well. Example where it doesn't work: WK Mo Tu We Th Fr Sa Su 22 ..1 23 2345678 24 9101112131415 25 16171819 202122 26 23242526272829 27 30 Saturday, June 14th and Sunday, June 15th. 14th June is the second Saturday in the month of June, while 15th June is the 3rd Sunday in the month of June. Thus, on Saturday, schedule SatSunW2 will be triggered (Tape H in the drive), but on Sunday, schedule SatSunW1 will be triggered but it won't run because it is waiting for Tape D. I thought my schedule syntax is right because I'm using day-range to run a backup job on Saturday and the next day, Sunday. What would be the best way for me to solve my schedule problem? Thanks. p.s. Sorry for the lengthy explanation, I tried my best to write up my problem the best way I could. -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula Schedule
Am 26.02.2011 um 00:41 schrieb John Drescher: > On Fri, Feb 25, 2011 at 6:39 PM, John Drescher > wrote: >>> I have noticed in my install of Bacula there is a WeeklyCycle >>> schedule >>> configured as follows: >>> Full: 1st Sunday >>> Differential: 2nd-5th Sunday >>> Incremental: Mon-Sat >>> Does bacula delete incrementals between Fulls and Differentials. >> >> No > > But by your retention policy and a separate pool for the levels you > can do that. The default File retention period is 60 days. The default Job Retention period is 180 days. http://www.bacula.org/5.0.x-manuals/en/main/main/Catalog_Maintenance.html#SECTION00451 PM -- Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula Schedule
On Fri, Feb 25, 2011 at 6:39 PM, John Drescher wrote: >> I have noticed in my install of Bacula there is a WeeklyCycle schedule >> configured as follows: >> Full: 1st Sunday >> Differential: 2nd-5th Sunday >> Incremental: Mon-Sat >> Does bacula delete incrementals between Fulls and Differentials. > > No But by your retention policy and a separate pool for the levels you can do that. John -- Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula Schedule
> I have noticed in my install of Bacula there is a WeeklyCycle schedule > configured as follows: > Full: 1st Sunday > Differential: 2nd-5th Sunday > Incremental: Mon-Sat > Does bacula delete incrementals between Fulls and Differentials. No > If not what > is the purpose of mixing Differentials and Incrementals if you have to store > all of them? Faster restores. > I understand one benefit of a restore requiring less backups to > achieve the recovery point. But is seems to create an added storage burden. John -- Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Bacula Schedule
I have noticed in my install of Bacula there is a WeeklyCycle schedule configured as follows: Full: 1st Sunday Differential: 2nd-5th Sunday Incremental: Mon-Sat Does bacula delete incrementals between Fulls and Differentials. If not what is the purpose of mixing Differentials and Incrementals if you have to store all of them? I understand one benefit of a restore requiring less backups to achieve the recovery point. But is seems to create an added storage burden. -- Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Bacula Schedule question
Tolj Mario writes: > I need to do : > > - a Full backup the 1st monday of a month > - a Full backup the next mondays of this month So, you need Full backup every monday ;) You can write Run = Full monday at 23:00 > - a Differential backup from tuesday to friday Do you understand difference between Differential and Incremental? -- Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Bacula Schedule question
Hello, Sorry if my english isn't very well :) I'm trying to schedule Bacula Job, but i'm not sure how to do what i want. I need to do : - a Full backup the 1st monday of a month - a Full backup the next mondays of this month - a Differential backup from tuesday to friday Here is what i have write in my bacula-dir.conf Schedule { Name = "schedulehome" Run = Full 1st monday at 23:00 Run = Full 2nd-5th monday at 23:00 Run = Differential tuesday-friday at 23:00 } Is it ok ? -- Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] bacula schedule
On Monday 04 July 2005 15:31, adriano wrote: > i was in trouble in configuring schedule resource on bacula. If a > want to backup 20 machines , do i need to configure one schedule > resorse for each job? No. Generally you want to start a certain number of machines, at a time. In your case that could feasibly be all of them (20). Make one Schedule and for each Client create a Job for backing up each Client. I setup a File Storage device for each Client. You can them set a limit for the maximum number of Jobs for your DIR and SD to keep control on the system. You could also manipulate the ordering of each Job by setting its priority appropriately. Resources: Job x20 Client x20 Storage x20 Schedule x1 You might also want to setup a separate database for each client's catalogue, which might (does?) allow for more jobs to run at once. I would guess that 20 concurrent jobs each with their own sqlite2 database would run quicker than 20 concurrent jobs sharing a single MySQL database (on the same system, multi-system setups are another matter). I plan to run some tests in this area soon... HTH, -- Dominic Marks --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] bacula schedule
Title: Mensagem i was in trouble in configuring schedule resource on bacula. If a want to backup 20 machines , do i need to configure one schedule resorse for each job?