Swarthmore College’s computer science department offers 3.5 classrooms worth of lab computers for lab instructed courses and for student utilization. Particularly during nights and weekends, many go unused. Nevertheless, they are always “on”, taking up a considerable amount of energy. In efforts to minimize the amount of energy wasted by unused computers, this project aims to design a system that puts inactive computers to “sleep” (low power mode) during appropriate conditions. An initial assessment of monitoring the energy usage of CS computers determined that a computer not in low power mode, but also not in use, consumes an average 20-50 Watts, while a computer on low power mode uses significantly less -- around 5 Watts. Thus, this disparity emphasized the need of having computers be on low power mode for as long as possible.
Therefore, the project’s main objective is to design an algorithm where a computer could effectively dictate the fastest and most accurate way to put itself on low power mode. This would involve creating a set of conditions that would determine when a computer should “go to sleep” and coding various functions which each computer runs to implement these conditions. Other critical elements to consider are ways to “wake” a computer from low power mode non-locally, a method to override the algorithm, and a public online database tracking the energy usage of each computer. Ultimately, this initiative would be implemented to more computers on campus in the effort to always be in search of new, innovative ways of becoming a more environmentally-sustainable campus.
The main objectives for this project is to significantly reduce the power consumed by the machines on campus, as part of an initiative to progress towards innovative ways to be a more environmentally friendly campus. By creating a system that monitors energy levels and power consumption while simultaneously running a program that puts computers to low power mode when idle, we can statistically quantify how power consumption changes due to this initiative. This will serve as the foundation for advocacy to continue this line of work and consistently develop practical solutions to ongoing problems of environmental sustainability. In order to fulfill our objectives various components are needed including: monitoring energy and power using plug sensors in the CS lab(s), logging the sensor readings to a database, building a public front-end website with graphs and statistics, measuring power usage and use the measurements to explore policies for putting lab machines into a low-power state (e.g., suspend to RAM), and reducing power consumption in the lab and quantifying the savings (e.g., % reduction, energy costs, etc.).
The target system for this project is the Swarthmore College’s computer science department’s 3.5 classrooms of computer labs, totalling around 135 machines. There are two types of computer models used by the department that on average consumes different levels of power. The first type, which will be called Type A, consumes an average of 23 watts when on, but idle, while the second type, which we will call Type B, consumes an average of 46 watts when on, but idle. However, both types of machines on low power mode consumes an average of 4 watts of power. During lab instruction, when most computers are active, depending on users activity, a classroom’s worth of computers can consume 2.5KW of power.
As of December 7, 2019, we have a Samsung Hub in classroom SCI 240 controlling ZEN15 plugs on all 29 of the computers. (28 + 1 instructor machine at the front.) Hub’s hostname is smarthub.cs.swarthmore.edu, and its MAC address is 28:6D:97:A4:49:3C. The hub is reporting sensor data to an Influx database on influx.cs.swarthmore.edu.
To measure and record energy and power consumption, the ZEN15 smart switches from Zooz were utilized. The switches support several features that became convenient for the project’s initiatives, including, a reasonably high maximum load of 15 Amps (1800 W), ability to disable on/off control from the hub (to avoid accidentally cutting power to a lab machine), option to configure how frequently the switch reports power, energy, and other metrics, and Z-Wave radio communication. These switches use Z-Wave to communicate with a central hub. Z-Wave radios operate around 900 MHz, so they don’t interfere with most other consumer communications devices (e.g., WiFi and Bluetooth, which operate at 2.4 GHz). A network of Z-Wave devices organizes itself into a mesh topology, with each device potentially acting as a repeater to route data towards the hub. We’re using a Samsung SmartThings Hub (V3) as the central hub. It reports information to the Samsung’s cloud service, where we can control it with their APIs. The APIs allow users to write code in the Groovy programming language (similar to Java) to build: device handlers, a code that controls the behavior of device(s) that report to the hub, and SmartApps, a code that triggers actions at the hub in response to events on the network. For example, we use a SmartApp to send sensor readings from the hub to a database when a sensor reports data to the hub.
If we end up needing more control than Samsung’s SmartThings system gives us, a potential alternative is to build our own hub using a USB Z-Wave radio and a small embedded device like a Raspberry Pi. Such a system, powered by open source software like Home Assistant or OpenHAB, could run entirely locally, without relying on a cloud service. The downside is that it would likely take more work to set it all up.
We’re using InfluxDB running on influx.cs.swarthmore.edu to record sensor measurements. As a time series database, InfluxDB makes it relatively easy to track changes in power usage over time.
The local agent runs on each lab machine as a system service that monitors system usage and decides when to sleep — it collects data and applies the suspension policy. Before sleeping, it should check for reservations and defer sleeping if the machine is reserved. The local agent should send sleep and wakeup events to the influx database to help track the status and usage of each machine.
One of the main components of this sleeping program is a python program that consistently runs under the backdrop of each machine (until it goes to sleep) that determines based on various system parameters and policies to sleep to Low Power Mode. As illustrated in Figure 1, there are four parameters/information about the status of each machine that are utilized to reach a decision. This program has the functioning properties in place that allows a computer to locally check whether there are users logged into the computer, the idleness time of the keyboard and mouse activity, CPU intake on running applications, and time of day. This runs in a continuous while loop, where the computer constantly checks the developed criterias every given interval, of which can be modified in a separate INI file that the python program calls. Currently the computer goes through the loop every 5 minutes.
Policy Description | Information | Methodology | |
---|---|---|---|
1 | 0 users logged into computer, then computer goes to Low Power Mode (LPM) | Who is currently logged in to a computer | Terminal Command “Who, -q” |
2 | If idleness of keyboard and mouse activity > 3 hours, then LPM. | Time past since last keyboard/mouse interaction | X11 library: XScreenSaverQueryInfo() can provide the time idle time of the computer in milliseconds |
3 | Low CPU intake and processes like text editor and browsers running on the computer → LPM. | CPU intake and the respective processes that are currently running on the computer | Command “ps aux” on terminal. Specific command: "ps ax -o %cpu, command [insert vertical bar] sort -r [insert vertical bar] head -n 5" sorts the list by top 5 highest CPU and its respective processes. |
4 | From 2:00:00 AM to 7:00:00 AM, put on LPM | Current time of day | Terminal command "date" |
Most of the information (including time, number of users logged in, CPU usage) regarding the specific environment of each machine is captured by using a subprocess module to allow the computer to check who is currently logged locally, and return the appropriate message and its respective boolean letting us know whether anyone is currently logged into that given computer. For keyboard and mouse idle time on the machines, we developed a program that iterates over all of the X11 sessions on a machine and queries their idle time. It also iterates over /dev/ptsto determine the idle time of all terminal activity (e.g., SSH sessions). If no users are logged in or the program is unable to retrieve any data for some reason, it will print -1 for both the min and max values. The parameters that dictate the quota of whether or not certain environmental conditions were met were controlled by an INI configuration file that works in conjunction with the aforementioned python, storing other relevant information such as policy types and time intervals in which the computer should run through the code.
The students at Swarthmore College are able to access the computer lab machines in two ways. First method is logging on with their student account on the physical machines available in the lab classrooms. If a computer is asleep when a user is wanting to use the computer in the classroom, they simply need to push a button on the keyboard to wake the computer.
The second method is user access done remotely, where students are able to log into a lab machine from their personal computers. Many students utilize this method so that they are able to access the files and code for their computer science courses from their computer by “sshing” into a lab machine through their terminal window, meaning that students cannot wake up a sleeping computer through a click on the keyboard because they aren’t accessing the lab computers in the department classrooms. Waking a computer from sleep power mode virtually can be accomplished through Wake on Unicast Traffic, a message specifically directed to a sleeping machine without interrupting the workflow of the students. When implementing unicast traffic, the user would only need to ssh into a sleeping machine like normal, and wake a few seconds longer (while the computer wakes up).
To send unicast traffic to a machine, it relies on the machines to answer to a broadcast and relay its hardware address. however if the machine is asleep it won't be able to do so. So first we have a user who wants to ssh into a specific lab machine. Normally it is able to do that through the CS router that connects to all of the lab machines. So when a student runs the ssh command, it takes the IP address of the specific lab machine. So the CS router needs to figure out the Hardware Address of the machine with that IP address. So the CS router will broadcast and ask what machine has this ip address. Then the machine with this ip address will reply back with its Hardware Address. However, if the machine is asleep, it won’t be able to respond. To address this problem, a small always-on device that can listen for broadcasted ARP requests can be utilized where if the router doesn't hear a reply after some time limit from the computer because it is asleep, the small device responds on its behalf. This device was implemented through a raspberry pi.
In a zwave server, a code was written to allow packet capture for the raspberry pi. A program in the zwave server will read the packet that came in, and make sure it is a request, instead of a reply. Then it will check the IP address of what is being requested. Using a JSON file that stores the IP address and its respective ARP address of every machine in the department. If IP address in the database, then send (print) a reply with the corresponding ARP address, which will in turn wake the machine.
The web page should serve as the public face of the project, effectively communicating its purpose while offering a user-friendly interface for interaction. At its core, the site must clearly explain the project’s objectives and its impact on minimizing energy consumption across computer lab machines. It should feature detailed power and energy statistics, presented through sophisticated graph visualizations, to provide users with an understanding of the project's efficacy. A limited control interface should be accessible to computer science students and faculty, integrating robust user authentication against the CS department’s LDAP server to ensure secure access. This interface should display a comprehensive list of CS lab machines along with their current sleep status, offering functionality to wake a machine remotely by sending a Wake-on-LAN (WoL) packet. Additionally, users should have the capability to prevent a machine from entering sleep mode for a specified period, enabling them to create reservations for ongoing tasks. The design and construction of the site should leverage platforms like Grafana to generate real-time visualizations, ensuring the data is both accessible and actionable, fostering an environment of informed decision-making regarding energy usage and machine management.