google-cloud-spanner 0.34.5-preview

Google Cloud Client Libraries for Rust - Spanner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Endpoint lifecycle management for location-aware routing.
//!
//! Tracks server node connections, manages background health checking and channel warmup,
//! evicts stale or persistently failing endpoints, and shuts down idle channels that have
//! received no real application traffic within the configured timeout window.

// TODO(location-aware-routing): Remove allow(dead_code) once integrated into LocationRouter and CacheUpdater.
#![allow(dead_code)]

use crate::routing::connection_cache::ConnectionCache;
use std::collections::HashMap;
use std::collections::HashSet;
use std::sync::Arc;
use std::sync::RwLock;
use std::time::Duration;
use std::time::Instant;

/// Default probe interval: 60 seconds.
const DEFAULT_PROBE_INTERVAL: Duration = Duration::from_secs(60);

/// Default idle eviction threshold: 30 minutes without real traffic.
const DEFAULT_IDLE_EVICTION_DURATION: Duration = Duration::from_secs(1800);

/// Throttle threshold between traffic timestamp updates for an endpoint to reduce write-lock contention.
const TRAFFIC_RECORD_THROTTLE: Duration = Duration::from_secs(10);

/// Maximum observed `TRANSIENT_FAILURE` probes before evicting an endpoint.
const MAX_TRANSIENT_FAILURE_COUNT: usize = 3;

/// Manages the lifecycle of location-aware routing endpoints.
///
/// Responsible for:
/// 1. Creating and tracking lifecycle states for active replica tablet server addresses.
/// 2. Tracking real application traffic per endpoint to refresh idle timers.
/// 3. Periodically probing endpoint health and evicting endpoints that stay in `TRANSIENT_FAILURE`
///    for 3 consecutive probe cycles.
/// 4. Evicting idle endpoints that have not received real traffic for 30 minutes.
/// 5. Promptly evicting stale endpoints that are no longer referenced by any active tablet.
#[derive(Debug)]
pub(crate) struct EndpointLifecycleManager {
    connection_cache: Arc<ConnectionCache>,
    state: RwLock<LifecycleManagerState>,
    probe_interval: Duration,
    idle_eviction_duration: Duration,
    default_endpoint_address: String,
}

impl EndpointLifecycleManager {
    /// Creates a new `EndpointLifecycleManager` with default probe and idle eviction settings.
    pub(crate) fn new(connection_cache: Arc<ConnectionCache>) -> Self {
        Self::with_options(
            connection_cache,
            DEFAULT_PROBE_INTERVAL,
            DEFAULT_IDLE_EVICTION_DURATION,
        )
    }

    /// Creates a new `EndpointLifecycleManager` with custom probe interval and idle eviction duration.
    pub(crate) fn with_options(
        connection_cache: Arc<ConnectionCache>,
        probe_interval: Duration,
        idle_eviction_duration: Duration,
    ) -> Self {
        let default_endpoint_address = connection_cache.default_connection().address().to_string();
        Self {
            connection_cache,
            state: RwLock::new(LifecycleManagerState::default()),
            probe_interval,
            idle_eviction_duration,
            default_endpoint_address,
        }
    }

    /// Returns the configured probe interval.
    pub(crate) fn probe_interval(&self) -> Duration {
        self.probe_interval
    }

    /// Returns the configured idle eviction duration.
    pub(crate) fn idle_eviction_duration(&self) -> Duration {
        self.idle_eviction_duration
    }

    /// Returns the default fallback endpoint address.
    pub(crate) fn default_endpoint_address(&self) -> &str {
        &self.default_endpoint_address
    }

    /// Records that real application traffic was routed to the specified endpoint at the current timestamp.
    pub(crate) fn record_real_traffic(&self, address: &str) {
        self.record_real_traffic_at(address, Instant::now());
    }

    /// Records that real application traffic was routed to the specified endpoint at a specific timestamp.
    pub(crate) fn record_real_traffic_at(&self, address: &str, now: Instant) {
        if address.is_empty() || address == self.default_endpoint_address {
            return;
        }

        // Fast path: check under shared read lock if the timestamp was recently updated.
        {
            let state = self
                .state
                .read()
                .expect("EndpointLifecycleManager state read lock poisoned");

            let Some(endpoint_state) = state.endpoints.get(address) else {
                return;
            };

            if now.saturating_duration_since(endpoint_state.last_real_traffic_at)
                < TRAFFIC_RECORD_THROTTLE
            {
                return;
            }
        }

        let mut state = self
            .state
            .write()
            .expect("EndpointLifecycleManager state write lock poisoned");

        if let Some(endpoint_state) = state.endpoints.get_mut(address) {
            endpoint_state.last_real_traffic_at = endpoint_state.last_real_traffic_at.max(now);
        }
    }

    /// Updates the active server addresses for a given source identifier (e.g. database ID),
    /// registering new endpoints and immediately evicting stale endpoints no longer referenced anywhere.
    ///
    /// Returns the list of newly registered endpoint addresses that were not previously tracked.
    pub(crate) fn update_active_addresses(
        &self,
        source_key: &str,
        active_addresses: HashSet<String>,
    ) -> Vec<String> {
        self.update_active_addresses_at(source_key, active_addresses, Instant::now())
    }

