jerry

jerry

Hello,

Is there a way I can write an elixir script and schedule it in a Linux cron job to perform some repetitive tasks?

I would like the script to invoke some Ecto functions from modules defined inside an Elixir mix project.

Any help would be most appreciated.

Thanks.

Jerry

Showing Posts 1 to 6

sweeneydavidj

sweeneydavidj

Hi,
here is a nice article on using Elixir as a scripting language…
https://thoughtbot.com/blog/is-elixir-a-scripting-language
Enjoy :slight_smile:

jerry

jerry OP

Hi @sweeneydavidj,

Thanks for your response.

I had read and tried the steps outlined in the guide ealier before my post here.
Below is the error I get when I attempt to run the standalone script with mix:

13:06:27.160 [error] Failed to start Ranch listener Test.Router.HTTP in :ranch_tcp:listen([cacerts: :…, key: :…, cert: :…, port: 80, ip: {0, 0, 0, 0}]) for reason :eaddrinuse (address already in use)

13:06:27.180 [info] Application test exited: Test.Application.start(:normal, ) returned an error: shutdown: failed to start child: {:ranch_listener_sup, Test.Router.HTTP}
** (EXIT) shutdown: failed to start child: :ranch_acceptors_sup
** (EXIT) {:listen_error, Test.Router.HTTP, :eaddrinuse}
** (Mix) Could not start application test: Test.Application.start(:normal, ) returned an error: shutdown: failed to start child: {:ranch_listener_sup, Test.Router.HTTP}
** (EXIT) shutdown: failed to start child: :ranch_acceptors_sup
** (EXIT) {:listen_error, Test.Router.HTTP, :eaddrinuse}

NobbZ

NobbZ

Your cron seems to want to start the application a second time, rather than to communicate with it, therefore ranch can’t boot, as the port it wants to listen on, is already in use by your main instance of the application.

If you use distillery just use a custom task, if you are using 1.9-releases, use their equivalent, if you use mix (as a command via cron) then make sure to use --no-start (IIRC), if you use an escript make sure it does not start the application and its dependencies, but just loads them.

jerry

jerry OP

Hello @NobbZ,

Thanks for the response.
It worked for me.

I, however, have another issue still pertaining to this same activity.
When the function that has been invoked by the standalone script from a module in the main project has some Ecto processes to run,
I get the error below:

** (ArgumentError) repo Test.Repo is not started, please ensure it is part of your supervision tree
lib/ecto/query/planner.ex:148: Ecto.Query.Planner.query_lookup/6
lib/ecto/query/planner.ex:131: Ecto.Query.Planner.query_with_cache/7
lib/ecto/repo/queryable.ex:124: Ecto.Repo.Queryable.execute/5
lib/ecto/repo/queryable.ex:37: Ecto.Repo.Queryable.all/4
lib/test/transactions.ex:387: Test.Transaction.process_staged_requests/0
scripts/staged_requests.exs:5: (module)

I would be grateful once again for your assistance.

Thanks.

Jerry

NobbZ

NobbZ

Well, you need to start your ecto repository without the rest of the application.

Be aware that it might then crash as well, as dependencies for ecto might be missing.

To be honest, the easiest thing is probably to use quantum and trigger the task from within your application.

jerry

jerry OP

Thanks very much, @NobbZ.

I’ll go ahead and use Quantum instead.

Regards,

Jerry

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews