Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 4a0c461

Browse files
author
David Robertson
committed
Bugfix: avoid overflow
1 parent 83f4e52 commit 4a0c461

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

synapse/storage/databases/main/event_federation.py

+21-7
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,20 @@
7373

7474
logger = logging.getLogger(__name__)
7575

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
7977
BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS: int = int(
8078
datetime.timedelta(hours=1).total_seconds()
8179
)
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.)
8290

8391

8492
# All the info we need while iterating the DAG while backfilling
@@ -803,7 +811,10 @@ def get_backfill_points_in_room_txn(
803811
*/
804812
AND (
805813
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+
)
807818
)
808819
/**
809820
* Sort from highest to the lowest depth. Then tie-break on
@@ -819,8 +830,8 @@ def get_backfill_points_in_room_txn(
819830
room_id,
820831
False,
821832
self._clock.time_msec(),
833+
BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS,
822834
1000 * BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS,
823-
1000 * BACKFILL_EVENT_BACKOFF_UPPER_BOUND_SECONDS,
824835
),
825836
)
826837

@@ -888,7 +899,10 @@ def get_insertion_event_backward_extremities_in_room_txn(
888899
*/
889900
AND (
890901
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+
)
892906
)
893907
/**
894908
* Sort from highest to the lowest depth. Then tie-break on
@@ -903,8 +917,8 @@ def get_insertion_event_backward_extremities_in_room_txn(
903917
(
904918
room_id,
905919
self._clock.time_msec(),
920+
BACKFILL_EVENT_EXPONENTIAL_BACKOFF_MAXIMUM_DOUBLING_STEPS,
906921
1000 * BACKFILL_EVENT_EXPONENTIAL_BACKOFF_STEP_SECONDS,
907-
1000 * BACKFILL_EVENT_BACKOFF_UPPER_BOUND_SECONDS,
908922
),
909923
)
910924
return cast(List[Tuple[str, int]], txn.fetchall())

0 commit comments

Comments
 (0)