    /// Updates active server addresses with a specific reference timestamp.
    pub(crate) fn update_active_addresses_at(
        &self,
        source_key: &str,
        active_addresses: HashSet<String>,
        now: Instant,
    ) -> Vec<String> {
        if source_key.is_empty() {
            return Vec::new();
        }

        let (newly_registered, stale_addresses) = {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");

            let newly_registered = state.register_new_endpoints(
                &active_addresses,
                &self.default_endpoint_address,
                now,
            );

            state
                .active_addresses_per_source
                .insert(source_key.to_string(), active_addresses);

            let stale = state.prune_stale_endpoints();
            (newly_registered, stale)
        };

        for address in &stale_addresses {
            self.connection_cache.evict(address);
        }

        newly_registered
    }

    /// Unregisters all active addresses for a source identifier and evicts any endpoints that
    /// are no longer referenced by any remaining source.
    pub(crate) fn unregister_source(&self, source_key: &str) -> Vec<String> {
        if source_key.is_empty() {
            return Vec::new();
        }

        let stale_addresses = {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");

            if state
                .active_addresses_per_source
                .remove(source_key)
                .is_none()
            {
                return Vec::new();
            }

            state.prune_stale_endpoints()
        };

        for address in &stale_addresses {
            self.connection_cache.evict(address);
        }

        stale_addresses
    }

    /// Requests that an idle-evicted or untracked endpoint be recreated and tracked again.
    ///
    /// If the address is still present in at least one registered source's active addresses,
    /// it is re-inserted into tracked endpoints with `last_real_traffic_at = now`, its failure
    /// marker is cleared, and returns `true` (indicating the caller can initiate background pre-warming).
    ///
    /// If the address is not in any registered source's active set, or is already tracked, returns `false`.
    pub(crate) fn request_endpoint_recreation(&self, address: &str) -> bool {
        self.request_endpoint_recreation_at(address, Instant::now())
    }

    /// Requests endpoint recreation at a specific reference timestamp.
    pub(crate) fn request_endpoint_recreation_at(&self, address: &str, now: Instant) -> bool {
        if address.is_empty() || address == self.default_endpoint_address {
            return false;
        }

        let mut state = self
            .state
            .write()
            .expect("EndpointLifecycleManager state write lock poisoned");

        // Only recreate if not already tracked.
        if state.endpoints.contains_key(address) {
            return false;
        }

        // Verify the address is still active in at least one registered source.
        let is_still_active = state
            .active_addresses_per_source
            .values()
            .any(|addresses| addresses.contains(address));

        if !is_still_active {
            return false;
        }

        state.transient_failure_evicted.remove(address);
        let address_string = address.to_string();
        state.endpoints.insert(
            address_string.clone(),
            EndpointLifecycleState::new(address_string, now),
        );

        true
    }

    /// Probes an individual endpoint address at the given reference timestamp.
    ///
    /// If the endpoint is in `TRANSIENT_FAILURE`, increments its consecutive failure count.
    /// If it reaches `MAX_TRANSIENT_FAILURE_COUNT`, it is evicted from cache and lifecycle tracking.
    pub(crate) fn probe_endpoint_at(&self, address: &str, now: Instant) -> Option<EvictionReason> {
        if address.is_empty() || address == self.default_endpoint_address {
            return None;
        }

        let connection = self.connection_cache.get_if_present(address)?;
        if connection.is_healthy() {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");
            state.record_probe_healthy(address, now);
            return None;
        }

        if connection.is_transient_failure() {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");
            let reason = state.record_probe_transient_failure(address, now);
            if reason.is_some() {
                drop(state);
                self.connection_cache.evict(address);
            }
            return reason;
        }

        None
    }

    /// Probes all currently tracked endpoints at the given reference timestamp and returns
    /// the list of endpoints that were evicted due to persistent failures.
    pub(crate) fn probe_all_endpoints_at(&self, now: Instant) -> Vec<(String, EvictionReason)> {
        // Step 1: Read all tracked endpoint addresses under a shared read lock.
        let addresses: Vec<String> = {
            let state = self
                .state
                .read()
                .expect("EndpointLifecycleManager state read lock poisoned");
            state.endpoints.keys().cloned().collect()
        };

        // Step 2: Inspect connection health outside the write lock.
        let mut healthy_endpoints = Vec::new();
        let mut transient_failure_endpoints = Vec::new();
        for address in addresses {
            if let Some(connection) = self.connection_cache.get_if_present(&address) {
                if connection.is_healthy() {
                    healthy_endpoints.push(address);
                } else if connection.is_transient_failure() {
                    transient_failure_endpoints.push(address);
                }
            }
        }

        // Step 3: Batch-update lifecycle state under a single exclusive write lock if there are updates.
        let mut evicted = Vec::new();
        if !healthy_endpoints.is_empty() || !transient_failure_endpoints.is_empty() {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");

            for address in healthy_endpoints {
                state.record_probe_healthy(&address, now);
            }

            for address in transient_failure_endpoints {
                if let Some(reason) = state.record_probe_transient_failure(&address, now) {
                    evicted.push((address, reason));
                }
            }
        }

        // Step 4: Evict failed connections from cache after releasing the write lock.
        for (address, _) in &evicted {
            self.connection_cache.evict(address);
        }

        evicted
    }

