Next Article in Journal
Real-Time Stream Processing in Social Networks with RAM3S
Previous Article in Journal
Learning Dynamic Factors to Improve the Accuracy of Bus Arrival Time Prediction via a Recurrent Neural Network
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Performance Analysis of On-Demand Scheduling with and without Network Coding in Wireless Broadcast

1
Department of Applied Computer Science, University of Charleston, Charleston, WV 25304, USA
2
Department of Computer Science, City University of Hong Kong, Kowloon, Hong Kong
3
Department of Electrical and Electronic Engineering, Auckland University of Technology, Auckland 1010, New Zealand
4
School of Information Management, Wuhan University, Wuhan 430072, Hubei, China
*
Author to whom correspondence should be addressed.
Future Internet 2019, 11(12), 248; https://doi.org/10.3390/fi11120248
Submission received: 16 October 2019 / Revised: 3 November 2019 / Accepted: 20 November 2019 / Published: 26 November 2019

Abstract

:
On-demand broadcast is a scalable approach to disseminating information to a large population of clients while satisfying dynamic needs of clients, such as in vehicular networks. However, in conventional broadcast approaches, only one data item can be retrieved by clients in one broadcast tick. To further improve the efficiency of wireless bandwidth, in this work, we conduct a comprehensive study on incorporating network coding with representative on-demand scheduling algorithms while preserving their original scheduling criteria. In particular, a graph model is derived to maximize the coding benefit based on the clients’ requested and cached data items. Furthermore, we propose a heuristic coding-based approach, which is applicable for all the on-demand scheduling algorithms with low computational complexity. In addition, based on various application requirements, we classify the existing on-demand scheduling algorithms into three groups—real-time, non-real-time and stretch optimal. In view of different application-specific objectives, we implement the coding versions of representative algorithms in each group. Extensive simulation results conclusively demonstrate the superiority of coding versions of algorithms against their non-coding versions on achieving their respective scheduling objectives.

1. Introduction

Data broadcast is an attractive solution for large-scale data dissemination in wireless communication environments. With ever-expanding data-centric mobile applications and the recent advances in wireless communication technologies, data broadcast techniques have attracted much attention in a variety of mobile computing environments, such as vehicular networks, mobile ad hoc networks etc. [1,2,3]. Generally, push-based and pull-based are two commonly used broadcast approaches [4,5]. Push-based broadcast (broadcast is done periodically based on a predefined pattern) is suitable for applications with small database sizes and stable data access patterns, such as emergency message broadcast from the backend server [6,7]. In contrast, pull-based broadcast also known as on-demand broadcast disseminates data items based on clients’ request patterns, such as traffic update query in traffic navigation systems [8]. In other words, in on-demand broadcast approach, the scheduling decisions are made online, which is more suitable for dynamic and large-scale data dissemination services [9]. In this work, we focus on further improving the bandwidth efficiency of on-demand broadcast by exploiting network coding.
Several previous studies have focused on on-demand broadcasting [9,10,11], which have different application-specific performance objectives. In a broadcast tick (transmission time of a unit-sized data item), these strategies only able to broadcast a single data item. This restriction hinders the further improvement of broadcast bandwidth efficiency. In contrast, network coding [12] can transmit multiple data items through an encoded packet in a broadcast tick. We observe that an inherited advantage of on-demand broadcast is having the feedback information from clients to the server, and hence applying network coding in on-demand broadcast does not require additional overhead for explicit feedback.
A variety of network coding techniques have been studied. Random linear network coding (RLNC) [13] is suitable for push-based broadcast, especially for broadcasting popular contents which may serve a large population of clients [6,14], such as periodic safety message, traffic information, etc. However, RLNC is not adaptive to customized services, such as mobile infotainment, gas station query, parking space query, etc. To support such services, the server needs to receive explicit on-demand requests from clients, so that it can provide services by encoding corresponding data items accordingly. XOR (⊕)-based network coding is a suitable candidate for such cases, as it has very low encoding and decoding overhead and it is simple to be implemented [15]. Many studies have applied XOR-based coding for improving network throughput [15,16,17] and enhancing packet delivery ratio [18]. Chaudhry and Sprintson [19] introduced the index coding problem in wireless multicast network leveraging the network coding and opportunistic listening techniques. Wang et al. [20] studied the network coding-based approach for minimizing deadline misses of real-time multi-item requests. Chen et al. [21] proposed a decoding-oriented cache management scheme in coding-assisted broadcast for reducing the overall response time. Asghari et al. [22] proposed a coded multicast delivery strategy for reducing the bandwidth usages in content placement problem.
With respect to the different performance objectives, the on-demand scheduling algorithms can be classified into three groups: real-time, non-real-time and stretch optimal scheduling algorithms. Specifically, in real-time scheduling, the primary objective is to minimize the deadline miss ratio, namely serving as many requests as possible before their deadlines expire. For instance, in vehicular networks, real-time traffic information must be broadcast to vehicles with certain time-constraint (e.g., must serve before a vehicle exits the service range of a road-side unit) [23,24]. Representative real-time scheduling algorithms include EDF (Earliest Deadline First) [25] and SIN (Slack time Inverse Number of pending requests) [9]. In non-real-time scheduling, the primary objective is to minimize the average response time, namely serving the requests as soon as possible. For instance, mobile clients wish to receive non-real-time infotainment information as soon as possible [10]. Representative non-real-time scheduling algorithms include FCFS (Fist Come First Served) [26], MRF (Most Requested First) [27], LWF (Longest Wait First) [27] and R × W (Number of Pending Request Multiply Waiting Time) [4]. In stretch optimal scheduling, the primary objective is to minimize the stretch, which is the ratio of the response time to the service time, where the service time refers to the transmission time of the data items. For instance, fairness treatment to different size requests in satellite networks, wireless LANs, cellular networks etc. [28]. Representative stretch optimal scheduling algorithms include LTSF (Longest Total Stretch First) [29] and STOBS (Summary Table On-demand Broadcast Scheduler) [28].
Although existing studies have considered to improve scheduling performance with respect to different application-specific objectives, they do not fully use the advantage of on-demand broadcast, where the server can be aware of the requested and cached data items of mobile clients. The impact of network coding on different scheduling objectives highly depends on the applied coding strategy at the server. In order to evaluate possible benefits brought by network coding, apparently, it is desirable to preserve the original scheduling criteria when applying network coding to existing on-demand scheduling algorithms. In this work, we will investigate the potential benefit of applying network coding into different groups of on-demand scheduling algorithms. The major contributions of this work are stated as follows.
  • We present a graph model, where a CR-graph (Cache-Request-graph) [11,19] is formed based on the clients requested and cached data items for reducing redundant broadcasting.
  • We transform the scheduling problem to the problem of finding maximum clique in the derived CR-graph, which is a well-known NP-complete problem in graph theory [30,31]. Accordingly, we propose a heuristic coding-based approach, which ensures that each scheduling algorithm will transform into its corresponding coding version while preserving its original scheduling criterion.
  • For the three groups of scheduling algorithms, namely real-time, non-real-time and stretch optimal, we select representative solutions in each group and present the detailed implementation of their coding versions with the proposed approach.
  • To evaluate the impact of network coding to different groups of algorithms, we build the simulation model for each group and define the used performance metrics.
  • We give a comprehensive performance evaluation, which demonstrates the efficiency of network coding on enhancing system performance with respect to different scheduling objectives under various circumstances.
The rest of this paper is organized as follows. Section 2 reviews the related work. Section 3 presents the system model. Section 4 proposes a heuristic coding-based approach. We build the simulation model in Section 5. An extensive performance evaluation is conducted in Section 6. Finally, we conclude this work in Section 7.

2. Related Works

The two main components of the proposed work in this paper are the on-demand wireless data broadcast and network coding. In the following subsections, first we review some existing representative on-demand scheduling algorithms in real-time, non-real-time and stretch optimal models. Then we review some exiting works in network coding, and state the possibilities and challenges of applying network coding in on-demand wireless data broadcast.

2.1. Real-Time Model

