python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to ensure daily email is only sent once over multiple instances in Django app?
I am trying to scheduling a job/CRON job, on Django app that uses APScheduler to send out a daily email at a scheduled time morning 9 AM. And We have 5 instances/pods in production.
The problem is eac...
SAGY
Votes: 0
Answers: 0
Sending signals from APScheduler background thread to Flask app
I am trying to build an application that lets you schedule and execute multiple long running jobs in a background thread using APScheduler. To control the job schedules and view the (live) output of t...
peterrus
Votes: 0
Answers: 1
Stop the running instances when max_instances is reached
I'm using apscheduler-django and I created a task that loops every 10 seconds.
This function will make a request to an API and save the content to my database (PostgreSQL).
This is my task:
scheduler....
Abolfazl Ghaemi
Votes: 0
Answers: 1
Submit worker functions in dask distributed without waiting for the functions to end
I have this python code that uses the apscheduler library to submit processes, it works fine:
from apscheduler.schedulers.background import BackgroundScheduler
scheduler = BackgroundScheduler()
array...
ps0604
Votes: 0
Answers: 1