Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a windows service that checks an email account and then saves off an attached PDF that has a barcode in it. I read the barcode and route the PDF to an appropriate directory. The service runs every 5 minutes and has been working well.

So my questions:

Should I create Play Job for this? Do I constantly needs hits on the site to kick off the site? Would the job run at 2am when there's no hits?

I am trying to learn what the limitations of the Jobs are and what the alternatives would be.

share|improve this question

2 Answers

up vote 1 down vote accepted

As Pere says, Play Jobs are very similar to Cron, in that it can use the CRON syntax to describe when to execute the task (using Quartz).

The only reason this would not work, is if you are running in Dev mode, as the server needs to be active before these tasks are executed, and Dev mode waits for the first hit before the server properly becomes active.

As for whether it is worth doing it, the one thing I love about Play jobs, is that it is clear in the code when they will be executed, and all of your application logic is held in one place, rather than distributed over different techniques and technologies.

One limitation however of having the timings of when the job should execute inside the code, is you have to make a code change if you want to re-configure, which normally has been left to sys-admin type people. This entirely depends on your viewpoint of which is most easily manageable.

share|improve this answer
You can decouple the schedules from the code to a certain extent by defining named schedules in the application configuration and referencing that name in the Job schedule annotation, see playframework.org/documentation/1.2.4/configuration#cron. – Tim Jan 23 '12 at 10:56

Jobs in Play are like CronJobs, you set the time/frequency and they will run even if there is no traffic incoming and it's 2am.

But if you already have the service running and working fine, unless you are moving to a new system were it would not be able to run (like Linux), there is no reason to reimplement it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.