Giter Club home page Giter Club logo

Comments (7)

m90 avatar m90 commented on August 23, 2024 1

An alternative syntax for your use case would be something like 0 0,12 * * *

from docker-volume-backup.

m90 avatar m90 commented on August 23, 2024

This looks as if your setup somehow triggers two concurrent invocations of the backup procedure and the second invocation fails because it cannot acquire the exclusive lock that guarantees no concurrent invocations are happening.

My initial suspicion would be that Busybox's cron does not like your cron expression, but then again, I'm not sure why, docs themselves are rather stiff lipped:

crontab
crontab [-c DIR] [-u USER] [-ler]|[FILE]

        -c      Crontab directory
        -u      User
        -l      List crontab
        -e      Edit crontab
        -r      Delete crontab
        FILE    Replace crontab by FILE ('-': stdin)

Could you try using a super simple cron expression like 0 12 * * * and check whether the issue persists?

from docker-volume-backup.

zN3utr4l avatar zN3utr4l commented on August 23, 2024

Thanks, I'll try to use the latter (0 0,12 * * *) and I'll let you know in a couple of days

from docker-volume-backup.

zN3utr4l avatar zN3utr4l commented on August 23, 2024

I confirm, It's working : (0 0,12 * * *)

from docker-volume-backup.

m90 avatar m90 commented on August 23, 2024

Good to know and thanks for the feedback. I'll add a note to the README about the cron syntax being limited in strange ways.

from docker-volume-backup.

m90 avatar m90 commented on August 23, 2024

So it seems busybox should support the syntax you have been using:

/ # crontab -l
# do daily/weekly/monthly maintenance
# min   hour    day     month   weekday command
*/15    *       *       *       *       run-parts /etc/periodic/15min
0       *       *       *       *       run-parts /etc/periodic/hourly
0       2       *       *       *       run-parts /etc/periodic/daily
0       3       *       *       6       run-parts /etc/periodic/weekly
0       5       1       *       *       run-parts /etc/periodic/monthly

which makes me wonder if someone expands that * in the expression when creating the crontab entry. I'll need to do some further investigation on this.

from docker-volume-backup.

m90 avatar m90 commented on August 23, 2024

It seems this is caused by the 00 in your example. Not sure why, but I cannot repro the issue when using single 0s in any way.

from docker-volume-backup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.