Skip to main content

File event based task scheduler using the linux kernel's inotify API

Project description

Cronify is a file event based task scheduler that uses the Linux kernels’ inotify API. An Inotify cron implementation if you will.

It allows for triggering of actions when a file event occurs, with configurable action parameters that can be file data such as file name and file datetime and for scheduling actions to be run within a certain time period among other things.

Once installed, it is run as a service, or daemon, much like cron itself. Cronify may also be used as a python library.

The service’s configuration is YAML based.

https://api.travis-ci.org/pkittenis/cronify.png?branch=master

Installation

Requires a running Linux kernel >=2.6.13

$ sudo pip install cronify
$ sudo chmod +x /etc/init.d/cronifyd
# Install a /etc/cronify.yaml file as in the examples below
# Once a configuration file is in place, start the cronify daemon with the provided init script
$ sudo /etc/init.d/cronifyd start

Configuration Example

$ cat /etc/cronify.yaml

/tmp/testdir :
    name : Access log watcher
    recurse : false
    filemasks :
      somefile.* :
        actions :
          - processFile :
              args:
                - $filename
                - YYYYMMDD
              cmd: echo
$ sudo /etc/init.d/cronifyd start
$ touch /tmp/testdir/somefile.txt
$ tail /var/log/cronify/cronify.log

cronify.cronify - Thread-1 - 2013-03-26 17:40:40,485 - INFO - Got result from action {'cmd': 'echo', 'args': ['echo', '/tmp/testdir/somefile.txt', '20130326']} - /tmp/testdir/somefile.txt 20130326

More complex configuration with multiple watchers and delayed actions

See example.yaml in repository for complete list of accepted configuration

$ cat /etc/cronify.yaml

/tmp/testdir :
    name : Access log watcher
    recurse : false
    filemasks :
      access_log_YYYYMMDD.* :
        actions :
          - processFile :
              args:
                - $filename
                - YYYYMMDD
              cmd: process

/tmp/testdir2 :
    name : Other log watcher
    recurse : true
    filemasks :
      other_log_YYYYMMDD.* :
         actions :
          # Actions to perform on the file in sequence.
          - processFile :
            # Do not start action before this time. Action is queued until start_time if triggered prior to it.
            # This configuration setting is optional
            start_time: 0800
            # Do not start action after this time. Action is queued until next start_time if triggered after end time
            # This configuration setting is optional
            end_time: 1000
            args:
              - $filename
              - YYYYMMDD
            cmd: process

Known limitations

  • Currently queued actions will be _lost_ upon a service restart.

  • When using recurse, inotify is limited to watching N number of subdirectories in the tree, where N is value of /proc/sys/fs/inotify/max_user_watches. See http://linux.die.net/man/7/inotify

    User can increase this limit by modifying /proc/sys/fs/inotify/max_user_watches

  • When watching an NFS directory on NFS server side, only events made by the NFS server will be seen by the inotify API and following, cronify itself.

    When watching an NFS directory on NFS client side, no events are seen by inotify at all.

    In other words if you were planning on watching for a file that is created by an NFS client, this is currently not possible.

githalytics.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cronify-0.13.tar.gz (12.7 kB view details)

Uploaded Source

Built Distributions

cronify-0.13-py3-none-any.whl (28.9 kB view details)

Uploaded Python 3

cronify-0.13-py2-none-any.whl (16.0 kB view details)

Uploaded Python 2

File details

Details for the file cronify-0.13.tar.gz.

File metadata

  • Download URL: cronify-0.13.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cronify-0.13.tar.gz
Algorithm Hash digest
SHA256 2a4f7690a1d23add92a91026bccd7303e6682cf3cabfa1d97bef495dec108114
MD5 5ded46ead7fb76f19be97e78dbab79de
BLAKE2b-256 36340c8f2d8fafbc6686fc883d5048961daaf42bfd6c630ecb3027dd8780b5cd

See more details on using hashes here.

File details

Details for the file cronify-0.13-py3-none-any.whl.

File metadata

File hashes

Hashes for cronify-0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 6fbd676ecb1716ade159c5e4d9469df91534b83c28f034549235b1f09a0161d5
MD5 f9f4487aadf96ba0ed8929f0a69a7eaa
BLAKE2b-256 31c997fa09d67f74eb40191b93fbedeb4dd511691f66e7a6b04782663ceecb26

See more details on using hashes here.

File details

Details for the file cronify-0.13-py2-none-any.whl.

File metadata

File hashes

Hashes for cronify-0.13-py2-none-any.whl
Algorithm Hash digest
SHA256 c2fbfa861da0895f1f388f892bc89b1f383d6a7d61c40d60e192beb1ddf658e8
MD5 69e4958fd5c39ea0e28beb6fd506edf3
BLAKE2b-256 8c5f95b9c4e10f15724ee0660072f167ad5a1d2e499ec186480af123c6a58ba7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page