Show HN: Posthook – Job Scheduling as a Service
21–30 of 76 posts
Re: Show HN: Posthook – Job Scheduling as a Service
#22Re: Show HN: Posthook – Job Scheduling as a Service
#23I use cloudwatch events, you can configure cron/frequency and define json to send out.
Re: Show HN: Posthook – Job Scheduling as a Service
#24This is a good niche with the rise of serverless as there isn't a super simple way to do this if you want to hit some job every so often. You could set a header key that all requests require and bam, you got security for an ongoing task. I use kue.js myself with jobs for node and glue stuff together with redis across servers but serverless seems like it could work for a lot of use cases coupled with this idea with le…
Re: Show HN: Posthook – Job Scheduling as a Service
#25Earlier quoted context omitted.
It does not support recurring scheduling at the moment. Right now the retry logic is just one retry 5 seconds after the first failure. At which point the hook gets set to a failed status and failure notifications get sent out. Retries are tricky because depending on how the job is implemented they can cause more harm than good. So I plan to refine that more based on customer feedback.
Seems like allowing the user to specify retry logic (if any) covers the "tricky" pieces. Let the user define the number of retries and delay between.
Re: Show HN: Posthook – Job Scheduling as a Service
#26I would be really interested in a distributed job running system with a scheduler. I want a UI where I can set jobs via a schedule that run on one of many workers. In that same UI I want to be able to look at failed jobs and see all of the output from that job. I don't want to have to ssh over to the box where the job ran to retrieve a log file. I once had a job where we used Tidal Enterprise Scheduler which poorly i…
Re: Show HN: Posthook – Job Scheduling as a Service
#27Hello all! I built Posthook as a simple solution for web applications to schedule one-off tasks. It lets you schedule a request back to your application for a certain time, with an optional JSON payload. It can be an alternative to running your own systems like Sidekiq, Celery, or Quartz and the operational overhead that comes along with them. Cron jobs and cloud provider tools like CloudWatch Events are also used fo…
Re: Show HN: Posthook – Job Scheduling as a Service
#28I would be really interested in a distributed job running system with a scheduler. I want a UI where I can set jobs via a schedule that run on one of many workers. In that same UI I want to be able to look at failed jobs and see all of the output from that job. I don't want to have to ssh over to the box where the job ran to retrieve a log file. I once had a job where we used Tidal Enterprise Scheduler which poorly i…
If you already have something like Jenkins you could probably bend that to your will, too.
Re: Show HN: Posthook – Job Scheduling as a Service
#29Re: Show HN: Posthook – Job Scheduling as a Service
#30This is pretty brilliant and fits an immediate need we have. Signing up today.