quantum-core

:watch: Cron-like job scheduler for Elixir

Github星跟蹤圖

Quantum

Cron-like job scheduler for Elixir.

Financial Contributors on Open Collective Hex.pm Version
Hex docs
Build Status
Coverage Status
Inline docs
Hex.pm

This README follows master, which may not be the currently published version. Here are the
docs for the latest published version of Quantum.

:warning: If you're using a version below v2.2.6, please update immediately. :warning:
See Issue #321 for more details.

Setup

To use Quantum in your project, edit the mix.exs file and add Quantum to

1. the list of dependencies:

defp deps do
  [{:quantum, "~> 2.3"},
   {:timex, "~> 3.0"}]
end

2. and create a scheduler for your app:

defmodule YourApp.Scheduler do
  use Quantum.Scheduler,
    otp_app: :your_app
end

3. and your application's supervision tree:

defmodule YourApp.Application do
  use Application

  def start(_type, _args) do
    import Supervisor.Spec, warn: false

    children = [
      # This is the new line
      YourApp.Scheduler
    ]

    opts = [strategy: :one_for_one, name: YourApp.Supervisor]
    Supervisor.start_link(children, opts)
  end
end

Troubleshooting

To see more transparently what quantum is doing, configure the logger to display :debug messages.

config :logger,
  level: :debug

If you want do use the logger in debug-level without the messages from quantum:

config :your_app, YourApp.Scheduler,
  debug_logging: false

If you encounter any problems with quantum, please search if there is already an
open issue addressing the problem.

Otherwise feel free to open an issue. Please include debug logs.

Migrate to V2

See the Migration Guide.

Usage

Configure your cronjobs in your config/config.exs like this:

config :your_app, YourApp.Scheduler,
  jobs: [
    # Every minute
    {"* * * * *",      {Heartbeat, :send, []}},
    # Every 15 minutes
    {"*/15 * * * *",   fn -> System.cmd("rm", ["/tmp/tmp_"]) end},
    # Runs on 18, 20, 22, 0, 2, 4, 6:
    {"0 18-6/2 * * *", fn -> :mnesia.backup('/var/backup/mnesia') end},
    # Runs every midnight:
    {"@daily",         {Backup, :backup, []}}
  ]

More details on the usage can be found in the Documentation

Contribution

This project uses the Collective Code Construction Contract (C4) for all code changes.

"Everyone, without distinction or discrimination, SHALL have an equal right to become a Contributor under the
terms of this contract."

tl;dr

  1. Check for open issues or open a new issue to start a discussion around a problem.
  2. Issues SHALL be named as "Problem: description of the problem".
  3. Fork the quantum-elixir repository on GitHub to start making your changes
  4. If possible, write a test which shows that the problem was solved.
  5. Send a pull request.
  6. Pull requests SHALL be named as "Solution: description of your solution"
  7. Your pull request is merged and you are added to the list of contributors

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]










License

Apache License, Version 2.0

主要指標

概覽
名稱與所有者quantum-elixir/quantum-core
主編程語言Elixir
編程語言Elixir (語言數: 1)
平台
許可證Apache License 2.0
所有者活动
創建於2015-04-27 11:56:49
推送於2025-05-21 20:02:24
最后一次提交
發布數66
最新版本名稱v3.5.3 (發布於 2024-02-29 11:55:53)
第一版名稱v1.0.0 (發布於 )
用户参与
星數2.4k
關注者數30
派生數148
提交數811
已啟用問題?
問題數236
打開的問題數9
拉請求數358
打開的拉請求數1
關閉的拉請求數38
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?