In real-time applications, the requests submitted by clients are associated with deadlines, and the primary objectives of real-time scheduling is to minimize the deadline miss ratio of requests. EDF (Earliest Deadline First) [25] is a classical scheduling algorithm in real-time systems, broadcasts data item based on the urgency of the request. To achieve the lower request deadline miss ratio and access time, Hu [32] proposed to consider request urgency, service productivity and scheduling fairness in scheduling. Motivated from EDF and MRF (Most Requested First), Xu et al. [9] proposed a real-time scheduling algorithm called SIN (Slack time Inverse Number of pending requests). For time-critical services, Chung et al. [33] proposed an algorithm called SUSC (Scheduling under Sufficient Channels), which creates a broadcast program under sufficient channels. Alternatively, PAMAD (the Progressively Approaching Minimum Average Delay) is used when the number of channels is insufficient. DTIU (Dynamic Temperature Inverse Urgency) [34] is proposed to cater real-time multi-item requests, which considers both data item popularity and request urgency. Ali et al. [3] studied the performance of different scheduling algorithm under strict deadline environment. He et al. [35] proposed UPF (Urgent and Popular data item First) for scheduling real-time requests under multi-channel environment.

2.2. Non-Real-Time Model

In non-real-time applications, the responsiveness of the system is measured by the time from the submission of a request to the time that this request has been served. The primary objectives of non-real-time scheduling algorithms is to minimize the response time of serving requests. Many classical algorithms have been proposed for non-real-time applications. FCFS (First Come First Served) [26] broadcasts data items in the arrival order of the corresponding requests. Wong [27] proposed two popular scheduling algorithms: MRF (Most Requested First) and LWF (Longest Wait First). MRF broadcasts the data item according to the popularity of the requested data items. LWF broadcasts the data item with the longest total waiting time. Aksoy and Franklin [4] suggested that the straightforward implementation of LWF is exhaustive and not suitable for large systems. They proposed a new scheduling scheme called R × W (Number of Pending Requests Multiply Waiting Time), which combines the benefits of MRF and FCFS. R × W broadcast the data item with the maximum R × W value. Liu and Lee [5,10] analyzed the mean response time of different existing scheduling algorithms under multi-channel environment. Polatoglou et al. [36] studied the complexity of adaptive push-based broadcast system for reducing mean response time. Lu et al. [37] studied the combined data push and data retrieval scheduling problem in multi-channel environment.

2.3. Stretch Optimal Model

In stretch optimal scheduling, the algorithm takes the variable sizes of data items into consideration (i.e., the service time to different data items). A metric called stretch is proposed in [29]. It is the ratio of the response time to the service time of the requested data item. The response time refers to the duration from the instance when the request is submitted to the time when the request is satisfied, whereas the service time is the duration for transmitting the data item. Acharya and Muthukrishnan [29] proposed a stretch optimal scheduling algorithm called LTSF (Longest Total Stretch First). In LTSF, the data item with the largest current stretch is broadcast first. Wu and Cao [38] reduced the computation overhead to make the stretch-based scheduling more scalable in on-demand broadcast environments. STOBS (Summary Tables On-demand Broadcast Scheduler) is proposed in [28], which broadcasts the data item with the maximum R × W S value. Here, R, W and S, respectively, denote the number of pending requests for the data item, the waiting time of the oldest request and the data item size. Lee et al. [39] proposed PRDS (Preemptive Request Deadline Size), for minimizing the response time and stretch in scheduling size variant data item.

2.4. Network Coding

Random linear network coding (RLNC) is initially proposed for the transmission and compression of information in multi-source multicast networks [13]. Ye et al. [6] applied RLNC for pushing popular contents from a single sever to multiple clients. Hassanabadi and Valaee [14] proposed to apply RLNC for repetitive reliable safety message rebroadcasting in the congested wireless channel. Ploumidis et al. [40] analyzed the throughput and delay in wireless mesh networks incorporating RLNC. Qu et al. [41] also studied the tradeoff between the throughput and decoding delay in applying RLNC in wireless mesh networks, and proposed a protocol named DCNC (Delay Controlled Network Coding). However, as in RLNC, the random coefficients need to be attached with the coded message, the coding overhead can be significant in a congested network. To reduce the overhead, a number of studies have considered XOR-based network coding in on-demand broadcast. Chu et al. [42] proposed On-demand Encoding (OE) algorithm for reducing clients’ access time in on-demand broadcast. However, OE can only encode two data items in an encoded packet, and hence it is not flexible, and it cannot maximize the coding benefit. Chaudhry and Sprintson [19] transformed the on-demand broadcast coding problem to the Boolean satisfiability (SAT) problem. They proposed several heuristic solutions based on graph coloring and color saving algorithms. Gao et al. [43] studied XOR coding for packet retransmission in erroneous wireless medium. Chen et al. [44] proposed an on-demand broadcast algorithm called ADC (Adaptive Demand-oriented Coding) for serving multi-item requests. In [11], Chen et al. proposed ADC-1 and ADC-2, where ADC-1 considers scheduling and network coding operations separately, and in ADC-2, these two operations are considered integrally. Zhan et al. [17] proposed a model for constructing encoding packet with several data items. The proposed approach greedily finds maximal cliques based on constructed graph model to find an approximate solution to the formulated coding problem. Ali et al. [45] proposed network coded opportunistic relaying for improving data dissemination performance.
In summary, to improve the scheduling performance by further exploring the strength of on-demand broadcast, it is desirable to adopt network coding into data broadcast. With network coding, different data items can be encoded into one packet. Since different coding strategies have different impacts on scheduling performance, in this paper, we propose a general heuristic coding-based on-demand broadcast scheme, by which the data scheduling problem can be transformed to the maximal clique problem. With the proposed approach, existing on-demand scheduling algorithms can be migrated into their corresponding coding versions while preserving their original criteria in scheduling data items. In addition, this work validates the advantage of applying network coding in on-demand scheduling through a comprehensive simulation study.

3. System Model

3.1. System Architecture

The system architecture shown in Figure 1 represents a typical on-demand data broadcast system in wireless communication medium [4]. The system consists of one server and multiple clients. When a client needs a data item and is not found in its local cache, the client submits a request via the uplink channel to the server, and senses the downlink channel for the transmission of the requested data item. According to a used underlying scheduling algorithm, the server retrieves the data items from the local database and constructs an encoded packet for broadcasting. While a server broadcasts the encoded packet, it also broadcasts the index information of the data items that are being encoded in the coded packet. Hence, when a client receives an encoded packet, it knows which data items from its local cache need to be used in decoding. A client can decode a requested data item from an encoded packet if it has cached all the other data items in the encoded packet except the requested one. Once decoding is successful, the decoded data item is then added in its local cache. The bitwise XOR (exclusive-OR) operation is commonly adopted for encoding and decoding due to its trivial computation overhead [11,42,46]. For example, as shown in Figure 1, C3 (i.e., the Client 3) has cached d 1 . Suppose C3 requests d 2 and the server broadcasts an encoded packet d 1 d 2 . C3 can decode d 1 d 2 and retrieve d 2 by such a schedule. For the cache management in a client, the LRU (Least Recently Used) cache replacement policy is adopted. A client will generate a new request only when the previous submitted request is satisfied or misses its deadline, which resembles the closed system model [11].

3.2. Graph Model

The key to improve the system performance for real-time, non-real-time and stretch optimal models is to disseminate a greater number of requested data items per broadcast tick. From the network coding perspective, it needs to make the encoding decision in such a way so that more number of clients will be satisfied per coded packet and eliminates the redundant encoding. For this, assume that G ( V , E ) is a CR-graph (Cache-Request-Graph) which is formed from the clients’ cached and requested data items. The next step is to find a maximum clique which contains the maximum priority vertex based on the used scheduling algorithm. In on-demand broadcast, CR-graph construction is a practical assumption because clients can piggyback their updated cache information in the requests submitted to the server. With the knowledge of clients’ cached and requested items, a graph G ( V , E ) is constructed at the server to guide the encoding decision. A brief overview of graph construction is given below. The summary of used notations in this paper is shown in Table 1.
C denotes the set of clients in the system, which is, C = { c 1 , c 2 , , c n } , where n is total number of clients. The set of data items requested by client c i is denoted by R ( c i ) , and the set of data items cached at c i is denoted by C H ( c i ) ( 1 i n ). The server has a database D with m data items, where d j is the jth data item ( 1 j m ).
Definition 1.
Based on the clients’ requested and cached data item, a graph G ( V , E ) is constructed by the following rules:
  • V = { v i j | c l i e n t c i r e q u e s t s f o r i t e m d j , 1 i n , 1 j m }
  • E = { ( v i 1 j 1 , v i 2 j 2 ) | j 1 = j 2 ; o r j 1 j 2 , d j 2 C H ( c i 1 ) , d j 1 C H ( c i 2 ) }
