Details
-
Type:
New Feature
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.0
-
Component/s: Push Library
-
Labels:None
-
Environment:ICEpush, mobile network
Description
Different network environments have different bandwidth and latency characteristics. Recent testing has shown that the reconnect latency on a 3G network can vary from 1.5s - 6s. To account for this, the reconnect timeout should be adaptive.
Issue Links
- blocks
-
MOBI-177 Duplicate Cloud Push and Ajax Push notifications
-
- Closed
-
Unfortunately, real world testing showed the adaptive timeout to be far to adaptive. It was not unusual to see fairly long strings of low latency values (which the algorithm quickly converged on) followed by a substantially higher latency. The algorithm has been modified as follows to never adjust up or down by too much, and to always give much more weight to the current value:
responseDelay = Math.max(responseDelay,
(connectionRecreationTimeout * 4) / 5);
responseDelay = Math.min(responseDelay,
(connectionRecreationTimeout * 3) / 2);
responseDelay = Math.max(responseDelay, 500);
connectionRecreationTimeout =
(responseDelay + (connectionRecreationTimeout * 4)) / 5;