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

Say for example, an accounting service has a need to schedule ledger update jobs,

  1. should the accounting service include it's own scheduler? or,
  2. should job scheduling be a shared service?

I guess option (a) makes the service more autonomous?

What other criteria should be involved in making the decision?

share|improve this question

1 Answer

up vote 1 down vote accepted

Job scheduler is usually an off-the-shelf component (like quartz) so you'd probably use that (many times it is embedded in the service host anyway).

In any event when you decide whether or not to create a separate service vs. having a component/library used internally within services you should consider the overhead of maintaining it, developing it as a separate unit etc. (see the nano-services antipattern)

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.