1

Does anyone know how can I set up Cron Jobs dynamically with Firebase? I want to build a rule engine using which the Client can specify the rules, actions, and schedule and based on that I need to schedule that particular rule. Since the scheduling is in the hand of the Client. I can set a predefined frequency for the JOB.

I know in Node.js I can do it with libraries like "node-schedule". But since the Client strictly wants to use Firebase and Angular. I can't use that solution

Pathik Patel
  • 195
  • 1
  • 7

1 Answers1

2

There is no way to dynamically create schedule functions with just Cloud Functions.

The two most common approaches are:

Also see:

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807