5 posts tagged with "resilience"

    exponential backoffs

    2022-11-28

     | 

    ~1 min read

     | 

    61 words

    An exponential backoff is an algorithm for retrying requests at exponentially slower rates. Exponential backoff is a strategy for solving…

    thundering herd

    2022-11-28

     | 

    ~1 min read

     | 

    48 words

    When lots of processes or threads are all awaiting a single event, they can be awoken simultaneously when that even occurs. Only one process…

    introduce jitter to avoid the thundering herd

    2022-11-28

     | 

    ~1 min read

     | 

    51 words

    Jitter is a technique to introduce a degree of randomness that will result in improved performance of unreliable systems by helping to avoid…

    resilience strategies

    2022-11-28

     | 

    ~1 min read

     | 

    75 words

    In distributed systems, nothing is certain. This includes network requests. So, how do we handle a failed network request? Do we simply…

    why write?

    2022-11-28

     | 

    ~4 min read

     | 

    643 words

    In his annual letter to shareholders, Jeff Bezos answered a question that had been following him around for twenty years: what does Day…

Return to all tags