Hello 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…
Thank you for this. I've been on the hunt for this exact service for awhile now but a lot of the options were lacking. Excited to give this a try.
Show HN: Posthook – Job Scheduling as a Service
31–40 of 76 posts
Re: Show HN: Posthook – Job Scheduling as a Service
#32Earlier quoted context omitted.
Hey cgenuity, Great to see the simplicity, I am working on a very similar product, launched couple of days back on HN ( https://send.rest ). Best of luck. But have added couple of extra features in send.rest 1) Calling external APIs ( Think : pull data from Facebook while running this task in future and post data on my API or send SMS ) 2) Reports and retries ( Try 3 times or send me sms its failing ) 3) Recurrence (…
With send.rest and using hook, can I specify a POST and POST data and custom request headers?
Re: Show HN: Posthook – Job Scheduling as a Service
#33Does anyone know of a free service that lets you run a few scheduled CURL requests each week?
Re: Show HN: Posthook – Job Scheduling as a Service
#34That said, I've wanted something akin to a distributed cron, without the complexities of workflow engines like airflow or azkaban, so I started writing a little HTTP API for scheduling jobs [1], which is mostly complete except for configurable retry logic and failure notifications. To schedule a periodic job that runs every 30 seconds,
curl http://$HOSTNAME/jobs \
-d '{ "title" : "Healthcheck"
, "code" : "curl example.com"
, "frequency" : "30 seconds" }'
[1] https://github.com/finix-payments/jobsRe: Show HN: Posthook – Job Scheduling as a Service
#35Re: Show HN: Posthook – Job Scheduling as a Service
#36The Azure service also supports logging (60 days), retry options, and advanced recurrence schedules (every other Tue, etc.)?
Re: Show HN: Posthook – Job Scheduling as a Service
#37How do you compare/compete against something like Azure Scheduler which gives you 500 jobs with unlimited executions (max 1 per minute) for $14/month. The Azure service also supports logging (60 days), retry options, and advanced recurrence schedules (every other Tue, etc.)?
Re: Show HN: Posthook – Job Scheduling as a Service
#38Re: Show HN: Posthook – Job Scheduling as a Service
#39That's something I will definitely use soon! Great simple idea indeed. Just one question regarding the criteria to come up with the current pricing tiers: isn't it a bit too expensive for an one-off scheduling? I mean, over time I could totally see this as a commodity service going by the same price of popular VPS offerings (in tandem: they increase it, you increase it too, prices go down yours goes too).
Re: Show HN: Posthook – Job Scheduling as a Service
#40Hello 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…
Does Posthook support recurring scheduling (i.e. every 15 minutes)? Also, is there retry logic? I.E. 3 retries, delay 60 seconds between retries?