Proposal: kool task #335
Unanswered
fabriciojs
asked this question in
Ideas
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
Other than monitoring success/failure, keeping an eye out for resources consumption (CPU/memory) would be very very interesting. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A recurring problem we face is running certain long running tasks over SSH. It's usual to leverage tools like
tmux
,screen
, or the good oldnohup task >> 2>&1 &
or((nohup task &)&)
for detaching.On top of simply getting it to run, another challenge is getting error/success notifications (on the same fashion as modern error tracking tools). Besides the actual output for auditing which also lacks standards on how to handle, and usually generates some noise on the filesystem.
The idea that emerges contemplates:
kool task backup
:backup
is a script defined withinkool.yml
and might take long. We want this command to run safely, alert us in case of failure/success, and have the output in a way we can easily refer to it later.Beta Was this translation helpful? Give feedback.
All reactions