    /// Scans all tracked endpoints and evicts any that have had no real application traffic
    /// for longer than [`Self::idle_eviction_duration`].
    ///
    /// Returns the list of evicted endpoint addresses.
    pub(crate) fn check_idle_eviction_at(&self, now: Instant) -> Vec<String> {
        let idle_duration = self.idle_eviction_duration;
        let default_address = &self.default_endpoint_address;

        // Fast path: check under shared read lock if any endpoint is idle before taking write lock.
        {
            let state = self
                .state
                .read()
                .expect("EndpointLifecycleManager state read lock poisoned");
            let has_idle = state.endpoints.iter().any(|(address, endpoint_state)| {
                address != default_address && endpoint_state.is_idle_at(now, idle_duration)
            });
            if !has_idle {
                return Vec::new();
            }
        }

        let evicted_addresses = {
            let mut state = self
                .state
                .write()
                .expect("EndpointLifecycleManager state write lock poisoned");

            let mut evicted = Vec::new();
            state.endpoints.retain(|address, endpoint_state| {
                let is_idle =
                    address != default_address && endpoint_state.is_idle_at(now, idle_duration);
                if is_idle {
                    evicted.push(address.clone());
                }
                !is_idle
            });

            evicted
        };

        for address in &evicted_addresses {
            self.connection_cache.evict(address);
        }

        evicted_addresses
    }

    /// Returns whether the specified endpoint is currently marked as evicted due to `TRANSIENT_FAILURE`.
    pub(crate) fn is_transient_failure_evicted(&self, address: &str) -> bool {
        let state = self
            .state
            .read()
            .expect("EndpointLifecycleManager state read lock poisoned");
        state.transient_failure_evicted.contains(address)
    }

    /// Returns the number of currently tracked endpoints.
    pub(crate) fn len(&self) -> usize {
        let state = self
            .state
            .read()
            .expect("EndpointLifecycleManager state read lock poisoned");
        state.endpoints.len()
    }

    /// Returns whether there are no tracked endpoints.
    pub(crate) fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns a copy of the lifecycle state for the given address, if tracked.
    pub(crate) fn get_endpoint_state(&self, address: &str) -> Option<EndpointLifecycleState> {
        let state = self
            .state
            .read()
            .expect("EndpointLifecycleManager state read lock poisoned");
        state.endpoints.get(address).cloned()
    }

    /// Clears all tracked endpoint states and failure markers.
    pub(crate) fn clear(&self) {
        let mut state = self
            .state
            .write()
            .expect("EndpointLifecycleManager state write lock poisoned");
        state.endpoints.clear();
        state.transient_failure_evicted.clear();
        state.active_addresses_per_source.clear();
    }
}

/// Internal consolidated state for [`EndpointLifecycleManager`].
#[derive(Debug, Default)]
struct LifecycleManagerState {
    endpoints: HashMap<String, EndpointLifecycleState>,
    transient_failure_evicted: HashSet<String>,
    active_addresses_per_source: HashMap<String, HashSet<String>>,
}

impl LifecycleManagerState {
    /// Updates internal state when a probe observes a healthy (`READY`) connection.
    fn record_probe_healthy(&mut self, address: &str, now: Instant) {
        if let Some(endpoint_state) = self.endpoints.get_mut(address) {
            endpoint_state.last_probe_at = Some(now);
            endpoint_state.last_ready_at = Some(now);
            endpoint_state.consecutive_transient_failures = 0;
        }
        self.transient_failure_evicted.remove(address);
    }

    /// Updates internal state when a probe observes a connection in `TRANSIENT_FAILURE`,
    /// evicting it if it reaches `MAX_TRANSIENT_FAILURE_COUNT`.
    fn record_probe_transient_failure(
        &mut self,
        address: &str,
        now: Instant,
    ) -> Option<EvictionReason> {
        let endpoint_state = self.endpoints.get_mut(address)?;
        endpoint_state.last_probe_at = Some(now);
        endpoint_state.consecutive_transient_failures = endpoint_state
            .consecutive_transient_failures
            .saturating_add(1);

        if endpoint_state.consecutive_transient_failures < MAX_TRANSIENT_FAILURE_COUNT {
            return None;
        }

        if let Some(removed) = self.endpoints.remove(address) {
            self.transient_failure_evicted.insert(removed.address);
        }

        Some(EvictionReason::TransientFailure)
    }

    /// Registers newly active addresses and clears stale transient failure markers.
    fn register_new_endpoints(
        &mut self,
        active_addresses: &HashSet<String>,
        default_address: &str,
        now: Instant,
    ) -> Vec<String> {
        let mut newly_registered = Vec::new();
        for address in active_addresses {
            if address.is_empty() || address == default_address {
                continue;
            }

            if !self.endpoints.contains_key(address) {
                self.transient_failure_evicted.remove(address);
                self.endpoints.insert(
                    address.clone(),
                    EndpointLifecycleState::new(address.clone(), now),
                );
                newly_registered.push(address.clone());
            }
        }
        newly_registered
    }

