Desktop version

Home arrow Computer Science

  • Increase font
  • Decrease font


<<   CONTENTS   >>

Edge or Cloud: What to Choose?

Arnab K. Paul

Virginia Tech, USA

Machine learning (ML) models need to be trained on large volumes of data. Traditionally, client applications collect data and transfer it to cloud servers to train machine learning models, with the results returned to the clients. An alternative to this kind of an architecture is where data is trained at the site where it is collected. Therefore, the data never needs to be uploaded to the cloud server. This is called Edge-based learning, which offers the advantages of privacy preservation and reduced network latency. However, machine learning architects need to be aware of various requirements other than privacy to make an informed decision which to choose: Edge or Cloud? There is a lack of actionable information how these two kinds of learning differ in terms of performance and resource utilization. In this chapter, to address this problem, a comprehensive empirical evaluation of these two types of learning is conducted for a widely used clustering learning algorithm. The results will help in designing learning systems in the future and will help mitigate some challenges faced by ML applications.

Introduction

loT (Internet of Things) holds tremendous promise for human society. Current state of the art uses the cloud computing infrastructure as the "brain" for processing and analyzing loT data, and controlling loT devices. The low-latency, scalability, and privacy requirements of future loT applications are motivating the edge computing model: the evolution of the technological landscape that enables in situ data processing and actuation. The data flow in the present scenario consists of loT devices as the primary data collectors. These devices are generating increasing data deluge, which needs to be operated over to provide applications with high-quality services. Currently, there are two main approaches to operate over the data, one of which is a cloud-based approach in which the collected data is moved across the network to a cloud-based system for processing. Essentially, this approach aims to consolidate the economic utility model with the evolutionary development of many existing approaches and computing technologies, including distributed services, applications, and information infrastructures consisting of pools of computers, networks, and storage resources. The second approach is to train the data closer to the loT devices called the edge nodes, sending resulting models to a centralized server. The server operates over the aggregated models and updates models on the edge nodes.

There are well known trade-offs between cloud-based and edge-based computation. For example, cloud-based offers additional processing capabilities, with more resources being available at the cloud server. Cloud-based learning may also offer superior values for energy efficiency, as most resource intensive computations are performed at the remote server side, while edge-based offers the decoupling of the model training from the need for direct access to the raw training data. Additionally, the issue of privacy also comes to mind, as the raw data does not leave the confines of the loT network. Sometimes, latency becomes an important metric to operate over the data. Edge systems will provide lower latency than cloud-based systems.

In order to ease the selection of edge or cloud-based systems for an application, a model is developed in this chapter which takes into account the various factors contributing to the performance of an application. The factors range from system metrics, like CPU and memory to the computation time as well as latency and energy consumption. The model also considers the size of the dataset. The model analyzes multiple runs of machine learning application, namely, KMeans Clustering, and comes up with a decision parameter which optimizes the factors that deem important in the analyses and lets applications ease the decisionmaking process to decide which system to select cloud-based or edge-based for its computation. Clustering is a machine learning technique that groups items together if they share some characteristics. This technique has been used to solve important problems in diverse domains that include medicine [288, 370, 346], finance [79], social sciences [75], and even search engine optimization [371].

To summarize, this chapter will focus on detailed analysis of the application in both cloud-based and edge-based setup. From the analysis, the optimization model will come up with a list of metrics which are important. Next, based on the inputs from the application, the model comes up with the decision for the application to be built either on cloud or edge.

Background & Related Work

In this section, the technical background required to understand our conceptual contributions is given.

Edge Based Learning

Edge-Based Learning is a ML technique where the training dataset remains within the devices which are placed near the source of the data. All devices communicate with each other to compute the model. This ensures privacy preservation, reduced network latency, and less power consumption. The devices can also use the data after it is generated as the data will not be transferred to the cloud. The major disadvantage of this kind of learning is that it is limited by availability of hardware resources [254, 197, 255].

Cloud Computing

Cloud Computing is a distributed computing technique via which resources can be given to applications from a shared pool of resources. The resources can be data storage, compute power or even networks. There is no active management of resources required [260,135]. This kind of an architecture has major advantages like elasticity, scalability and 'pay-as-you-go' models. For a Cloud-based learning, datasets need to be transferred across networks to the cloud servers thereby increasing risk.