Accordingly, the rules for constructing edges are specified below:
  • e ( v i 1 j 1 , v i 2 j 2 ) with j 1 = j 2 means that if clients c i 1 and c i 2 request the same data item, there will be an edge between the two vertices v i 1 j 1 and v i 2 j 2 .
  • e ( v i 1 j 1 , v i 2 j 2 ) with j 1 j 2 , d j 2 C H ( c i 1 ) , and d j 1 C H ( c i 2 ) means that if client c i 1 ’s cache contains the data item being requested by client c i 2 and vice versa, there will be an edge between vertices v i 1 j 1 and v i 2 j 2 .
A clique, denoted by δ , is a subset of the vertices in the CR-graph G, such that every two vertices are connected by an edge, i.e., δ V ( G ) .
Definition 2.
Let an arbitrary clique δ contains | δ | number of vertices, i.e., δ = { v i 1 j 1 , v i 2 j 2 , , v i | δ | j | δ | } . The corresponding clients are C δ = { c 1 , c 2 , , c | δ | } . The encoded packet for clique δ will be β ( δ ) = { d 1 d 2 d K } , where K different data items are requested by clients in C δ . Please note that K | δ | .
By encoding the set of data items in δ for broadcasting, scheduling with coding can satisfy multiple requests for different data items in a broadcast tick. In contrast, scheduling without coding can only serve the requests for the same data item in a broadcast tick.

3.3. Coding-Based On-Demand Broadcast

Recalling v i j denotes a client c i for the requested data item d j . For simplicity, we assume that the vertices in the graph are denoted by v 1 , v 2 , , v n , where n is number of vertices. Please note that this simple assumption does not refrain a vertex to also denote the corresponding requested data item. v i corresponds to the request c i , where v i V ( G ) and 1 i n . A vertex v i is associated with three weights, namely t i , l i , a n d T i , which represent the waiting time, the item size and the slack time, respectively. A data item d j is also associated with a weight N ( d j ) , which represents the popularity, namely the number of pending requests for d j . The broadcast channel bandwidth is B. The relationships between the scheduling objectives and the properties of the cliques are stated as follows.
  • Relationship 1: Real-time scheduling algorithms which aim to serve the request with the minimum slack time such as EDF, should select the largest clique δ which includes the vertex v i with the largest 1 T i value. The other real-time algorithm SIN, also considers popularity in addition of slack time.
  • Relationship 2: Non-real-time scheduling algorithms which aim to serve the request with the longest waiting time such as FCFS, should select the largest clique δ which includes the vertex v i with the largest t i value.
  • Relationship 3: Non-real-time scheduling algorithms which aim to broadcast the data item with the highest popularity such as MRF, should select the largest clique δ which includes the maximum number of vertices.
    The working properties of other non-real-time algorithms are the combination of the properties of FCFS (waiting time) and MRF (data item popularity), such as LWF and R×W, both consider waiting time and data item popularity for scheduling.
  • Relationship 4: Stretch optimal scheduling algorithms which aim to reduce the stretch such as LTSF, should select the clique δ which has the maximum current stretch, namely with the maximum summation of t i l i B value. The other stretch optimal scheduling algorithm STOBS considers data item popularity in addition of request waiting time and data item size.
The relationships of all the algorithms are summarized in Table 2. From the above relationships it is understandable that to migrate the traditional scheduling algorithms into the network coding versions by exploiting the full coding benefits, we need to find the maximum clique δ m a x in the graph G ( V , E ) . This is because the number of satisfying clients is equivalent to the number of vertices in δ m a x . However, finding the maximum clique is a well-known NP-complete problem in graph theory [30]. This is computationally expensive, because the new maximum clique needs to find out every time before making a broadcast decision. This turns out applying network coding in on-demand broadcast may be infeasible in practice. Hence in the following we propose a heuristic coding-based approach to convert the traditional scheduling algorithms into the coding version in polynomial time, while preserving the original scheduling criteria.

4. Proposed Heuristic Coding-Based On-Demand Broadcast

Recalling the objective of this work is to convert a traditional scheduling algorithm into the coding version with its original scheduling criteria along with maximizing the coding benefit by keeping the overhead minimal. Hence the key idea of the proposed heuristic coding-based approach is to broadcast the encoded packet, which (1) must contain the vertex corresponds to the scheduled client by the scheduling algorithm, and (2) satisfy as many clients as possible per broadcast by keeping the encoding complexity as minimal as possible. The proposed approach contains the following two important considerations.
  • Find the vertex, which holds the maximum priority value of the scheduling algorithm. If a data item d s D of a client c p is selected to broadcast, the corresponding vertex is v p s , we call as selected vertex.
  • To maximizing the exploitation of network coding and reducing encoding complexity, need to find the maximal clique δ m a x v p s (approximate maximum clique) which covers the selected vertex v p s . Please note that δ m a x v p s is the maximum among all the possible maximal cliques covering v p s in G. δ m a x v p s will be used to form the encoded packet β ( δ m a x v p s ) for broadcasting.
Lemma 1.
For an arbitrary vertex v i j δ m a x v p s , the corresponding client c i C δ can retrieve d j from the encode packet β ( δ m a x v p s ) .
Proof. 
As the proposed system is a closed system, which infers that one client can have only one pending request in the service queue. Hence, we can infer that all the vertices in a clique represents the unique clients. According to the clique definition, all the vertices in a clique are inter-connected. Again according to the edge definition of a CR-graph (Definition 1), a client only has edges with other clients if they request the same data item, or one client’s cached data item is being requested by another client and vice versa. This implies that for a client c i C δ , if v i j δ m a x v p s , for K 1 , c i already has (in the cache) all the data items of β ( δ m a x v p s ) , except d j ; otherwise all the vertices in δ m a x v p s requested for the same data item d j and d j = d s . Hence c i can easily decode d j from β ( δ m a x v p s ) with its cached data items. □
Lemma 2.
Broadcasting the encoded packet β ( δ m a x v p s ) for the selected vertex v p s , ensures the migration of a scheduling algorithm into the coding version with preserving its original scheduling criteria.
Proof. 
The proposed coding-based system first selects the selected vertex v p s , then finds the maximal clique δ m a x v p s , which covers v p s . Please note that v p s is the highest priority vertex based on the scheduling criteria of a scheduling algorithm. For instance, in the real-time model, for EDF scheduling, v p s is vertex with the highest urgency; in the non-real-time model, for FCFS scheduling, v p s is vertex with the longest waiting time; in the stretch optimal model, for LTSF scheduling, v p s is vertex with the longest stretch. After selecting v p s , the maximal clique δ m a x v p s is found from the CR-graph G, which cover v p s . This means that encoded packet β ( δ m a x v p s ) must contain the selected data item d s of client c p . Hence by broadcasting β ( δ m a x v p s ) , all the scheduling algorithms’ criteria are preserved in the coding version. □

4.1. The Heuristic Algorithm

To sum up, our heuristic coding-based on-demand broadcast consists of the following three key steps. The pseudo code is shown in Algorithm 1.
Algorithm 1: Heuristic coding-based on-demand broadcast.
Futureinternet 11 00248 i001
Step 1: CR-graph G ( V , E ) construction
Upon a request arrival from a client c k for the data item d r , the corresponding vertex v k r will be added in the vertex set V ( G ) . According the edge definition as defined in Definition 1, all the possible edges are formed for v k r with the vertices in V ( G ) .
Step 2: Finding the selected vertex v p s
Based on the associated weights of a vertex v i , namely t i , T i , l i , and the associated weight of the requested data item d j , namely N ( d j ) , a particular scheduling algorithm selects a vertex v p s with the highest scheduling priority value (P) among all the vertices in V ( G ) . For instance, EDF selects the vertex v p s with the lowest T p value, MRF selects a vertex v p s with the highest N ( d s ) , LTSF selects a vertex v p s with the highest t p l s B value. The details of v p s selection criteria of each of the scheduling algorithms are shown in Section 4.2.
Step 3: Encoding and broadcasting the encoded packet β ( δ m a x v p s )
After finding the selected vertex v p s , in this step the heuristic approach finds the maximal clique δ m a x v p s which covers v p s . For finding the maximal clique, we use the approach presented in [11], in which only the adjacent vertices of v p s (directly connected vertices with v p s ) are checked for finding the maximal clique. After finding the maximal clique δ m a x v p s , the next job is to encode the packet β ( δ m a x v p s ) which consists all the corresponding data items in δ m a x v p s . After broadcasting β ( δ m a x v p s ) , the system updates the CR-graph G.
For n number of vertices the Step 1 has O ( n ) complexity, Step 2 must search the selected vertex v p s which incurs O ( n ) complexity, and the Step 3 needs to find the maximal clique for a specific selected vertex v p s from the constructed (in Step 1) CR-graph G, which incurs O ( n 3 ) complexity. As both encoding and decoding operations are performed using bitwise XOR (exclusive-OR) technique, the decoding can be performed with one single operation at each client. Therefore, decoding only incurs constant complexity O ( 1 ) . Hence, for each client, the decoding complexity is O ( 1 ) . Therefore, the total complexity of the proposed heuristic coding-based broadcast approach is O ( n ) + O ( n ) + O ( n 3 ) + O ( 1 ) O ( n 3 ) , which is practical to implement.