    /// Prunes failure markers and endpoints that are no longer active in any registered source.
    fn prune_stale_endpoints(&mut self) -> Vec<String> {
        let active_sources = &self.active_addresses_per_source;
        let is_active = |address: &str| {
            active_sources
                .values()
                .any(|addresses| addresses.contains(address))
        };

        self.transient_failure_evicted
            .retain(|address| is_active(address));

        let mut stale = Vec::new();
        self.endpoints.retain(|address, _| {
            let active = is_active(address);
            if !active {
                stale.push(address.clone());
            }
            active
        });

        stale
    }
}

/// The reason an endpoint was evicted from lifecycle management and connection cache.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum EvictionReason {
    /// Evicted after exceeding the maximum consecutive `TRANSIENT_FAILURE` probe count.
    TransientFailure,
    /// Evicted after remaining idle without real traffic past the eviction threshold.
    Idle,
    /// Evicted because the endpoint is no longer referenced by any active tablet in routing table.
    Stale,
    /// Evicted during manager shutdown or explicit clear.
    Shutdown,
}

/// Lifecycle tracking state for an individual routed server endpoint.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct EndpointLifecycleState {
    /// Server network address in `"host:port"` format.
    pub(crate) address: String,
    /// Timestamp when this endpoint was last probed for health.
    pub(crate) last_probe_at: Option<Instant>,
    /// Timestamp when real (non-probe) application traffic was last routed to this endpoint.
    pub(crate) last_real_traffic_at: Instant,
    /// Timestamp when this endpoint was last observed in the `READY` state.
    pub(crate) last_ready_at: Option<Instant>,
    /// Number of consecutive probe observations where the endpoint was in `TRANSIENT_FAILURE`.
    pub(crate) consecutive_transient_failures: usize,
}

impl EndpointLifecycleState {
    /// Creates a new `EndpointLifecycleState` for the given address initialized at the given timestamp.
    fn new(address: String, now: Instant) -> Self {
        Self {
            address,
            last_probe_at: None,
            last_real_traffic_at: now,
            last_ready_at: None,
            consecutive_transient_failures: 0,
        }
    }

