SlideShare una empresa de Scribd logo
1 de 11
Hashed and Hierarchical Timing Wheels


              A paper by
   George Varghese   and   Tony Lauck
Motivation

    Timers are important for
       Failure recovery, rate based flow control, scheduling algorithms,
        controlling packet lifetime in networks
   Timer maintenance high if
       Processor interrupted every clock tick
       Fine granularity timers are used
       # outstanding timers is high
   Efficient timer algorithms are required to reduce the
    overall interrupt overhead
Model & Performance Measure
   Routines in the model
       Client Invoked :
            START_TIMER(Interval, Request_ID, Expiry_Action)
            STOP_TIMER(Request_ID)
       Timer tick invoked :
            PER_TICK_BOOKKEEPING
            EXPIRY_PROCESSING
   Performance Measure
       Space : Memory used by the data structures
       Latency : Time required to begin and end any of the
        routines mentioned above
Currently Used Timer Schemes
                                     a

             a                       b
             b                       c
             c                       d
             d
                                     e
             e
                                     f

Can maintain absolute expiry   maintain absolute expiry time
time or the timer interval
                               START_TIMER = O(n)
START_TIMER = O(1)             STOP_TIMER = O(1)
STOP_TIMER = O(1)              PER_TICK_BOOKKEEPING = O(1)
PER_TICK_BOOKKEEPING = O(n)
Tree based timers

                                              a
              a                                   b

         b          c                                  c

                                                             d
 d

                              Can degenerate to a
maintain absolute expiry
                              linear list in case of equal
time
                              Interval timers
START_TIMER = O(log(n))
                              START_TIMER = O(n)
STOP_TIMER = O(1)
                              STOP_TIMER = O(1)
PER_TICK_BOOKKEEPING = O(1)
                              PER_TICK_BOOKKEEPING = O(1)
Simple Timing Wheel
                                  Keep a large timing wheel
                                  A curser in the timing wheel
                                   moves one location every
             0   1                 time unit (just like a seconds
         7           2             hand in the clock)
         6
                                  If the timer interval is within
                     3             a rotation from the current
             5   4                 curser position then put the
                                   timer in the corresponding
                                   location
                                  Requires exponential amount
 START_TIMER = O(1)                of memory
 STOP_TIMER = O(1)
 PER_TICK_BOOKKEEPING = O(1)
Hashed Timing Wheel
                 # of rounds remaining        Say wheel has 8 ticks
                                              Timer value = 17
                           2       4          Make 2 rounds of
             0     1                           wheel + 1 more tick
         7                                    Schedule the timer in
                       2
                                               the bucket “1”
         6             3                      Keep the # rounds with
                               1       2
             5     4                           the timer
                                              At the expiry
2    1   1             2
                                               processing if the #
                                               rounds > 0 then
                                               reinsert the timer
Hashed Timing Wheel
   Sorted Lists in each bucket
        The list in each bucket can be insertion sorted
        Hence START_TIMER takes O(n) time in the worst case
        If n < WheelSize then average O(1)
   Unsorted list in each bucket
        List can be kept unsorted to avoid worst case O(n) latency for
         START_TIMER
        However worst case PER_TICK_BOOKKEEPING = O(n)
        Again, if n < WheelSize then average O(1)
Hierarchical Timing Wheel
                        1 3       3 5
            0   1
        7
                    2
    6               3
                        3 7
            5   4
                                                        3       5
  5 1
                                            0   1
                                        7
Hours wheel                                         2
                                    6               3
                                                4           7       5
                                            5                               0   1
                                                                        7
                              1     1               2                               2
                                                                        6           3
                        Minutes wheel                                           4
                                                                            5



                                                                                Seconds wheel
Hierarchical Timing Wheels
   START_TIMER = O(m) where m is the number of wheels
       The bucket value on each wheel needs to be calculated
   STOP_TIMER = O(1)
   PER_TICK_BOOKKEEPING = O(1) on avg.
Comparison

                START_TIMER      STOP_TIMER     PER_TICK


 Straight Fwd       O(1)            O(1)           O(n)

  Sequential
                    O(n)            O(1)           O(1)
     List

 Tree Based       O(log(n))         O(1)           O(1)

   Simple
   Wheel
                    O(1)            O(1)           O(1)         High memory requirement
  Hashed       O(n) worst case
                                    O(1)           O(1)