K Means

К-Means Clustering is a very popular ML algorithm where n observations are divided into к clusters based on which observation is closest to the mean. This reduces the variances within a cluster. An approach to compute К-Means is the iterative technique where, in every iteration, means are calculated based upon a set of points and then after each subsequent iteration, the distance between the means and the points are minimized until they converge.

Work in The Chapter

This chapter conducts an analysis on the implementation of К-Means clustering technique over both Edge-based learning and Cloud-based learning to decipher some key findings for the resource utilization for both approaches. This chapter will hopefully be able to guide ML designers in selecting a system which best suit their needs.

Experiment

Both edge-based learning and cloud-based learning have been analyzed via a clustering algorithm. The input to the algorithm is a dataset containing geographical coordinates. The output is a set of 4 coordinates, which are basically the four clusters into which all points can be divided to the points with the closest distance.

Edge Based Learning Procedure

In this kind of learning, client edge nodes collect the geographical data and generate a clustering model that can be then sent to a designated edge node acting as the server. The server combines the models from all the client nodes and gives as output the resultant model. The steps are again repeated for new data.

Cloud Based Learning Procedure

Here, the process differs from the edge-based learning procedure in the sense that clients are only responsible for collecting geographical data. Once the data is collected, it is sent to the cloud server where the clustering algorithm is used to generate the resultant model on the overall data. This model is then sent back to the clients.

Experimental Objectives

The major objective of the experiments is to compare both learning approaches with respect to system resource utilization, in particular CPU, memory, disk, network and energy. The reason is to understand the system behavior for machine learning algorithms to behave under an edge and a cloud setup. The findings will be extremely useful for both system designers as well as machine learning architects to find the learning procedure which best suits their model.

Setup

The client nodes for both edge-based learning and cloud-based learning are the same. All are Raspberry Pis 3 Model B, with Quad-Core 1.2 GHz and 1 GB RAM running Raspbian OS version3.0.1. There are 9 client devices for each setup. For edge-based learning, the server is located on a Raspberry Pi having the same configuration. In case of the cloud-based learning, the server is a AWS EC2 instance running Ubuntu Server 16.04 LTS, with 8 GB of RAM, with 2 CPU cores. The dataset sizes vary from 100 MB to 3.5 GB. To measure power, a "watts up? Pro" [163] power monitoring device is used. To estimate the power consumption of the AWS instance, energy estimate from Kurpicz et at. [205] is used.

Analysis

This section has the evaluation results for both edge-based and cloud-based learnings.

CPU Utilization

The CPU utilization (in percentage) is shown in Figures 2.1 and 2.2. It is seen that for clients, CPU utilization is much more for edge-based learning than cloud. The trend is the reverse in servers. This is because, for edge-based learning, individual models are generated in the clients and then passed onto the server, but in cloud the clients are only responsible for data collection.

Memory Utilization

The behavior for memory utilization is similar to that of compute utilization as seen in Figures 2.3 and 2.4. For edge-based learning, memory usage is increased when the model is computed on the clients and then the usage decreases after the model is given to the server, after which the memory usage of server starts increasing. For cloud-based learning, memory usage for clients is high at the

Time-series graphs for CPU %Utilization for Clients and Servers in

Figure 2.1: Time-series graphs for CPU %Utilization for Clients and Servers in

Edge-Based Learning

Time-series graphs for CPU %Utilization for Clients and Servers in

Figure 2.2: Time-series graphs for CPU %Utilization for Clients and Servers in

Cloud-Based Learning

Time-series graphs for Memory %Utilization for Clients and Servers

Figure 2.3: Time-series graphs for Memory %Utilization for Clients and Servers

in Edge-Based Learning

Time-series graphs for Memory %Utilization for Clients and Servers

Figure 2.4: Time-series graphs for Memory %Utilization for Clients and Servers

in Cloud-Based Learning

beginning when data is collected, after which it gets low and the server's memory utilization increases after that due to the computation of the entire model.

Data Transmission Rate