4.2. Scheduling Algorithms with Heuristic Coding Implementation

We select several representative on-demand scheduling algorithms from each group and present the implementation of their coding versions. In particular, we analyze how the coding versions of different algorithms can fulfil their original scheduling objectives.

4.2.1. Real-Time Algorithms

  • EDF [25]: EDF serves the request with the minimum slack time. In other words, it prioritizes the request urgency in scheduling. The network coding version of EDF, needs to find the largest clique δ which contains the vertex v i with the minimum slack time T m i n among all the vertices in graph G. In the heuristic coding implementation (denoted by EDF_N), the system first finds the selected vertex v p s with T m i n . In Algorithm 1, this is done in Step 2. v p s is the vertex with the highest EDF scheduling priority, i.e., v p s = { v i j | T i = m a x { 1 T 1 , 1 T 2 , , 1 T n } , 1 j m } . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item of the most urgent client.
  • SIN [9]: SIN broadcasts the item with the minimum S I N value. The network coding version of SIN, needs to find the clique δ in G with the maximum | δ | T m i n value, where T m i n is the minimum value among all T i in δ . In the heuristic coding implementation (denoted by SIN_N), the system first finds the selected vertex v p s with the minimum T p N ( d s ) value, In Step 2 of Algorithm 1, the v p s selection is done by finding the vertex with the maximum N ( d s ) T p value, i.e., v p s = v i j | N ( d j ) T i = m a x N ( d r ( 1 ) ) T 1 , N ( d r ( 2 ) ) T 2 , , N ( d r ( n ) ) T n , 1 r , j m . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item of the client with the minimum S I N value.

4.2.2. Non-Real-Time Algorithms

  • FCFS [26]: FCFS serves requests according to their arrival order. The network coding version of FCFS, needs to find the largest clique δ which contains the vertex v i with longest waiting time t m a x among all t i in G. In the heuristic coding implementation (denoted by FCFS_N), the system first finds the selected vertex v p s with t m a x . In Step 2 of Algorithm 1, v p s is the vertex with the highest FCFS scheduling priority, i.e., v p s = { v i j | t i = m a x { t 1 , t 2 , , t n } , 1 j m } . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item of the client with the longest waiting time.
  • MRF [27]: MRF broadcasts the data item with the largest number of pending requests. The network coding version of MRF, needs to find the maximum clique δ m a x in G, where δ m a x is the maximum clique among all the possible cliques in G. In the heuristic coding implementation (denoted by MRF_N), the system first finds the selected vertex v p s with the maximum N ( d s ) value. In Step 2 of Algorithm 1, v p s is the vertex with the highest MRF scheduling priority, i.e., v p s = { v i j | N ( d j ) = m a x { N ( d 1 ) , N ( d 2 ) , , N ( d m ) } , 1 i n } . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item with the largest number of pending requests.
  • LWF [27]: LWF broadcasts the data item with the largest total waiting time. The network coding version of LWF, needs to find the largest clique δ in G with the maximum summed waiting time of the corresponding vertices. In the heuristic coding implementation (denoted by LWF_N), the system first finds the selected vertex v p s with the maximum sum waiting time ( t i , 1 i n ) value of data item d s , denoted as t ( d s ) . In Step 2 of Algorithm 1, v p s is the vertex with the highest LWF scheduling priority, i.e., v p s = { v i j | t ( d j ) = m a x { t ( d 1 ) , t ( d 2 ) , , t ( d m ) } , 1 i n } . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item with the largest total waiting time of the pending requests.
  • R × W [4]: R × W schedules the data item with the maximum R × W value, where R is the number of pending requests for that data item and W is the waiting time of the earliest request for that data item. The network coding version of R × W, needs to find the largest clique δ with the maximum | δ | × t m a x value, where t m a x is the maximum waiting time value among all t i in δ . In the heuristic coding implementation (denoted by R × W_N), the system first finds the selected vertex v p s with the maximum N ( d s ) × t p value. In Step 2 of Algorithm 1, the v p s selection is done by finding the vertex with the maximum N ( d s ) × t p value, i.e., v p s = { v i j | N ( d j ) × t i = m a x { N ( d r ( 1 ) ) × t 1 , N ( d r ( 2 ) ) × t 2 , , N ( d r ( n ) ) × t n , 1 r , j m } } . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item with the maximum R × W value.

4.2.3. Stretch Optimal Algorithms

  • LTSF [29]: LTSF broadcasts the data item with the largest total current stretch. The network coding version of LTSF, needs to select the largest clique δ with the maximum v i δ t i m a x v i δ { l i B } value, where v i δ t i is the total waiting time of the vertices in δ and m a x v i δ { l i B } is the service time of the vertices in δ . Please note that the service time of the coded packet will be the service time of the largest data item in the clique. In the heuristic coding implementation (denoted by LTSF_N), the system first finds the selected vertex v p s with the largest total current stretch m a x t ( d s ) l p B for the data item d s . In Step 2 of Algorithm 1, the v p s selection is done by finding the vertex with the maximum t ( d s ) l p B value, i.e., v p s = v i j | t ( d j ) l j B = m a x t ( d 1 ) l 1 B , t ( d 2 ) l 2 B , , t ( d m ) l m B , 1 i n . Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item with the largest total current stretch.
  • STOBS [28]: STOBS broadcasts the data item with the largest R × W S value, where R, W and S denote, respectively, the number of pending requests, waiting time of the earliest pending request and the item size. The network coding version of STOBS, needs to find the largest clique δ with the maximum | δ | m a x v i δ t i m a x v i δ l i value, where m a x v i δ t i and m a x v i δ l i are respectively the maximum waiting time and the maximum item size among all the vertices in δ . Please note that m a x v i δ l i also denotes the size of the encoded packet. In the heuristic coding implementation (denoted by STOBS_N), the system first finds the selected vertex v p s with the maximum N ( d s ) × t p l s value. In Step 2 of Algorithm 1, the v p s selection is done by finding the vertex with the maximum N ( d s ) × t p l s value, i.e., v p s = v i j | N ( d j ) × t i l j = m a x N ( d r ( 1 ) ) × t 1 l r ( 1 ) , N ( d r ( 2 ) ) × t 2 l r ( 2 ) , , N ( d r ( n ) ) × t n l r ( n ) , 1 r , j m .
    Then Step 3 searches for the maximal clique δ m a x v p s to ensure that the encoded packet β ( δ m a x v p s ) consists the requested data item with the largest R × W S value.

5. Simulation Model

5.1. Setup

The simulation model is built according to the system architecture described in Section 3. The model is implemented by CSIM19 [47]. Unless stated otherwise, the simulation is conducted under the simulator’s default setting. The major explicit parameters are shown in Table 3.
A client only submits a new request when the previous submitted request is satisfied or misses its deadline, which exhibits a closed system model [11]. The request generation interval of each client is shaped by T H I N K T I M E , which follows the Exponential distribution. The clients’ data access pattern is shaped by the Zipf distribution [48], where the skewness is controlled by the parameter θ . Specifically, when θ equals 0, it means the random distribution (all the data items have the equal access probability). With an increased value of θ , the data access pattern becomes more skewed.
For real-time algorithms, the relative deadline of a request q i ( R D i ) is computed by:
R D i = ( 1 + u n i f o r m ( μ , μ + ) ) T i s e r v
The deadline of q i ( D l i ) is computed by:
D l i = A T i + R D i
where A T i is the arrival time of q i . μ a n d μ + represent the minimum and the maximum laxity, respectively. T i s e r v represents the service time of q i . A request is feasible for serving as long as its slack time remains greater than its service time. The system routinely removes the infeasible requests from the service queue.
The channel bandwidth is 1 unit / tick , i.e., the server disseminates one unit-sized data item in each broadcast tick. For the real-time and the non-real-time scheduling, the item size is 1 unit. For the stretch optimal scheduling, the sizes of data items are generated using random distribution [49]:
D a t a I t e m S i z e [ i ] = S I Z E M I N + r a n d o m ( 0.0 , 1.0 ) × ( S I Z E M A X S I Z E M I N + 1 )
where S I Z E M I N and S I Z E M A X are the minimum and the maximum data item size in the database, respectively, and i = 1 , 2 , , m .

