diff --git a/java/google/registry/batch/ExpandRecurringBillingEventsAction.java b/java/google/registry/batch/ExpandRecurringBillingEventsAction.java index f511453de..51c6d2517 100644 --- a/java/google/registry/batch/ExpandRecurringBillingEventsAction.java +++ b/java/google/registry/batch/ExpandRecurringBillingEventsAction.java @@ -66,8 +66,6 @@ import org.joda.time.DateTime; * {@code cursorTime}) represents the inclusive lower bound on the range of billing times that will * be expanded as a result of the job (the exclusive upper bound being the execution time of the * job). - * - *

NOTE: This is not yet production ready and not configured to run. */ @Action(path = "/_dr/task/expandRecurringBillingEvents") public class ExpandRecurringBillingEventsAction implements Runnable { diff --git a/java/google/registry/env/alpha/default/WEB-INF/cron.xml b/java/google/registry/env/alpha/default/WEB-INF/cron.xml index 824faa78c..4c5b8e781 100644 --- a/java/google/registry/env/alpha/default/WEB-INF/cron.xml +++ b/java/google/registry/env/alpha/default/WEB-INF/cron.xml @@ -144,6 +144,17 @@ backend + + + + This job runs a mapreduce that creates synthetic OneTime billing events from Recurring billing + events. Events are created for all instances of Recurring billing events that should exist + between the RECURRING_BILLING cursor's time and the execution time of the mapreduce. + + every day 03:00 + backend + + diff --git a/java/google/registry/env/production/default/WEB-INF/cron.xml b/java/google/registry/env/production/default/WEB-INF/cron.xml index c186eef22..e73efee3e 100644 --- a/java/google/registry/env/production/default/WEB-INF/cron.xml +++ b/java/google/registry/env/production/default/WEB-INF/cron.xml @@ -155,6 +155,17 @@ backend + + + + This job runs a mapreduce that creates synthetic OneTime billing events from Recurring billing + events. Events are created for all instances of Recurring billing events that should exist + between the RECURRING_BILLING cursor's time and the execution time of the mapreduce. + + every day 03:00 + backend + + diff --git a/java/google/registry/env/sandbox/default/WEB-INF/cron.xml b/java/google/registry/env/sandbox/default/WEB-INF/cron.xml index f52d2c73e..7cafe75e9 100644 --- a/java/google/registry/env/sandbox/default/WEB-INF/cron.xml +++ b/java/google/registry/env/sandbox/default/WEB-INF/cron.xml @@ -62,6 +62,17 @@ backend + + + + This job runs a mapreduce that creates synthetic OneTime billing events from Recurring billing + events. Events are created for all instances of Recurring billing events that should exist + between the RECURRING_BILLING cursor's time and the execution time of the mapreduce. + + every day 03:00 + backend + +