The data transmission rates in KBytes per second are shown in Figures 2.5 and 2.6. Cloud-based learning achieves much higher rates in data transmission over the network than edge-based learning. Edge-based learning clients have a smaller phase of data transmission over a smaller period of time than cloud-based clients, which are more continuous. This trend is reversed in case of servers where cloud server is much more discreet than edge-based server. But the edge-based server has less data to transmit and therefore the data transmission rates are drastically lower in edge server than the cloud server.

Power Consumption

The time series of power consumption, shown in Figure 2.7, shows that clients in edge-based learning consume more power than in cloud-based learning. This is

Time-series graphs for Data Transmission Rate (КВ/sec) for Clients and Servers in Edge-Based Learning

Figure 2.5: Time-series graphs for Data Transmission Rate (КВ/sec) for Clients and Servers in Edge-Based Learning

Time-series graphs for Data Transmission Rate (КВ/sec) for Clients and Servers in Cloud-Based Learning

Figure 2.6: Time-series graphs for Data Transmission Rate (КВ/sec) for Clients and Servers in Cloud-Based Learning

because in edge-based learning, clients are responsible for generating the model from the dataset but for cloud-based learning, clients are only responsible for transmitting the data collected.

Energy Consumption

Energy consumption is calculated by multiplying the duration of a job with power consumption. Power consumption was discussed in the previous section. Here, the duration and energy consumption of edge-based and cloud-based learnings are shown in Figures 2.8 and 2.9. As can be seen in the figures, the energy consumption in cloud-based learning is multiple times higher than edge- based learning. This is a very important factor for designers to include when thinking about green computing.

Summary

Edge-based learning consumes less energy and due to the distributed setup of the model generation, also has a lower duration of each job. However, this

Time-series graphs for Power Consumption for Clients in Edge-Based and Cloud-Based Learnings

Figure 2.7: Time-series graphs for Power Consumption for Clients in Edge-Based and Cloud-Based Learnings

Duration and Energy Consumption in Edge-Based Learning

Figure 2.8: Duration and Energy Consumption in Edge-Based Learning

results in higher CPU and memory usage of client edge nodes in edge-based learning than cloud-based learning. Due to AWS network being better than local network, the data transmission rates are higher in cloud-based learning than edge-based learning. However, data transmission needs to happen for a longer period of time in cloud-based learning than edge-based learning due to localized learning.

Findings

This section focuses on discussing the overall findings for this chapter.

Edge Based Learning

Edge-based learning acts upon localized data. Clients are responsible for data collection and generating a model for the collected data. This model is then

Duration and Energy Consumption in Cloud-Based Learning

Figure 2.9: Duration and Energy Consumption in Cloud-Based Learning

sent to the server for aggregation. The major motivation for edge-based learning is data privacy, as sensitive data will not leave edge nodes where the data is collected. Also, the overall energy consumption and time taken to generate the model is much too low.

Cloud based Learning

For cloud-based learning, all data is transferred from the data collection client nodes to the centralized cloud server where the machine learning model is generated. Data privacy is hampered in this approach. Also, the overall energy consumption is much higher. However the CPU and memory usage of clients are much less, which will elongate the lifetime of client edge nodes. But this also means that edge nodes are not used to the fullest. Also, data transmission rates are much higher because of an improved network interface in the cloud.

Comparison

The edge-based learning architecture is faster and consumes lesser energy than the cloud-based architecture when performing the same operations over data sets of the same size. However, client devices use more energy in edge- based learning due to model computation at the edge node. System architects and machine learning developers need to take into account the higher resource utilization on the clients for edge-based learning. Another important consideration is the server for the edge-based learning can be of a lower specification because of the lower resource utilization for edge-based learning. Cloud-based learning will incur higher costs due to network management for transmitting data from the clients to the cloud server.

Conclusion

This chapter focuses on giving a detailed analysis of the two types of learning: edge-based and cloud-based. Both learnings use к-means clustering algorithm to be evaluated. Both offer trade-offs in terms of resource utilization, energy consumption, network latency, data transmission and data privacy. While edgelearning approach helps in lower energy consumption, cloud-based learning helps in lower resource utilization for client nodes. Developers and architects can learn from this analysis to be better informed while selecting an approach for the machine-learning workloads.

 
<<   CONTENTS   >>

Related topics