5.2. Metrics

We define the following metrics to give an intensive performance analysis.
  • Deadline Miss Ratio (DMR): It is the ratio of the number of deadline missed requests to the number of submitted requests. The primary objective of a real-time scheduling algorithm is to minimize the DMR.
  • Average Response Time (ART): It is the average duration for getting the response from the server after submitting a request. ART measures the responsiveness of the system. The primary objective of a non-real-time scheduling algorithm is to minimize the ART.
  • Average Stretch (AS): It is the ratio of the response time to the service time of the corresponding data item. It is a widely used metric in heterogeneous database environments. The primary objective of a stretch optimal scheduling algorithm is to minimize the AS.
  • Average Encode Length (AEL): It is the average size of an encoded packet. It measures how a scheduling algorithm exploits the coding opportunity. The larger AEL mean more coding benefit.
  • Average Broadcast Productivity (ABP): It is the average number of requests satisfied per broadcast. It measures the productivity of a broadcasted packet/item. A large ABP implies the efficient bandwidth use.

6. Performance Evaluation

In this section, we evaluate the performance of both the non-coding and the coding versions of real-time, non-real-time and stretch optimal scheduling algorithms in a variety of circumstances. The simulation was continued until 95% confidence interval was achieved.

6.1. Simulation Results in Real-Time Models

Figure 2 and Figure 3 show the comparative performance graphs of the real-time algorithms for both the non-coding and the coding versions.

6.1.1. Impact of Workload

Figure 2a shows the impact of workload under different number of clients. When the number of clients increases, the system workload becomes heavier. As a result, more requests miss their deadlines and the algorithms’ performances decline (Figure 2a). In the non-coding versions of the real-time algorithms, SIN outperforms EDF, because EDF only considers the request urgency. On the contrary, SIN considers both the request urgency and the item popularity, and hence SIN satisfies more requests than EDF (Figure 2b). The performance difference between EDF and SIN becomes more significant with an increase workload. The observations are consistent with the results reported in previous studies [9,50].
The network coding versions of EDF and SIN, namely EDF_N and SIN_N, outperform their respective non-coding versions notably in terms of achieving the lower deadline miss ratio (DMR). For instance, with the moderate system workload (default setting) this performance improvement is 28% and 19%, respectively for EDF_N and SIN_N. The main reason of this performance improvement is that the coding version achieves a higher average broadcast productivity (ABP) than the corresponding non-coding version (Figure 2b). This result shows that more requests can be satisfied by a single broadcast with network coding.
Figure 2b shows that with an increase number of clients, the ABP of both the coding and non-coding version increases. With the growing number of requests, the popularity of data items increases. Therefore, for the non-coding version, despite a heavier system workload, the ABP increases. For the coding version, more requests provide more coding opportunities (Figure 2c), thereby yielding a higher ABP (Figure 2b). Please note that the amount of performance improvement of using network coding for EDF is larger than SIN and the amount of performance improvement of SIN_N over SIN diminishes when the number of clients is large. This is because network coding indirectly endows the item popularity attribute to EDF when it chooses the largest clique that contains the data item with the earliest deadline. Therefore, the performance improvement of EDF_N is more significant, and it increases with the item popularity. However, since SIN has already considered the item popularity, the performance gain due to network coding in SIN_N is less significant. On the whole, SIN_N achieves the highest ABP and the lowest DMR (Figure 2a).
Figure 2c shows that SIN_N consistently achieves a higher average encode length (AEL) than EDF_N. The result shown in Figure 2d explores the reason. In particular, it shows the percentage distribution of number of items in an encoded packet under the default setting. Most of the encoded packets consist of two items, while the rest packets consist of one or three items. Specifically, SIN_N gives a higher chance of encoding more than one data items in a packet than EDF_N. For instance, 77.2% of the packets encoded by SIN_N consist of two data items, while 74.8% of the packets encoded by EDF_N consist of two data items. On the other hand, the number of items which are not encoded in SIN_N is less than that of EDF_N. Specifically, 11% of the items are not encoded in SIN_N, while 14.2% of the items are not encoded in EDF_N. In general, a higher ABP and AEL can be achieved if there are more encoded packets which consists of more data items. This has been demonstrated in Figure 2b,c, respectively.

6.1.2. Impact of Deadline Range

Recalling that the relative deadline of requests is uniformly selected from the range μ μ + . A larger value of the relative deadline gives a looser request deadline. Consequently, the DMRs of all the algorithms (Figure 3a) drop with an increase mean value of μ μ + . Evidently, SIN_N outperforms others.
In the coding versions, when the deadline becomes loose, the system has more opportunities to encode and disseminate data items to serve clients. As shown in Figure 3a,b, for the coding versions, the DMRs drop and the ABPs increase slightly. However, a loose request deadline does not have much impact on the AELs (<0.1) of EDF_N and SIN_N (Figure 3c). In the non-coding versions, when deadline range increases, the ABP of EDF does not change, whereas SIN shows a downward trend. This is because EDF only considers the request urgency, but SIN considers both the request urgency and the item popularity. As data items with less popularity may have better chance to be disseminated when the request deadline is getting looser, the ABP of SIN drops.

6.2. Simulation Results in Non-Real-Time Models

Figure 4 and Figure 5 show the comparative performance graphs of the non-real-time algorithms for both the non-coding and the coding versions.

6.2.1. Impact of Skewness Parameter ( θ )

Figure 4 shows the impact of the data access pattern θ on the non-real-time algorithms. Evidently, both the non-coding and the coding versions of the algorithms have better performance in terms of minimizing the average response time (ART) with an increased value of θ . With an increased θ , the data access pattern is getting skewed. Previous studies [4,9,23] have demonstrated that algorithms will perform better when the data access pattern is getting skewed. This is because each broadcast data item has the potential to satisfy more requests. In addition, the coding version of an algorithm achieves a much lower response time (Figure 4b) than its non-coding version (Figure 4a). On an average, irrespective of the skewness of the data access pattern, the coding version of each algorithm has at least 40% less ART than the non-coding version. The relative performance positions of the algorithms in the coding group are identical to the non-coding group. MRF performs the best when the data access pattern is less skewed. When the data access pattern is skewed, MRF becomes the worst because unpopular data items may suffer from starvation, which causes the large ART. The result is consistent with the findings in previous works [10,34,51]. MRF_N shows similar trend in Figure 4b. FCFS which only considers the request waiting time, performs the worst in most cases. Similarly, FCFS_N has the worst performance among the coding versions. R × W and LWF have similar performance, because both the algorithms consider the item popularity and the request waiting time in scheduling. In the coding version, LWF_N significantly outperforms other algorithms in a highly skewed data access pattern environment. In the non-coding version, excepting MRF, the ABPs of all the algorithms increase steadily when the data access pattern is getting skewed (Figure 4c). This is because MRF solely considers item popularity in scheduling, resulting in very low ABP for unpopular data items. Similar results are observed in the coding versions of the algorithms (Figure 4d). The AELs increase when the data access pattern is getting skewed (Figure 4e). These results further explain the relative performance of algorithms as shown in Figure 4a,b.

6.2.2. Impact of Workload

