73
73
74
74
logger = logging .getLogger (__name__ )
75
75
76
- BACKFILL_EVENT_BACKOFF_UPPER_BOUND_SECONDS : int = int (
77
- datetime .timedelta (days = 7 ).total_seconds ()
78
- )
76
+ BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS = 8
79
77
BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS : int = int (
80
78
datetime .timedelta (hours = 1 ).total_seconds ()
81
79
)
80
+ # The longest backoff period is then:
81
+ # _LONGEST_BACKOFF_PERIOD_SECONDS = (
82
+ # (1 << BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS)
83
+ # * BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS,
84
+ # )
85
+ # which is 2 ** 8 hours = 256 hours ≈ 10 days. This number needs to fit
86
+ # in a 32 bit signed int, or else Postgres will error.
87
+ # assert _LONGEST_BACKOFF_PERIOD_SECONDS < ((2 ** 31) - 1)
88
+ # (We could use a bigint, but bigint overflows still cause errors. This
89
+ # at least avoids CASTing in the queries below.)
82
90
83
91
84
92
# All the info we need while iterating the DAG while backfilling
@@ -803,7 +811,10 @@ def get_backfill_points_in_room_txn(
803
811
*/
804
812
AND (
805
813
failed_backfill_attempt_info.event_id IS NULL
806
- OR ? /* current_time */ >= failed_backfill_attempt_info.last_attempt_ts + { least_function } ((1 << failed_backfill_attempt_info.num_attempts) * ? /* step */, ? /* upper bound */)
814
+ OR ? /* current_time */ >= failed_backfill_attempt_info.last_attempt_ts + (
815
+ (1 << { least_function } (failed_backfill_attempt_info.num_attempts, ? /* max doubling steps */))
816
+ * ? /* step */
817
+ )
807
818
)
808
819
/**
809
820
* Sort from highest to the lowest depth. Then tie-break on
@@ -819,8 +830,8 @@ def get_backfill_points_in_room_txn(
819
830
room_id ,
820
831
False ,
821
832
self ._clock .time_msec (),
833
+ BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS ,
822
834
1000 * BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS ,
823
- 1000 * BACKFILL_EVENT_BACKOFF_UPPER_BOUND_SECONDS ,
824
835
),
825
836
)
826
837
@@ -888,7 +899,10 @@ def get_insertion_event_backward_extremities_in_room_txn(
888
899
*/
889
900
AND (
890
901
failed_backfill_attempt_info.event_id IS NULL
891
- OR ? /* current_time */ >= failed_backfill_attempt_info.last_attempt_ts + { least_function } ((1 << failed_backfill_attempt_info.num_attempts) * ? /* step */, ? /* upper bound */)
902
+ OR ? /* current_time */ >= failed_backfill_attempt_info.last_attempt_ts + (
903
+ (1 << { least_function } (failed_backfill_attempt_info.num_attempts, ? /* max doubling steps */))
904
+ * ? /* step */
905
+ )
892
906
)
893
907
/**
894
908
* Sort from highest to the lowest depth. Then tie-break on
@@ -903,8 +917,8 @@ def get_insertion_event_backward_extremities_in_room_txn(
903
917
(
904
918
room_id ,
905
919
self ._clock .time_msec (),
920
+ BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS ,
906
921
1000 * BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS ,
907
- 1000 * BACKFILL_EVENT_BACKOFF_UPPER_BOUND_SECONDS ,
908
922
),
909
923
)
910
924
return cast (List [Tuple [str , int ]], txn .fetchall ())
0 commit comments