    /// Returns whether this endpoint has been idle without real traffic for longer than `timeout`.
    fn is_idle_at(&self, now: Instant, timeout: Duration) -> bool {
        now.saturating_duration_since(self.last_real_traffic_at) > timeout
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::client::Channel;
    use crate::generated::gapic_dataplane::stub::Spanner as SpannerStub;
    use crate::routing::server_connection::ServerConnection;
    use gaxi::options::ClientConfig;
    use std::sync::Barrier;
    use std::thread;

    #[test]
    fn traits() {
        static_assertions::assert_impl_all!(
            EndpointLifecycleManager: Send,
            Sync,
            std::fmt::Debug
        );
        static_assertions::assert_impl_all!(
            EndpointLifecycleState: Send,
            Sync,
            std::fmt::Debug,
            Clone,
            PartialEq,
            Eq
        );
        static_assertions::assert_impl_all!(
            EvictionReason: Send,
            Sync,
            std::fmt::Debug,
            Clone,
            Copy,
            PartialEq,
            Eq
        );
    }

    #[derive(Debug)]
    struct DummyStub;
    impl SpannerStub for DummyStub {}

    fn create_test_connection(address: &str) -> ServerConnection {
        let channel = Channel::new_for_test(DummyStub);
        ServerConnection::new(address.to_string(), channel)
    }

    fn make_test_manager() -> (EndpointLifecycleManager, Arc<ConnectionCache>) {
        let default_connection = create_test_connection("spanner.googleapis.com:443");
        let connection_cache = Arc::new(ConnectionCache::new(default_connection));
        let manager = EndpointLifecycleManager::new(Arc::clone(&connection_cache));
        (manager, connection_cache)
    }

    #[test]
    fn lifecycle_manager_initial_state() {
        let (manager, _cache) = make_test_manager();
        assert!(manager.is_empty(), "manager should be initially empty");
        assert_eq!(manager.len(), 0, "manager len should be 0");
        assert_eq!(
            manager.default_endpoint_address(),
            "spanner.googleapis.com:443",
            "default address should match connection cache default"
        );
        assert_eq!(
            manager.probe_interval(),
            DEFAULT_PROBE_INTERVAL,
            "default probe interval should match constant"
        );
        assert_eq!(
            manager.idle_eviction_duration(),
            DEFAULT_IDLE_EVICTION_DURATION,
            "default idle eviction duration should match constant"
        );
    }

    #[test]
    fn lifecycle_manager_with_options() {
        let default_connection = create_test_connection("spanner.googleapis.com:443");
        let connection_cache = Arc::new(ConnectionCache::new(default_connection));
        let custom_probe = Duration::from_secs(15);
        let custom_idle = Duration::from_secs(300);
        let manager = EndpointLifecycleManager::with_options(
            Arc::clone(&connection_cache),
            custom_probe,
            custom_idle,
        );

        assert_eq!(
            manager.probe_interval(),
            custom_probe,
            "custom probe interval should be applied"
        );
        assert_eq!(
            manager.idle_eviction_duration(),
            custom_idle,
            "custom idle eviction duration should be applied"
        );
    }

    #[test]
    fn lifecycle_manager_update_active_addresses_registers_and_evicts_stale() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        // Populate ConnectionCache with mock connections
        {
            let configuration = ClientConfig::default();
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                let _ = cache.get("10.0.0.1:15000", &configuration).await;
                let _ = cache.get("10.0.0.2:15000", &configuration).await;
                let _ = cache.get("10.0.0.3:15000", &configuration).await;
            });
        }
        assert_eq!(cache.len(), 4, "default + 3 connections");

        // 1. Initial update with endpoint1 and endpoint2
        let mut active1 = HashSet::new();
        active1.insert("10.0.0.1:15000".to_string());
        active1.insert("10.0.0.2:15000".to_string());

        let newly_created = manager.update_active_addresses_at("database-1", active1, now);
        assert_eq!(
            newly_created.len(),
            2,
            "both addresses should be newly registered"
        );
        assert_eq!(manager.len(), 2, "tracked endpoint count should be 2");

        let state1 = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("endpoint1 state should exist");
        assert_eq!(state1.address, "10.0.0.1:15000");
        assert_eq!(state1.last_real_traffic_at, now);
        assert_eq!(state1.last_probe_at, None);
        assert_eq!(state1.consecutive_transient_failures, 0);

        // 2. Migration: endpoint1 is replaced by endpoint3 in routing update
        let mut active2 = HashSet::new();
        active2.insert("10.0.0.2:15000".to_string());
        active2.insert("10.0.0.3:15000".to_string());

        let newly_created2 = manager.update_active_addresses_at(
            "database-1",
            active2,
            now + Duration::from_secs(10),
        );
        assert_eq!(newly_created2, vec!["10.0.0.3:15000".to_string()]);
        assert_eq!(
            manager.len(),
            2,
            "endpoint1 should be evicted and endpoint3 added"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.1:15000").is_none(),
            "endpoint1 must be evicted from lifecycle manager"
        );
        assert!(
            cache.get_if_present("10.0.0.1:15000").is_none(),
            "endpoint1 must be evicted from ConnectionCache"
        );
        assert!(
            cache.get_if_present("10.0.0.2:15000").is_some(),
            "endpoint2 must remain in ConnectionCache"
        );
        assert!(
            cache.get_if_present("10.0.0.3:15000").is_some(),
            "endpoint3 must remain in ConnectionCache"
        );
    }

    #[test]
    fn lifecycle_manager_re_registration_clears_transient_failure_marker() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active.clone(), now);

        let connection = {
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                cache
                    .get("10.0.0.1:15000", &ClientConfig::default())
                    .await
                    .expect("connection create failed")
            })
        };

        // Trigger 3 transient failures to evict
        connection.set_transient_failure();
        manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(60));
        manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(120));
        let eviction_reason =
            manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(180));

        assert_eq!(
            eviction_reason,
            Some(EvictionReason::TransientFailure),
            "endpoint must be evicted due to transient failures"
        );
        assert!(
            manager.is_transient_failure_evicted("10.0.0.1:15000"),
            "transient failure marker must be set"
        );
        assert_eq!(manager.len(), 0, "endpoints map should be empty");

        // Next routing table update arrives with the same address -> re-registration must clear failure marker
        let newly_registered = manager.update_active_addresses_at(
            "database-1",
            active,
            now + Duration::from_secs(200),
        );

        assert_eq!(
            newly_registered,
            vec!["10.0.0.1:15000".to_string()],
            "endpoint must be re-registered"
        );
        assert_eq!(
            manager.len(),
            1,
            "endpoint must be tracked in lifecycle manager"
        );
        assert!(
            !manager.is_transient_failure_evicted("10.0.0.1:15000"),
            "transient failure marker must be cleared on re-registration"
        );
    }

    #[test]
    fn lifecycle_manager_update_active_addresses_empty_or_default_ignored() {
        let (manager, _cache) = make_test_manager();
        let now = Instant::now();

        // Empty source key -> returns empty vec without modifying state
        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        let result = manager.update_active_addresses_at("", active, now);
        assert!(result.is_empty(), "empty source key should return empty");
        assert_eq!(manager.len(), 0, "manager should remain empty");

        // Default endpoint address and empty string in active set should be ignored
        let mut active_with_default = HashSet::new();
        active_with_default.insert("".to_string());
        active_with_default.insert("spanner.googleapis.com:443".to_string());
        active_with_default.insert("10.0.0.1:15000".to_string());

        let newly_created = manager.update_active_addresses("database-1", active_with_default);
        assert_eq!(
            newly_created,
            vec!["10.0.0.1:15000".to_string()],
            "only non-default, non-empty address should be registered"
        );
        assert_eq!(
            manager.len(),
            1,
            "manager should contain exactly 1 registered endpoint"
        );
    }

    #[test]
    fn lifecycle_manager_record_real_traffic_refreshes_timestamp() {
        let (manager, _cache) = make_test_manager();
        let start = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, start);

        let later = start + Duration::from_secs(600);
        manager.record_real_traffic_at("10.0.0.1:15000", later);

        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state should exist");
        assert_eq!(
            state.last_real_traffic_at, later,
            "real traffic should update last_real_traffic_at"
        );

        // Test convenience record_real_traffic method (uses Instant::now())
        manager.record_real_traffic("10.0.0.1:15000");

        // Recording on default endpoint, empty string, or non-existent endpoint should be a harmless no-op
        manager.record_real_traffic_at("spanner.googleapis.com:443", later);
        manager.record_real_traffic_at("", later);
        manager.record_real_traffic_at("non.existent:15000", later);
    }

    #[test]
    fn lifecycle_manager_record_real_traffic_monotonic_timestamp() {
        let (manager, _cache) = make_test_manager();
        let start = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, start);

        let later = start + Duration::from_secs(600);
        manager.record_real_traffic_at("10.0.0.1:15000", later);

        // Attempt to record traffic with an older timestamp must not regress last_real_traffic_at
        let older = start + Duration::from_secs(300);
        manager.record_real_traffic_at("10.0.0.1:15000", older);

        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state exists");
        assert_eq!(
            state.last_real_traffic_at, later,
            "older timestamp must not regress last_real_traffic_at"
        );
    }

    #[test]
    fn lifecycle_manager_record_real_traffic_throttling() {
        let (manager, _cache) = make_test_manager();
        let start = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, start);

        // Within throttle window (5s < 10s throttle): timestamp should remain unchanged at `start`
        let within_throttle = start + Duration::from_secs(5);
        manager.record_real_traffic_at("10.0.0.1:15000", within_throttle);
        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state exists");
        assert_eq!(
            state.last_real_traffic_at, start,
            "traffic within throttle window should not update last_real_traffic_at"
        );

        // Past throttle window (11s > 10s throttle): timestamp must update to `past_throttle`
        let past_throttle = start + Duration::from_secs(11);
        manager.record_real_traffic_at("10.0.0.1:15000", past_throttle);
        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state exists");
        assert_eq!(
            state.last_real_traffic_at, past_throttle,
            "traffic past throttle window must update last_real_traffic_at"
        );
    }

    #[test]
    fn lifecycle_manager_idle_eviction() {
        let (manager, cache) = make_test_manager();
        let start = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        active.insert("10.0.0.2:15000".to_string());
        manager.update_active_addresses_at("database-1", active, start);

        // endpoint1 receives traffic at start + 15 minutes (900s)
        manager.record_real_traffic_at("10.0.0.1:15000", start + Duration::from_secs(900));

        // When checking before timeout (e.g. at 500s), nothing is evicted
        let empty_evicted = manager.check_idle_eviction_at(start + Duration::from_secs(500));
        assert!(empty_evicted.is_empty(), "no endpoints should be idle yet");

        // endpoint2 receives no further traffic.
        // At start + 31 minutes (1860s):
        // endpoint1 idle duration = 1860 - 900 = 960s (< 1800s idle eviction duration) -> not evicted
        // endpoint2 idle duration = 1860 - 0 = 1860s (> 1800s idle eviction duration) -> evicted
        let check_time = start + Duration::from_secs(1860);
        let evicted = manager.check_idle_eviction_at(check_time);

        assert_eq!(
            evicted,
            vec!["10.0.0.2:15000".to_string()],
            "only endpoint2 should be idle evicted"
        );
        assert_eq!(
            manager.len(),
            1,
            "only endpoint1 should remain tracked in manager"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.1:15000").is_some(),
            "endpoint1 state should remain in manager"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.2:15000").is_none(),
            "endpoint2 state should be removed from manager"
        );
        assert!(
            cache.get_if_present("10.0.0.2:15000").is_none(),
            "endpoint2 should be evicted from ConnectionCache"
        );
    }

    #[test]
    fn lifecycle_manager_request_endpoint_recreation() {
        let (manager, _cache) = make_test_manager();
        let start = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        active.insert("10.0.0.2:15000".to_string());
        manager.update_active_addresses_at("database-1", active, start);

        // Idle-evict endpoint1 and endpoint2 at start + 31 minutes
        let check_time = start + Duration::from_secs(1860);
        let evicted = manager.check_idle_eviction_at(check_time);
        assert_eq!(evicted.len(), 2, "both endpoints should be idle evicted");
        assert_eq!(manager.len(), 0, "manager should have 0 tracked endpoints");

        // Recreate endpoint1 at later timestamp
        let later = start + Duration::from_secs(2000);
        let recreated = manager.request_endpoint_recreation_at("10.0.0.1:15000", later);
        assert!(recreated, "recreation of active address must return true");
        assert_eq!(manager.len(), 1, "endpoint1 should now be tracked");

        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state should exist");
        assert_eq!(state.address, "10.0.0.1:15000");
        assert_eq!(
            state.last_real_traffic_at, later,
            "recreated endpoint must be initialized with recreation timestamp"
        );

        // Recreating an already tracked endpoint returns false
        assert!(
            !manager.request_endpoint_recreation("10.0.0.1:15000"),
            "recreating already tracked endpoint must return false"
        );

        // Recreating an address not in any registered source's active set returns false
        assert!(
            !manager.request_endpoint_recreation("10.0.0.99:15000"),
            "recreating inactive address must return false"
        );

        // Recreating default or empty address returns false
        assert!(
            !manager.request_endpoint_recreation("spanner.googleapis.com:443"),
            "recreating default endpoint must return false"
        );
        assert!(
            !manager.request_endpoint_recreation(""),
            "recreating empty address must return false"
        );
    }

    #[test]
    fn lifecycle_manager_probe_consecutive_transient_failures_evicts_endpoint() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, now);

        let connection = {
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                cache
                    .get("10.0.0.1:15000", &ClientConfig::default())
                    .await
                    .expect("connection create failed")
            })
        };

        // Mark connection as in TRANSIENT_FAILURE
        connection.set_transient_failure();

        // Probe 1: failure count = 1 -> not evicted
        let result1 = manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(60));
        assert_eq!(result1, None, "probe 1 should not evict");
        assert_eq!(
            manager
                .get_endpoint_state("10.0.0.1:15000")
                .expect("state exists")
                .consecutive_transient_failures,
            1
        );
        assert!(
            !manager.is_transient_failure_evicted("10.0.0.1:15000"),
            "failure marker should not be set after 1 probe"
        );

        // Probe 2: failure count = 2 -> not evicted
        let result2 = manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(120));
        assert_eq!(result2, None, "probe 2 should not evict");
        assert_eq!(
            manager
                .get_endpoint_state("10.0.0.1:15000")
                .expect("state exists")
                .consecutive_transient_failures,
            2
        );

        // Probe 3: failure count = 3 (MAX) -> evicted with TransientFailure reason
        let result3 = manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(180));
        assert_eq!(
            result3,
            Some(EvictionReason::TransientFailure),
            "probe 3 must trigger eviction"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.1:15000").is_none(),
            "endpoint must be removed from manager"
        );
        assert!(
            cache.get_if_present("10.0.0.1:15000").is_none(),
            "endpoint must be evicted from connection cache"
        );
        assert!(
            manager.is_transient_failure_evicted("10.0.0.1:15000"),
            "transient failure marker must be set"
        );
    }

    #[test]
    fn lifecycle_manager_probe_healthy_resets_failure_counter() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, now);

        let connection = {
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                cache
                    .get("10.0.0.1:15000", &ClientConfig::default())
                    .await
                    .expect("connection create failed")
            })
        };

        // 2 consecutive failures
        connection.set_transient_failure();
        manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(60));
        manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(120));
        assert_eq!(
            manager
                .get_endpoint_state("10.0.0.1:15000")
                .expect("state exists")
                .consecutive_transient_failures,
            2
        );

        // Channel recovers to READY
        connection.set_ready();
        let result = manager.probe_endpoint_at("10.0.0.1:15000", now + Duration::from_secs(180));
        assert_eq!(result, None, "probe should succeed");

        let state = manager
            .get_endpoint_state("10.0.0.1:15000")
            .expect("state exists");
        assert_eq!(
            state.consecutive_transient_failures, 0,
            "failure count must reset to 0 on READY"
        );
        assert_eq!(
            state.last_ready_at,
            Some(now + Duration::from_secs(180)),
            "last_ready_at must be recorded"
        );
        assert!(
            !manager.is_transient_failure_evicted("10.0.0.1:15000"),
            "transient failure marker should be cleared"
        );
    }

    #[test]
    fn lifecycle_manager_probe_unconnected_or_default_returns_none() {
        let (manager, _cache) = make_test_manager();
        let now = Instant::now();

        // Probing default endpoint returns None
        assert_eq!(
            manager.probe_endpoint_at("spanner.googleapis.com:443", now),
            None,
            "probing default endpoint must return None"
        );

        // Probing empty address returns None
        assert_eq!(
            manager.probe_endpoint_at("", now),
            None,
            "probing empty address must return None"
        );

        // Probing an endpoint not present in connection cache returns None
        assert_eq!(
            manager.probe_endpoint_at("10.0.0.99:15000", now),
            None,
            "probing untracked address must return None"
        );
    }

    #[test]
    fn lifecycle_manager_probe_unhealthy_state_ignored() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        let mut active = HashSet::new();
        active.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses_at("database-1", active, now);

        let connection = {
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                cache
                    .get("10.0.0.1:15000", &ClientConfig::default())
                    .await
                    .expect("connection create failed")
            })
        };

        connection.set_unhealthy();
        let result = manager.probe_endpoint_at("10.0.0.1:15000", now);
        assert_eq!(
            result, None,
            "STATE_UNHEALTHY should return None without incrementing transient failure"
        );
        assert_eq!(
            manager
                .get_endpoint_state("10.0.0.1:15000")
                .expect("state exists")
                .consecutive_transient_failures,
            0
        );
    }

    #[test]
    fn lifecycle_manager_unregister_source_cleans_up() {
        let (manager, _cache) = make_test_manager();
        let now = Instant::now();

        // Unregistering empty source key -> returns empty vec
        assert!(
            manager.unregister_source("").is_empty(),
            "unregistering empty source key should return empty vec"
        );

        // Unregistering non-existent source key -> returns empty vec
        assert!(
            manager.unregister_source("non-existent").is_empty(),
            "unregistering unknown source key should return empty vec"
        );

        let mut database1_addresses = HashSet::new();
        database1_addresses.insert("10.0.0.1:15000".to_string());
        database1_addresses.insert("10.0.0.2:15000".to_string());
        manager.update_active_addresses_at("database-1", database1_addresses, now);

        let mut database2_addresses = HashSet::new();
        database2_addresses.insert("10.0.0.2:15000".to_string());
        database2_addresses.insert("10.0.0.3:15000".to_string());
        manager.update_active_addresses_at("database-2", database2_addresses, now);

        assert_eq!(manager.len(), 3, "total 3 distinct endpoints");

        // Unregister database-1 -> endpoint1 is no longer in any source and should be evicted; endpoint2 is still in database-2.
        let evicted = manager.unregister_source("database-1");
        assert_eq!(
            evicted,
            vec!["10.0.0.1:15000".to_string()],
            "endpoint1 should be evicted"
        );
        assert_eq!(
            manager.len(),
            2,
            "endpoint2 and endpoint3 should remain tracked"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.1:15000").is_none(),
            "endpoint1 should not be in manager"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.2:15000").is_some(),
            "endpoint2 should remain in manager"
        );
        assert!(
            manager.get_endpoint_state("10.0.0.3:15000").is_some(),
            "endpoint3 should remain in manager"
        );
    }

    #[test]
    fn lifecycle_manager_probe_all_endpoints() {
        let (manager, cache) = make_test_manager();
        let now = Instant::now();

        let mut addresses = HashSet::new();
        addresses.insert("10.0.0.1:15000".to_string());
        addresses.insert("10.0.0.2:15000".to_string());
        manager.update_active_addresses_at("database-1", addresses, now);

        let (connection1, connection2) = {
            let runtime = tokio::runtime::Builder::new_current_thread()
                .enable_all()
                .build()
                .expect("runtime build failed");
            runtime.block_on(async {
                let connection1 = cache
                    .get("10.0.0.1:15000", &ClientConfig::default())
                    .await
                    .expect("connection1 create failed");
                let connection2 = cache
                    .get("10.0.0.2:15000", &ClientConfig::default())
                    .await
                    .expect("connection2 create failed");
                (connection1, connection2)
            })
        };

        connection1.set_transient_failure();
        connection2.set_ready();

        // 3 probe ticks
        manager.probe_all_endpoints_at(now + Duration::from_secs(60));
        manager.probe_all_endpoints_at(now + Duration::from_secs(120));
        let evicted = manager.probe_all_endpoints_at(now + Duration::from_secs(180));

        assert_eq!(
            evicted,
            vec![(
                "10.0.0.1:15000".to_string(),
                EvictionReason::TransientFailure
            )],
            "endpoint1 should be evicted due to transient failure"
        );
        assert_eq!(manager.len(), 1, "only endpoint2 should remain in manager");
        assert!(
            manager.get_endpoint_state("10.0.0.2:15000").is_some(),
            "endpoint2 should remain tracked"
        );
    }

    #[test]
    fn lifecycle_manager_clear() {
        let (manager, _cache) = make_test_manager();
        let mut addresses = HashSet::new();
        addresses.insert("10.0.0.1:15000".to_string());
        manager.update_active_addresses("database-1", addresses);
        assert_eq!(manager.len(), 1, "manager should contain 1 endpoint");

        manager.clear();
        assert_eq!(manager.len(), 0, "manager len should be 0 after clear");
        assert!(manager.is_empty(), "manager should be empty after clear");
    }

    #[test]
    fn lifecycle_state_and_reason_debug_clone_equality() {
        let now = Instant::now();
        let state1 = EndpointLifecycleState::new("10.0.0.1:15000".to_string(), now);
        let state2 = state1.clone();
        assert_eq!(state1, state2, "cloned state must equal original state");
        assert!(
            format!("{state1:?}").contains("10.0.0.1:15000"),
            "debug output should contain endpoint address"
        );

        let reason = EvictionReason::Idle;
        let reason_clone = reason;
        assert_eq!(
            reason, reason_clone,
            "cloned reason must equal original reason"
        );
        assert_eq!(
            format!("{reason:?}"),
            "Idle",
            "debug format for Idle reason should match"
        );
        assert_eq!(
            format!("{:?}", EvictionReason::Stale),
            "Stale",
            "debug format for Stale reason should match"
        );
        assert_eq!(
            format!("{:?}", EvictionReason::Shutdown),
            "Shutdown",
            "debug format for Shutdown reason should match"
        );
    }

    #[test]
    fn lifecycle_manager_concurrent_traffic_and_probes() {
        let (manager, _cache) = make_test_manager();
        let manager = Arc::new(manager);
        let num_threads = 8;
        let iterations = 100;
        let barrier = Arc::new(Barrier::new(num_threads));

        let mut addresses = HashSet::new();
        for i in 0..10 {
            addresses.insert(format!("10.0.0.{}:15000", i));
        }
        manager.update_active_addresses("database-1", addresses);

        thread::scope(|scope| {
            for thread_index in 0..num_threads {
                let manager_clone = Arc::clone(&manager);
                let barrier_clone = Arc::clone(&barrier);
                scope.spawn(move || {
                    barrier_clone.wait();
                    for iteration in 0..iterations {
                        let endpoint = format!("10.0.0.{}:15000", (thread_index + iteration) % 10);
                        manager_clone.record_real_traffic(&endpoint);
                        let _ = manager_clone.get_endpoint_state(&endpoint);
                        let _ = manager_clone.len();
                    }
                });
            }
        });

        assert_eq!(
            manager.len(),
            10,
            "all 10 endpoints should still be tracked"
        );
    }
}