Figure 5 shows the impact of workload on the non-real-time scheduling algorithms. As expected, when the system workload is getting higher, the ARTs of both the non-coding and the coding versions increase (Figure 5a,b). MRF and MRF_N have the best performance in the non-coding and the coding versions, respectively. Please note that θ = 0.4 in the default setting, where MRF has been shown with satisfactory performance because the data access pattern is not quite skewed. FCFS and FCFS_N perform the worst in the respective groups. R × W and R × W_N have the moderate performance in the non-coding and the coding versions, respectively. LWF and LWF_N rank next to R × W and R × W_N, respectively. Please note that the coding version of an algorithm significantly reduces the access time than its non-coding version under different workloads. It demonstrates the advantages of network coding in terms of adapting to the change of system workloads. With an increase of clients, data items will be requested more frequently. This helps to improve the broadcast productivity. Therefore, the ABPs of the non-coding versions increase (Figure 5c). Moreover, this helps to improve the coding flexibility, and hence the AELs of the coding versions increase (Figure 5e). As both the reasons positively impact on the broadcast productivity of the coding versions, when the number of clients is getting higher, the ABPs of the coding versions increase much more significantly than that of the non-coding versions (Figure 5d).

6.3. Simulation Results in Stretch Optimal Models

Figure 6 and Figure 7 show the comparative performance graphs of the stretch optimal scheduling algorithms for both the non-coding and the coding versions. In this set of simulations, the sizes of data items are various. Specifically, the sizes of data items are randomly generated between 1 and 30. Moreover, for comparison purposes, we maintain a constant system workload with various data sizes by changing the T H I N K T I M E accordingly.

6.3.1. Impact of Workload

Figure 6 depicts the behavior of the stretch optimal algorithms under different system workloads. The coding versions show a significant better performance than their non-coding versions in terms of minimizing the ART (Figure 6a). With respect to the average stretch (AS), a coding version also outperforms the corresponding non-coding version (Figure 6b). Both in the non-coding and the coding versions, LTSF and STOBS have similar performance. It is worth mentioning that STOBS schedules the data item with the maximum R × W S value. In contrast, LTSF schedules the data item with the longest total current stretch, which is the total stretches of all the pending requests of that data item. This implies that LTSF also considers both the data item popularity and the request waiting time. Given the broadcast bandwidth of 1 unit / tick , the time to broadcast a data item (i.e., the number of broadcast ticks) equals the number of units of the data item (i.e., the item size). On a whole, the attributes of LTSF and STOBS are very similar, which result in their close performance. For the implementation of their coding versions, STOBS_N computes N ( d s ) × t p l p for finding the selected vertex v p s , which is the ratio of the data item popularity multiply the maximum waiting time to the data item size. On the other hand, LTSF_N computes m a x t i l p B for finding the selected vertex v p s , which is the ratio of the sum of the waiting time of requests to the item size of the corresponding data item. Likewise, the attributes of STOBS_N and LTSF_N are similar, which result in their close performance. Moreover, with an increase of clients, the AEL of a coding version increases (Figure 6c), and the ABPs of both versions increase. Please note that the ABP of a coding version is much higher than its non-coding version (Figure 6d).

6.3.2. Impact of Data Item Size

Figure 7 shows the impact of the maximum data item size ( S I Z E M A X ) on the performance of the stretch optimal algorithms. The larger value of S I Z E M A X means a longer service time (i.e., transmission time) of a data item. Recalling that the response time is the summation of the request waiting time and the item service time. The large S I Z E M A X increases the response time in two aspects. First, the transmission time is getting longer. Second, the longer service time of the current data item causes longer waiting time of other data items. As a result, with an increase of S I Z E M A X , the ARTs of both the non-coding and the coding versions increase (Figure 7a). Since the stretch is the ratio of the response time to the transmission time of the requested data item, the stretches of the non-coding versions do not changes much because both the response time and the transmission time increase with larger S I Z E M A X (Figure 7b).
In contrast, with an increase value of S I Z E M A X , the stretches of the coding versions increase. There is a tradeoff of applying network coding in scheduling for different item sizes. On the one hand, an encoded packet may consist of more than one item, which means that broadcasting an encoded packet can satisfy more pending requests simultaneously. Therefore, the average response time decreases. On the other hand, since the transmission time of an encoded packet equals the transmission time of the maximum size item of the corresponding clique, the transmission delay of an encoded packet increases, which results in the longer average response time. To sum up, whether an algorithm can take the benefit of network coding depends on which factors dominates the performance. From Figure 7a, we note that ART of a coding version is better than its non-coding version under different S I Z E M A X values. However, in terms of minimizing the stretch, a coding version cannot retain its superiority over the non-coding version when S I Z E M A X increases to 60 (Figure 7b). For instance, when S I Z E M A X is as low as 10, the coding versions of both LTSF and STOBS improve around 18% stretch over the non-coding versions; however, this improvement diminishes very quickly when S I Z E M A X increases to 40 (3% maximum improvement). Even when S I Z E M A X reaches to 60, the improvement becomes negative. The reason is due to the penalty of small data items, namely the coding version of an algorithm incurs higher AS for small data items. The penalty to small data items increases with the value of S I Z E M A X . Please note that S I Z E M A X have no impact on the AELs (Figure 7c). Accordingly, the ABPs of different algorithms are similar under different item sizes (Figure 7d).

7. Conclusions and Future Directions

On-demand data broadcast has been demonstrated as a promising way to disseminate information to a large population of clients in wireless communication environments. Conventional scheduling algorithms cannot best explore the broadcast efficiency of wireless bandwidth. In this study, we apply network coding to enhance the scheduling performance of existing on-demand scheduling algorithms. Based on the derived CR-graph, we propose a heuristic coding-based approach, which can efficiently transform existing scheduling algorithms to their respective network coding versions while preserving their original scheduling criteria. In particular, based on the classification of on-demand scheduling algorithms, we select several representative algorithms in each group for performance evaluation and enhancement, including two real-time algorithms (i.e., EDF and SIN), four non-real-time algorithms (i.e., FCFS, MRF, LWF and R×W) and two stretch optimal algorithms (i.e., LTSF and STOBS). We describe the detailed implementation of the network coding version of each algorithm and investigate their potential performance improvement using a running example. We design a number of metrics and build a simulation model to compare the performance of the non-coding version with the coding version of each algorithm. The comprehensive simulation results under various circumstances conclusively demonstrate that network coding can effectively improve the performance of on-demand scheduling algorithms with different objectives.
In our future work, we will further investigate the network coding strategy in heterogeneous service environment where data items are with different sizes. Specifically, since the benefit of network coding largely depends on the size of the encoded packet, which is determined by the largest size of data item which is encoded. It is interesting to strike a balance between encoding large and small data items to maximize the overall system performance.

Author Contributions

This work was completed with contributions from all the authors. V.C.S.L. and J.C. proposed the research idea with regular feedbacks of suggestions and supervision. G.G.M.N.A. helped in the conceptualization of the project, conducted further simulations and wrote the initial manuscript. Y.M. conducted the initial simulation studies. P.H.J.C. did the funding acquisition and supervised the whole project. All authors did edit, review and improve the manuscript.

Funding

This research received no external funding.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
EDFEarliest Deadline First
SINSlack time Inverse Number of pending requests
FCFSFist Come First Served
MRFMost Requested First
LWFLongest Wait First
RxWNumber of Pending Request Multiply Waiting Time
LTSFLongest Total Stretch First
STOBSSummary Table On-demand Broadcast Scheduler
CR-GraphCache-Request-Graph

