freewebwithme

freewebwithme

Creating Oban job with cron expression

Hi Guys. This is first time using oban for scheduling periodic job
I want to send emails to all subscribed user at the last day of month and save result to database.

in config.exs

{Oban.Plugins.Cron,
     crontab: [
       {"55 23 30 4,6,9,11 *",MyApp.EmailWorker, args: %{type: "emails"}},
       {"55 23 31 1,3,5,7,8,10,12 *", MyApp.EmailWorker,
        args: %{type: "emails"}},
       {"55 23 28 2 *", MyApp.EmailWorker, args: %{type: "emails"}}
     ]}

In EmailWorker.ex

defmodule MyApp.EmailWorker do
  use Oban.Worker, queue: :emails, max_attempts: 3

  @impl Worker
  def perform(oban_job) do
     Subscribers.all()
     |> Enum.map(fn subscriber ->
         content = "some content"
         send_email(subscriber, content) |> save_to_database()
      end)
  end
end
  1. This will insert cron job at last day of the month and will do the job?
  2. How can I test if it is scheduled correctly?

Marked As Solved

sorentwo

sorentwo

Oban Core Team

You could simplify the schedule by sending at midnight on the first day of the month. However, there isn’t any mechanism for testing a cron schedule—you need to trust that Oban will respect the pattern you set.

Where Next?

Popular in Questions Top

albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
tduccuong
Hi, is there any work on GUI with Elixir, that is similar to Electron/Javascript? My idea is to bundle Phoenix and BEAM into a single se...
New
Fl4m3Ph03n1x
About me? ( if you have nothing better to do than reading about some random guy in the internet :stuck_out_tongue: ) Hello all, this is ...
New
earth10
Hi, I’m just starting to build a side-project with Elixir and Phoenix and doing some basic test with Elixir alone. What strikes me is th...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
rms.mrcs
Hi, I need to transform a list of numbers into a map where the keys are the indexes and the values are the original values of the list. ...
New
dotdotdotPaul
Okay, I’m having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I’m sure I’...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New

Other popular topics Top

Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New
TunkShif
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
274 41539 114
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
boundedvariable
I am going through the kafka architecture. All the features what the kafka is providing are already in Erlang. I would like hear your opi...
New

We're in Beta

About us Mission Statement