Presentation is loading. Please wait.

Presentation is loading. Please wait.

University of Massachusetts, Amherst Triage: Balancing Energy and Quality of Service in a Microserver Nilanjan Banerjee, Jacob Sorber, Mark Corner, Sami.

Similar presentations


Presentation on theme: "University of Massachusetts, Amherst Triage: Balancing Energy and Quality of Service in a Microserver Nilanjan Banerjee, Jacob Sorber, Mark Corner, Sami."— Presentation transcript:

1 University of Massachusetts, Amherst Triage: Balancing Energy and Quality of Service in a Microserver Nilanjan Banerjee, Jacob Sorber, Mark Corner, Sami Rollins†, Deepak Ganesan http://prisms.cs.umass.edu/hpm † University of San Francisco, San Francisco

2 Scenario : Deploying Remote Sensor Network Imagine you want to deploy a large scale sensor network What do you need ? lot of sensors of course also need powerful battery-powered server nodes These nodes are traditionally called Microservers [Girod et al.] What do these Microservers do ? can be used for routing, query processing or storage can act as a web server, information kiosk can be used as a router

3 What does the Microserver Workload look like ? Workload is often heterogeneous and sporadic simple requests: store data, synchronize time complex requests: return all images with >2 objects

4 Conflicting Goals : Performance and Energy ! Microservers have high performance highly responsive as a conventional server provide performance guarantees to applications should have a powerful CPU should have lots of RAM Remember that microservers are untethered and battery powered they must be highly energy-efficient for longer lifetime however, powerful platforms implies more energy consumption ! How do we design microservers which balance performance and energy ! Microserver Energy Efficiency Performance

5 Use a single tiered powerful platform use PSM and DVFS on the powerful platform system suffers from the huge idle cost of the powerful tier 050100150200250300350400450500 0.5 1 1.5 2 2.5 Time (secs) Power Consumed (mW) Possible Approaches

6 Use a dual tier system (similar to Wake on Wireless [Shih et al.]) tier-0 (Mote) as low power tier, tier-1 (Stargate) as a more powerful tier keep Stargate in power down mode wake Stargate whenever a task arrives at Mote system suffers from a huge transition cost of Stargate 050100150200250300350400450500 0 0.5 1 1.5 2 2.5 3 Time (secs) Power Consumed (W)

7 Our Approach : Triage Combine powerful platform (Stargate) and low power sensor (Mote) Try to amortize transition costs by batching tasks at the sensor The tasks arriving should meet soft real time deadlines accurately profile execution time for tasks wake the Stargate platform only for long batch of tasks if possible execute simple tasks on the Mote 0100200300400500 0 0.5 1 1.5 2 2.5 3 Time (sec) Power Consumed (W)

8 Outline Design goals governing the Triage system Overall Triage Architecture Triage components surrogates profiler scheduler Triage Prototype Experimental Setup and Evaluation Related Work and Conclusions

9 Design Goals Triage architecture should be general applicable to microservers in wide variety of networks Triage should be highly responsive to tasks Triage should provide soft real time QoS guarantee Triage should be highly energy efficient maximize lifetime while meeting QoS guarantees meet lifetime constraints while providing QoS guarantees

10 Triage Software Architecture Tasks arrive at tier-0 (Mote), tier-1 (Stargate) is in low power mode Surrogate services execute tasks or batch (log) them for Stargate Profiler calculates the amount of energy and time taken by a task Scheduler decides when to wake Stargate

11 Surrogates Storage Surrogate enables in-network storage applications accepts reads, writes, and delete requests request are either served from the cache or inserted into log Query Processing Surrogate provides query interface for data stored on the microserver queries could be simple or complex either queries are served from tier-0 or are inserted into log Forwarding Surrogate efficient routing using tier-0 and tier-1 network interfaces determines which radio should be used to send the packet if tier-0 radio is used, packet send immediately

12 Profiler Measures the typical execution time and energy usage of tasks measurements done through hardware assisted profiling typical execution time : p % of the requests are likely to be satisfied Online profiling involves two steps task grouping – classify tasks based on the nature of task parameter estimation Parameter Estimation is the probability distribution of time taken by task and are the mean and variance of the distribution applying Chebyschev’s inequality execution time of task is bounded by

13 Scheduler Uses information about tasks from the profiler Schedules tasks to minimise the number of Stargate wakeups We could use different scheduling algorithms under different scenarios the focus might be to meet maximum deadlines using minimum energy the aim make the batteries last for a 100 days Triage uses two example schedulers depending on optimization criterion deadline scheduler : meets maximum deadlines at minimum energy lifetime scheduler : satisfy lifetime constraint and meet max deadlines