References

  1. Ji, H.; Lee, V.C.; Chow, C.Y.; Liu, K.; Wu, G. Coding-based Cooperative Caching in On-demand Data Broadcast Environments. Inf. Sci. 2017, 385, 138–156. [Google Scholar] [CrossRef]
  2. Ali, G.G.M.N.; Lee, V.C.S.; Chan, E.; Li, M.; Liu, K.; Lv, J.; Chen, J. Admission Control-Based Multichannel Data Broadcasting for Real-Time Multi-Item Queries. IEEE Trans. Broadcast. 2014, 60, 589–605. [Google Scholar] [CrossRef]
  3. Ali, G.G.M.N.; Noor-A-Rahim, M.; Rahman, M.A.; Ayalew, B.; Chong, P.H.J.; Guan, Y.L. Cooperative Cache Transfer-based On-demand Network Coded Broadcast in Vehicular Networks. ACM Trans. Embed. Comput. Syst. 2019, 18, 38:1–38:20. [Google Scholar] [CrossRef]
  4. Aksoy, D.; Franklin, M. R × W: A scheduling approach for large-scale on-demand data broadcast. IEEE/ACM Trans. Netw. 1999, 7, 846–860. [Google Scholar] [CrossRef]
  5. Liu, K.; Lee, V.C. Performance Analysis of data scheduling algorithms for multi-item requests in multi-channel broadcast environments. J. Commun. Syst. 2010, 23, 529–542. [Google Scholar] [CrossRef]
  6. Ye, F.; Roy, S.; Wang, H. Efficient Data Dissemination in Vehicular Ad Hoc Networks. IEEE J. Sel. Areas Commun. 2012, 30, 769–779. [Google Scholar] [CrossRef]
  7. Rehman, O.; Ould-Khaoua, M.; Bourdoucen, H. An adaptive relay nodes selection scheme for multi-hop broadcast in {VANETs}. Comput. Commun. 2016, 87, 76–90. [Google Scholar] [CrossRef]
  8. Liu, K.; Lee, V.C.S.; Ng, J.K.Y.; Chen, J.; Son, S.H. Temporal data dissemination in vehicular cyber–physical systems. IEEE Trans. Intell. Transp. Syst. 2014, 15, 2419–2431. [Google Scholar] [CrossRef]
  9. Xu, J.; Tang, X.; Lee, W.C. Time-critical on-demand data broadcast: Algorithms, analysis, and performance evaluation. IEEE Trans. Parallel Distrib. Syst. 2006, 17, 3–14. [Google Scholar]
  10. Liu, K.; Lee, V. On-demand broadcast for multiple-item requests in a multiple-channel environment. Inf. Sci. 2010, 180, 4336–4352. [Google Scholar] [CrossRef]
  11. Chen, J.; Lee, V.C.; Liu, K.; Ali, G.; Chan, E. Efficient processing of requests with network coding in on-demand data broadcast environments. Inf. Sci. 2013, 232, 27–43. [Google Scholar] [CrossRef]
  12. Ahlswede, R.; Cai, N.; Li, S.Y.; Yeung, R.W. Network information flow. IEEE Trans. Inf. Theory 2000, 46, 1204–1216. [Google Scholar] [CrossRef]
  13. Ho, T.; Medard, M.; Koetter, R.; Karger, D.R.; Effros, M.; Shi, J.; Leong, B. A Random Linear Network Coding Approach to Multicast. IEEE Trans. Inf. Theory 2006, 52, 4413–4430. [Google Scholar] [CrossRef]
  14. Hassanabadi, B.; Valaee, S. Reliable Periodic Safety Message Broadcasting in VANETs Using Network Coding. IEEE Trans. Wirel. Commun. 2014, 13, 1284–1297. [Google Scholar] [CrossRef]
  15. Qureshi, J.; Foh, C.H.; Cai, J. Online {XOR} packet coding: Efficient single-hop wireless multicasting with low decoding delay. Comput. Commun. 2014, 39, 65–77. [Google Scholar] [CrossRef]
  16. Yan, Y.; Zhang, B.; Yao, Z. Spacetime efficient network coding for wireless multi-hop networks. Comput. Commun. 2016, 73 Pt A, 144–156. [Google Scholar] [CrossRef]
  17. Zhan, C.; Lee, V.C.; Wang, J.; Xu, Y. Coding-based data broadcast scheduling in on-demand broadcast. IEEE Trans. Wirel. Commun. 2011, 10, 3774–3783. [Google Scholar] [CrossRef]
  18. Wang, Z.; Hassan, M. Blind xor: Low-Overhead Loss Recovery for Vehicular Safety Communications. IEEE Trans. Veh. Technol. 2012, 61, 35–45. [Google Scholar] [CrossRef]
  19. Chaudhry, M.A.R.; Sprintson, A. Efficient algorithms for Index Coding. In Proceedings of the IEEE INFOCOM Workshops 2008, Phoenix, AZ, USA, 13–18 April 2008; pp. 1–4. [Google Scholar] [CrossRef]
  20. Shujuan Wang, C.Y.; Yu, Z. Efficient Coding-Based Scheduling for Multi-Item Requests in Real-Time On-Demand Data Dissemination. Mob. Inf. Syst. 2016, 2016. [Google Scholar] [CrossRef]
  21. Chen, J.; Lee, V.C.S.; Liu, K.; Li, J. Efficient Cache Management for Network-Coding-Assisted Data Broadcast. IEEE Trans. Veh. Technol. 2017, 66, 3361–3375. [Google Scholar] [CrossRef]
  22. Asghari, S.M.; Ouyang, Y.; Nayyar, A.; Avestimehr, A.S. An Approximation Algorithm for Optimal Clique Cover Delivery in Coded Caching. IEEE Trans. Commun. 2019, 67, 4683–4695. [Google Scholar] [CrossRef]
  23. Ali, G.N.; Chan, E.; Li, W. Supporting real-time multiple data items query in multi-RSU vehicular ad hoc networks (VANETs). J. Syst. Softw. 2013, 86, 2127–2142. [Google Scholar] [CrossRef]
  24. Liu, K.; Ng, J.K.Y.; Lee, V.C.S.; Son, S.H.; Stojmenovic, I. Cooperative Data Scheduling in Hybrid Vehicular Ad Hoc Networks: VANET as a Software Defined Network. IEEE/ACM Trans. Netw. 2016, 24, 1759–1773. [Google Scholar] [CrossRef]
  25. Xuan, P.; Sen, S.; Gonzalez, O.; Fernandez, J.; Ramamritham, K. Broadcast on demand: Efficient and timely dissemination of data in mobile environments. In Proceedings of the 3rd IEEE Real-Time Technology and Applications Symposium (RTAS’97), Montreal, QC, Canada, 9–11 June 1997; pp. 38–48. [Google Scholar]
  26. Wong, J.; Ammar, M.H. Analysis of broadcast delivery in a videotex system. IEEE Trans. Comput. 1985, 100, 863–866. [Google Scholar] [CrossRef]
  27. Wong, J.W. Broadcast delivery. Proc. IEEE 1988, 76, 1566–1577. [Google Scholar] [CrossRef]
  28. Sharaf, M.A.; Chrysanthis, P.K. On-demand broadcast: New challenges and scheduling algorithms. In Proceedings of the 1st Hellenic Data Management Symposium (HDMS’02), Athens, Greece, 23–24 July 2002. [Google Scholar]
  29. Acharya, S.; Muthukrishnan, S. Scheduling on-demand broadcasts: New metrics and algorithms. In Proceedings of the 4th Annual ACM/IEEE International Conference on Mobile Computing and Networking (MobiCom’98), Dallas, TX, USA, 25–30 October 1998; pp. 43–54. [Google Scholar]
  30. Karp, R. Reducibility among Combinatorial Problems. In Complexity of Computer Computations; Miller, R., Thatcher, J., Bohlinger, J., Eds.; The IBM Research Symposia Series; Springer: New York, NY, USA, 1972; pp. 85–103. [Google Scholar] [CrossRef]
  31. Östergård, P.R. A fast algorithm for the maximum clique problem. Discret. Appl. Math. 2002, 120, 197–207. [Google Scholar] [CrossRef]
  32. Hu, C.L. Fair scheduling for on-demand time-critical data broadcast. In Proceedings of the IEEE International Conference on Communications (ICC’07), Glasgow, UK, 24–28 June 2007; pp. 5831–5836. [Google Scholar]
  33. Chen, C.C.; Lee, C.; Wang, S.C. On optimal scheduling for time-constrained services in multi-channel data dissemination systems. Inf. Syst. 2009, 34, 164–177. [Google Scholar] [CrossRef]
  34. Chen, J.; Lee, V.; Liu, K. On the performance of real-time multi-item request scheduling in data broadcast environments. J. Syst. Softw. 2010, 83, 1337–1345. [Google Scholar] [CrossRef]
  35. He, P.; Shen, H.; Tian, H. On-demand data broadcast with deadlines for avoiding conflicts in wireless networks. J. Syst. Softw. 2015, 103, 118–127. [Google Scholar] [CrossRef]
  36. Polatoglou, M.; Nicopolitidis, P.; Papadimitriou, G.I. On low-complexity adaptive wireless push-based data broadcasting. Int. J. Commun. Syst. 2014, 27, 194–200. [Google Scholar] [CrossRef]
  37. Lu, Z.; Wu, W.; Fu, B. Optimal Data Retrieval Scheduling in the Multichannel Wireless Broadcast Environments. IEEE Trans. Comput. 2013, 62, 2427–2439. [Google Scholar] [CrossRef]
  38. Wu, Y.; Cao, G. Stretch-optimal scheduling for on-demand data broadcasts. In Proceedings of the 10th International Conference on Computer, Communications and Networks (ICCCN’01), Scottsdale, AZ, USA, 15–17 October 2001; pp. 500–504. [Google Scholar]
  39. Lee, V.C.; Wu, X.; Ng, J.K.Y. Scheduling Real-time Requests in On-demand Data Broadcast Environments. Real-Time Syst. 2006, 34, 83–99. [Google Scholar] [CrossRef]
  40. Ploumidis, M.; Pappas, N.; Siris, V.A.; Traganitis, A. On the performance of network coding and forwarding schemes with different degrees of redundancy for wireless mesh networks. Comput. Commun. 2015, 72, 49–62. [Google Scholar] [CrossRef] [Green Version]
  41. Qu, Y.; Dong, C.; Chen, C.; Wang, H.; Tian, C.; Tang, S. DCNC: Throughput maximization via delay controlled network coding for wireless mesh networks. Wirel. Commun. Mob. Comput. 2014, 16, 137–149. [Google Scholar] [CrossRef]
  42. Chu, C.H.; Yang, D.N.; Chen, M.S. Multi-data delivery based on network coding in on-demand broadcast. In Proceedings of the Ninth International Conference on Mobile Data Management, Beijing, China, 27–30 April 2008; pp. 181–188. [Google Scholar]
  43. Gao, Z.; Xiang, W.; Tan, G.; Yao, N.; Li, P. An Enhanced XOR-based Scheme for Wireless Packet Retransmission Problem. Int. J. Commun. Syst. 2014, 27, 3657–3675. [Google Scholar] [CrossRef] [Green Version]
  44. Chen, J.; Lee, V.C.S.; Zhan, C. Efficient Processing of Real-Time Multi-item Requests with Network Coding in On-demand Broadcast Environments. In Proceedings of the 2009 15th IEEE International Conference on Embedded and Real-Time Computing Systems and Applications, Beijing, China, 24–26 August 2009; pp. 119–128; pp. 119–128. [Google Scholar] [CrossRef]
  45. Ali, G.G.M.N.; Noor-A-Rahim, M.; Chong, P.H.J.; Guan, Y.L. Analysis and Improvement of Reliability Through Coding for Safety Message Broadcasting in Urban Vehicular Networks. IEEE Trans. Veh. Technol. 2018, 67, 6774–6787. [Google Scholar] [CrossRef]
  46. Sorour, S.; Valaee, S. On minimizing broadcast completion delay for instantly decodable network coding. In Proceedings of the IEEE International Conference on Communications (ICC’10), Cape Town, South Africa, 23–27 May 2010; pp. 1–5. [Google Scholar]
  47. Schwetman, H. CSIM19: A powerful tool for building system models. In Proceedings of the 33nd Conference on Winter Simulation (WSC’01), Arlington, VA, USA, 9–12 December 2001; pp. 250–255. [Google Scholar]
  48. Zipf, G. Human Behavior and the Principle of Least Effort: An Introduction to Human Ecology; Addison-Wesley Press: Cambridge, MA, USA, 1949. [Google Scholar]
  49. Xu, J.; Hu, Q.; Lee, W.C.; Lee, D.L. Performance evaluation of an optimal cache replacement policy for wireless data dissemination. IEEE Trans. Knowl. Data Eng. 2004, 16, 125–139. [Google Scholar]
  50. Ali, G.N.; Chong, P.H.J.; Samantha, S.K.; Chan, E. Efficient data dissemination in cooperative multi-RSU Vehicular Ad Hoc Networks (VANETs). J. Syst. Softw. 2016, 117, 508–527. [Google Scholar] [CrossRef]
  51. Ali, G.G.M.N.; Noor-A-Rahim, M.; Rahman, M.A.; Samantha, S.K.; Chong, P.H.J.; Guan, Y.L. Efficient Real-Time Coding-Assisted Heterogeneous Data Access in Vehicular Networks. IEEE Internet Things J. 2018, 5, 3499–3512. [Google Scholar] [CrossRef]
