Fl4m3Ph03n1x
Replacing crontab with elixir
Background
I saw in a recent talk by @sasajuric in a table that he replaces conrjobs, crontabs, scripts and more using Elixir. I have tried to use mix scripts but from my experience you always end up needing to go down and execute some OS level commands using System.cmd which completely destroys the purpose and makes the script OS dependent.
Questions
- How to replace cronjobs with Elixir scripts? (without using anything from the OS?)
- How do you copy, replace, move, download files using just Elixir and not the OS commands we usually rely on?
Most Liked
sasajuric
There seems to be some confusion here. I don’t replace cronjobs with mix scripts. What I tend to do, when it’s possible, is run periodical jobs straight from the system itself. I.e. I spawn a process which will periodically execute a job. This is not always possible (or simple), but when it is (and IME it often is), then you can consolidate more of the implementation of the system into a single place.
NobbZ
None of my systems uses any version of cron. Me and my co workers have migrated to systemds timer units.
LostKobrakai
I just used crontab as the example already mentioned. There are surely other ways to schedule stuff even in the beam itself. The point was rather that it’s a tradeoff to be made if you reimplement something in elixir (if it doesn’t exist) or if it’s simpler to use OS level tools already existing. It makes sense to move stuff into elixir if the overhead of managing the external system is extensive enough. If not just use the OS level tool until it no longer fits the above premise.
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #hex
- #security