Wheel (sorted)    O(1) avg
Hashed Wheel                                  O(n) worst case
                    O(1)            O(1)
 (unsorted)                                      O(1) avg
 Hierarchical
                   O(m)             O(1)           O(1)
   Wheels

Más contenido relacionado

Último

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Último (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 

Destacado

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destacado (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

时间轮

  • 1. Hashed and Hierarchical Timing Wheels A paper by George Varghese and Tony Lauck
  • 2. Motivation  Timers are important for  Failure recovery, rate based flow control, scheduling algorithms, controlling packet lifetime in networks  Timer maintenance high if  Processor interrupted every clock tick  Fine granularity timers are used  # outstanding timers is high  Efficient timer algorithms are required to reduce the overall interrupt overhead
  • 3. Model & Performance Measure  Routines in the model  Client Invoked :  START_TIMER(Interval, Request_ID, Expiry_Action)  STOP_TIMER(Request_ID)  Timer tick invoked :  PER_TICK_BOOKKEEPING  EXPIRY_PROCESSING  Performance Measure  Space : Memory used by the data structures  Latency : Time required to begin and end any of the routines mentioned above
  • 4. Currently Used Timer Schemes a a b b c c d d e e f Can maintain absolute expiry maintain absolute expiry time time or the timer interval START_TIMER = O(n) START_TIMER = O(1) STOP_TIMER = O(1) STOP_TIMER = O(1) PER_TICK_BOOKKEEPING = O(1) PER_TICK_BOOKKEEPING = O(n)
  • 5. Tree based timers a a b b c c d d Can degenerate to a maintain absolute expiry linear list in case of equal time Interval timers START_TIMER = O(log(n)) START_TIMER = O(n) STOP_TIMER = O(1) STOP_TIMER = O(1) PER_TICK_BOOKKEEPING = O(1) PER_TICK_BOOKKEEPING = O(1)
  • 6. Simple Timing Wheel  Keep a large timing wheel  A curser in the timing wheel moves one location every 0 1 time unit (just like a seconds 7 2 hand in the clock) 6  If the timer interval is within 3 a rotation from the current 5 4 curser position then put the timer in the corresponding location  Requires exponential amount START_TIMER = O(1) of memory STOP_TIMER = O(1) PER_TICK_BOOKKEEPING = O(1)
  • 7. Hashed Timing Wheel # of rounds remaining  Say wheel has 8 ticks  Timer value = 17 2 4  Make 2 rounds of 0 1 wheel + 1 more tick 7  Schedule the timer in 2 the bucket “1” 6 3  Keep the # rounds with 1 2 5 4 the timer  At the expiry 2 1 1 2 processing if the # rounds > 0 then reinsert the timer
  • 8. Hashed Timing Wheel  Sorted Lists in each bucket  The list in each bucket can be insertion sorted  Hence START_TIMER takes O(n) time in the worst case  If n < WheelSize then average O(1)  Unsorted list in each bucket  List can be kept unsorted to avoid worst case O(n) latency for START_TIMER  However worst case PER_TICK_BOOKKEEPING = O(n)  Again, if n < WheelSize then average O(1)
  • 9. Hierarchical Timing Wheel 1 3 3 5 0 1 7 2 6 3 3 7 5 4 3 5 5 1 0 1 7 Hours wheel 2 6 3 4 7 5 5 0 1 7 1 1 2 2 6 3 Minutes wheel 4 5 Seconds wheel
  • 10. Hierarchical Timing Wheels  START_TIMER = O(m) where m is the number of wheels  The bucket value on each wheel needs to be calculated  STOP_TIMER = O(1)  PER_TICK_BOOKKEEPING = O(1) on avg.
  • 11. Comparison START_TIMER STOP_TIMER PER_TICK Straight Fwd O(1) O(1) O(n) Sequential O(n) O(1) O(1) List Tree Based O(log(n)) O(1) O(1) Simple Wheel O(1) O(1) O(1) High memory requirement Hashed O(n) worst case O(1) O(1) Wheel (sorted) O(1) avg Hashed Wheel O(n) worst case O(1) O(1) (unsorted) O(1) avg Hierarchical O(m) O(1) O(1) Wheels