2016-08-30

According to the parse-server migration guide we could use something like Kue and Kue-UI to emulate the parse.com scheduled jobs functionality.

I haven't implemented Kue or Kue-ui, but looking at the guides, it doesn't look like it provides anywhere close to the same level of functionality as the existing parse.com scheduled jobs. Is this observation correct? Has someone implemented this? Is it true that jobs have to be scheduled through Kue in javascript and Kue-ui only provides a summary of the current status of the jobs and new schedules can't be added through Kue-ui?

Has anyone tried to achieve the same outcome with something like Jenkins? So this is what I had in mind:

each job would still be defined in the cloud code Parse.Cloud.job("job01", function(request, response) {));

modify parse-server slightly to expose job at a similar url to existing cloud functions e.g. /parse/jobs/job01 (this might exist in parse-server soon: github.com/ParsePlatform/parse-server/pull/2560)

create a new jenkins job do a curl at that url

define a cron like schedule for that jenkins job from within the jenkins web ui

I can see the benefits being:

little to no coding

setting up jenkins sounds like much less work then setting up kue, redis and kue-ui

existing cloud job / definitions stay exactly the same

schedule and manually trigger jobs through the jenkins web ui

The only thing that the current parse.com schedule jobs / cloud jobs can do that a jenkins based solution can't is being able to select a job name to create a new schedule for from a drop down list.

Am I missing something? How is everyone else going about this? Thanks.

Show more