Figure 1. System architecture.
Figure 1. System architecture.
Futureinternet 11 00248 g001
Figure 2. Impact of workload on the real-time model.
Figure 2. Impact of workload on the real-time model.
Futureinternet 11 00248 g002
Figure 3. Impact of deadline range on the real-time model.
Figure 3. Impact of deadline range on the real-time model.
Futureinternet 11 00248 g003
Figure 4. Impact of skewness parameter ( θ ) on the non-real-time model.
Figure 4. Impact of skewness parameter ( θ ) on the non-real-time model.
Futureinternet 11 00248 g004
Figure 5. Impact of workload on the non-real-time model.
Figure 5. Impact of workload on the non-real-time model.
Futureinternet 11 00248 g005
Figure 6. Impact of workload on the stretch optimal model.
Figure 6. Impact of workload on the stretch optimal model.
Futureinternet 11 00248 g006
Figure 7. Impact of data item size on the stretch optimal model.
Figure 7. Impact of data item size on the stretch optimal model.
Futureinternet 11 00248 g007
Table 1. Summary of notations.
Table 1. Summary of notations.
NotationDescriptionNotes
c i A client c i C ; C = { c 1 , c 2 , , c n }
d j A data item d j D ; D = { d 1 , d 2 , , d m }
R ( c i ) Requested data items by c i
C H ( c i ) Cached data items by c i R ( c i ) C H ( c i ) =
G ( V , E ) A graph
v i j A vertex representing client c i requests data item d j v i j V ( G ) , 1 i n , 1 j m
N ( d j ) popularity of d j
d j ( i ) Client c i is pending for d j
t i Waiting time of c i
t ( d j ) Summed waiting time of clients pending for d j
T i Slack time of c i
l i Size of the requested data item of c i
δ A clique
| δ | Number of vertices in δ
C δ Set of clients covered in δ C δ = { c 1 , c 2 , , c | δ | }
β ( δ ) Encoded packet for the clique δ β ( δ ) = { d 1 d 2 d K }
KNumber of different data items encoded in β ( δ ) K | δ |
δ m a x Maximum clique
δ m a x v p s Maximal clique covering vertex v p s | δ m a x v p s | | δ m a x |
BChannel broadcast bandwidth
Table 2. Coding-based on-demand broadcast.
Table 2. Coding-based on-demand broadcast.
TypeAlgorithmRemarks
Real-timeEDFFind the largest clique δ with T m i n
SINFind the largest clique δ with the maximum | δ | T m i n value
Non-real-timeFCFSFind the largest clique δ with t m a x
MRFFind the largest clique δ
LWFFind the largest clique δ with the maximum summed waiting time
R × W Find the largest clique δ with the maximum | δ | × t m a x value
Stretch optimalLTSFFind the largest clique δ with the maximum v i δ t i m a x v i δ { l i B } value
STOBSFind the largest clique δ with the maximum | δ | m a x v i δ t i m a x v i δ l i value
Table 3. Simulation parameters.
Table 3. Simulation parameters.
ParameterDefaultRangeDescription
C l i e n t N u m 400100∼600Number of clients
T H I N K T I M E 0.01Request generation interval
m1000Size of the database
S I Z E M I N , S I Z E M A X 1, 30—, 10∼60Min. and Max. data item size
C a c h e S i z e 6030∼180Client cache size
θ 0.40.0∼1.0Zipf distribution parameter
μ , μ + 120, 20080∼160, 160∼240Min. and Max. laxity

Share and Cite

MDPI and ACS Style

Ali, G.G.M.N.; Lee, V.C.S.; Meng, Y.; Chong, P.H.J.; Chen, J. Performance Analysis of On-Demand Scheduling with and without Network Coding in Wireless Broadcast. Future Internet 2019, 11, 248. https://doi.org/10.3390/fi11120248

AMA Style

Ali GGMN, Lee VCS, Meng Y, Chong PHJ, Chen J. Performance Analysis of On-Demand Scheduling with and without Network Coding in Wireless Broadcast. Future Internet. 2019; 11(12):248. https://doi.org/10.3390/fi11120248

Chicago/Turabian Style

Ali, G. G. Md. Nawaz, Victor C. S. Lee, Yuxuan Meng, Peter H. J. Chong, and Jun Chen. 2019. "Performance Analysis of On-Demand Scheduling with and without Network Coding in Wireless Broadcast" Future Internet 11, no. 12: 248. https://doi.org/10.3390/fi11120248

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop