Skip to content
#

task-scheduler

Here are 249 public repositories matching this topic...

gnubyte
gnubyte commented Jun 19, 2019

GM Folks,

Small favor/minor request -

For those of us running containerized processes via docker, kubernetes, etc. can we have the
.run() function added as an example to the readme.

I found myself looking through the code for this and think it may be helpful for those coming through later.

For example, see bottom of code snippet

from redis import Redis
from rq import Queue
mratsim
mratsim commented Nov 29, 2019

Weave / Project Picasso focuses on CPU-bound tasks, i.e. those are non-blocking and you can throw more CPU at it to have your result faster.

For IO-bound tasks the idea was to defer to specialized libraries like asyncdispatch and Chronos that use OS primitives (epoll/IOCP/kqueue) to handle IO efficiently

meiliang86
meiliang86 commented Oct 31, 2019

Currently Activity heartbeat can only be called from Activity thread. This is quite inconvenient if people want to spawn timers and offload the heartbeat logic to the timer thread, etc.

Since heartbeat is asynchronous anyways, it does make sense to relax this requirement. So that heartbeat can be called from any thread. The caveat is that caller needs to specify other information like domainID,

kilgaloon
kilgaloon commented Sep 24, 2019

Introduce new command that read/tail error/info log

Possible read commands:

  • leprechaun error-log
  • leprechaun info-log

Possible tail commands:

  • leprechaun tail-error-log
  • leprechaun tail-info-log

These commands will try to read global error and info logs if they are specified as global. Every service can have it's own error and info log so we should include default commands in age

Improve this page

Add a description, image, and links to the task-scheduler topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the task-scheduler topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.