14 Example Scheduler : Deadline Scheduler Scheduler first queries the profiler for execution time for task Algorithm then computes the Batch time (B ) batch time at which Stargate can be woken up all tasks and the new task meets its deadline Let the new task be inserted at position of the sorted list For each task, sets the latest start time New Batch time is equal to B = B – L(T i ) If B less than or equal to 0 tier-1 is woken up else tier-1 wakeup timer fires after time B

15 Deadline Scheduler : Example Let there be two batched tasks T A : deadline=60 sec execution=3 sec T B : deadline=64 sec execution=3 sec L(T A ) = 57 sec L(T B ) = 61 sec B = 50 sec New task T C arrives T C : deadline=62 sec execution=3 sec Task is inserted between T A and T B Pushes task T A forward New Batch time B = 48 sec

16 Example Scheduler : Lifetime Scheduler Microserver generates tokens rate of energy constraint Calculate energy for present batch If energy greater than tokens collected do not wake the Stargate Else wake Stargate to execute batch new tokens Battery Capacity ? Tasks Batch Taken Decide Wakeup of Tier-1

17 Outline Design goals governing the Triage system Overall Triage Architecture Triage components surrogates profiler scheduler Triage Prototype Experimental Setup and Evaluation Related Work and Conclusions

18 Triage Prototype

19 Evaluating Triage Does Triage have power savings over other systems single tiered system which uses PSM and DVFS (PSM-DVFS) dual tier system based on the Wake-on-Wireless (WoW*) dual tier system which used batching at tier-0 (Triage-Batch) What benefit do tier-0 surrogates provide ? How does the profiler perform ? Do the scheduler algorithms meet their objective ? What are the potential bottlenecks in the Triage system ?

20 Experimental Setup : Camera Sensor Network TelosB motes act as sensor cameras TelosB and laptop acts as client generating image requests for the microserver Power measurements taken using a NI-PCI 6251 DAQ Client equipped with both 802.11b and 802.15.4 radios

21 Profiler Performance Triage consumes slightly more energy than a batching system Images arrive at constant rate Queries arrive at a regular rate 100150200250300 0 200 400 600 800 1000 1200 Average Latency Constraint (sec) Average Power Consumed (mW) Triage Triage-Batch

22 Profiler Performance Triage system meets more than 90% of all the deadlines Triage-Batch meets less than 75% of the deadlines 100150200250300 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 Average Latency Constraint (sec) Percentage of Deadlines met Triage Triage-Batch

23 Lifetime Scheduler Performance 0102030405060 0 10 20 30 40 50 60 70 80 90 100 Time (minutes) Battery Capacity Remaining (mAh) Lifetime Constraint Triage WoW* PSM-DVFS Triage meets the lifetime constraint WoW* and PSM-DVFS batteries die long before the deadline Initial battery capacity = 100 mAh, lifetime constraint = 1hr First 30 mins : tasks with long deadlines, 30-60 mins : tasks with short deadlines

24 System Bottlenecks The USB transfer energy is a huge bottleneck on Triage ! Triage leads to 300% improvement in battery lifetime

25 Related Work Wake-On-Wireless [Shih et al.] low-power radio receives wakeup messages requires in-network support focus on when to wake up Wireless optimizations [Anand et al.] Disk Spindown [Helmbold et al.] Multiple radios [Pering et al.] Multiple processor cores [Mayo & Ranganathan] none provide orders-of-magnitude scaling of power m-Platform [MSR06-142], LEAP [IPSN06] and LEAP2 heterogenous stack-based sensor network platform no intelligent profiling or scheduling to decide high power tier wakeups Microserver platforms throwboxes [infocom 07]

26 Conclusions We presented Triage : a highly capable, energy efficient microserver Triage uses Hierarchical Power Management integrate multiple independent platforms pass control between tiers suspend unneeded tiers Triage leads to 300% improvement in battery lifetime Triage meets all lifetime goals and provides probabilistic QoS Triage used for building highly energy efficient microservers application in sensor deployment, mobile computing

27 University of Massachusetts, Amherst Triage: Balancing Energy and Quality of Service in a Microserver Nilanjan Banerjee, Jacob Sorber, Mark Corner, Sami Rollins†, Deepak Ganesan http://prisms.cs.umass.edu/hpm University of San Francisco, San Francisco


Download ppt "University of Massachusetts, Amherst Triage: Balancing Energy and Quality of Service in a Microserver Nilanjan Banerjee, Jacob Sorber, Mark Corner, Sami."

Similar presentations


Ads by Google