Next Article in Journal
Using a Standing-Tree Acoustic Tool to Identify Forest Stands for the Production of Mechanically-Graded Lumber
Previous Article in Journal
Noninvasive Vascular Displacement Estimation for Relative Elastic Modulus Reconstruction in Transversal Imaging Planes
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

In-Network Processing of Joins in Wireless Sensor Networks

School of Computer Science and Engineering, Chung-Ang University, Seoul 156-756, Korea
Sensors 2013, 13(3), 3358-3393; https://doi.org/10.3390/s130303358
Submission received: 7 December 2012 / Revised: 26 February 2013 / Accepted: 6 March 2013 / Published: 11 March 2013
(This article belongs to the Section Sensor Networks)

Abstract

: The join or correlated filtering of sensor readings is one of the fundamental query operations in wireless sensor networks (WSNs). Although the join in centralized or distributed databases is a well-researched problem, join processing in WSNs has quite different characteristics and is much more difficult to perform due to the lack of statistics on sensor readings and the resource constraints of sensor nodes. Since data transmission is orders of magnitude more costly than processing at a sensor node, in-network processing of joins is essential. In this paper, the state-of-the-art techniques for join implementation in WSNs are surveyed. The requirements and challenges, join types, and components of join implementation are described. The open issues for further research are identified.

1. Introduction

In wireless sensor networks (WSNs), sensor readings can be modeled as tuples of a logical relation which is physically distributed across the sensor nodes, and the retrieval of sensor readings can be expressed in relational queries. A join query that matches the tuples from two or more relations when they satisfy the given predicate conditions is one of major operations in relational databases. So is the join in WSN applications, which include vehicle surveillance and tracking, animal habitat monitoring, environment monitoring, home and commercial building automation, precision agriculture, and water resource management, to name just a few.

An example scenario of a join query in a river ecosystem monitoring application for water resource management, for instance, is as follows: the water quality management department is concerned about the pollution of a river, monitoring the pH values measured throughout the river. After detecting that the pH value in a region of the river has decreased below a certain threshold, which means that the acidity of the water is higher and the department needs to be alerted, the department is interested in checking whether such a phenomenon is now locally confined to the region or is possibly about to occur in the neighboring regions as well. The department would issue a query, “retrieve pH value and location for the neighboring regions of the river where the pH value decrease is detected.” This query can be declaratively expressed as a join, and given in SQL-like syntax as:

SELECT S 1 . p H , S 1 . location , S 2 . p H , S 2 . location FROM Sensors AS S 1 , Sensors AS S 2 WHERE S 1 . p H < τ AND distance ( S 1 . location , S 2 . location ) < δ
where Sensors in the FROM clause is the logical relation that comprises the river data tuples sampled by the sensors deployed along the river, and the condition with the function distance() in the WHERE clause is the join predicate. More examples of joins in WSN applications suggested in the literature are given in Figure 1.

In WSNs, data transmission is orders of magnitude more costly than processing on a sensor node [1]. Given a join query, therefore, in-network processing where join operators are pushed into the network such that the amount of data transmission could be considerably reduced is essential. Although the processing of joins in the conventional centralized or distributed databases is a well-known problem, that in WSNs has quite different requirements and challenges. First, the lack of statistics on sensor readings makes query optimization very difficult. Second, a naïve implementation could expend much energy in transmitting data, severely shortening the network lifetime. Third, limited resources (computing power and memory) in sensor nodes make ordinary algorithmic approaches infeasible. Fourth, node or link failures could greatly undermine the correctness of the join result.

In this paper, we present a survey of the state-of-the-art techniques of in-network join processing in WSNs. This topic is a young one, receiving much attention in recent years. We think that a meaningful amount of work has been accumulated in the literature, and that now it is timely to collate the various techniques for classification and comparison. To the best of our knowledge, our survey is the first one on this topic.

The rest of this paper is organized as follows: in Section 2, we present the background materials for this paper: sensor networks, their modeling as a relational database, declarative query expression, external join, in-network query processing, join types and implementations in the conventional databases, and sliding window join. In Section 3, we give an overview of join processing in WSNs: requirements and challenges, join types, and components of join implementation. In Section 4, we describe the state-of-the-art techniques of in-network join processing proposed in the literature. In Section 5, we discuss the open issues with future research directions. Finally, we conclude in Section 6.

2. Preliminaries

In this section, we present the background materials on a sensor network, its modeling as a relational database, declarative query expression, external join, in-network join processing, join types and implementations in the conventional databases, and sliding window join.

2.1. Sensor Network and Database

We consider a sensor network that consists of a set of sensor nodes. Each node is a battery-powered small computer with limited processing capability and memory capacity. It is equipped with one or more sensing devices and a radio for wireless communication. A node can directly communicate with other nodes within its wireless range. For multi-hop communication with other nodes beyond the wireless range of a node, the nodes form a network. The power in a node is also a limited resource. The power consumption in a node is dominated by data transmission. It is orders of magnitude more costly than processing on a node [1]. Power conservation (or energy-efficiency) is one of the most important requirements when a sensor network performs a task. The longevity of a sensor network depends on it. A sensor network is often ad-hoc and unstable, and each node has limited knowledge of other nodes and how they are connected. Finally, we assume that a sensor network is connected to the base station which is not resource constrained.

In WSNs, the data acquired by a sensor node at an instant in time is the readings of one or more sensors on the node (e.g., temperature, humidity, etc.) These readings can be modeled as a relational tuple that has one attribute per sensor. Each attribute is called a sensor attribute and the resulting tuple is called a sensor tuple. Besides sensor attributes, a sensor tuple is often modeled as having auxiliary attributes such as node ID, geographic coordinates of the node, and the timestamp of the sensor readings. The stream of sensor tuples in WSNs can be modeled as a relation. It is called a sensor relation. Logically, it has at most one sensor tuple per node per instant in time. Physically, it is horizontally partitioned across the sensor nodes in WSNs. A composite of the node ID and timestamp attributes could be designated as a primary key of a sensor relation. The sensor nodes could be heterogeneous, having different sets of sensing devices. In a sensor tuple produced in a node without a particular sensing device, the corresponding sensor attribute is set to NULL. Depending on the degree of heterogeneity, different groups of sensor nodes could be modeled as separate sensor relations, one per group. Views of a sensor relation can also be defined as in relational databases.

A query joining sensor readings can be declaratively expressed against the sensor relations in SQL-like syntax as shown in the previous section and in Figure 1. The sensor relations and/or its views are listed in the FROM clause as join operand relations. For example, in the query expressions in Figure 1(b,d,e), the sensor relations are directly queried. In the query expressions in Figure 1(a,c,f), views of the sensor relation are queried. The join predicates of interest are specified in the WHERE clause often with selection predicates. Each predicate is either on the sensor attributes or on the auxiliary attributes. In the query expression in Figure 1(d), for example, there are five predicate conditions in the WHERE clause: The first one (B1.light < δ) is a selection predicate on a sensor attribute light. The second one (B2.num > B1.num) is a join predicate on a sensor attribute num (i.e., number). The remaining three (B1.loc = B2.loc; B1.time < B2.time; B2.time < B1.time + h) are join predicates on auxiliary attributes loc (i.e., geographic location of a sensor node) and time (i.e., timestamp of a sensor tuple). The predicates on sensor attributes are the ordinary ones used in the conventional database queries. The predicates on auxiliary attributes add spatial as well as temporal characteristics to the join queries in WSNs.

Since a join is expressed declaratively, its implementation strategy needs to be devised. A straightforward implementation of a join query in WSNs is to perform the external join: Every sensor node that participates in the query transmits all the sensor tuples satisfying the selection predicates to the base station where the join is computed. Since the external join transmits non-joinable tuples as well, it would not be energy-efficient when the join is highly selective, i.e., join selectivity is very low (for a join RS, join selectivity (or join selectivity factor) is defined to be | R S | | R | | S | [9].

It would incur much more communication than necessary, depleting the battery of sensor nodes severely. In-network join processing could be a more efficient implementation. In in-network query processing, query operators are pushed into the network. Their executions are distributed across the sensor nodes of the network, consuming the sensor tuples and producing intermediate query results. The sensor tuples are filtered, aggregated, or cross-referenced inside the network instead of being transmitted to the base station. With in-network join processing, the amount of data transmission could be considerably reduced compared to the external join.

2.2. Join Types and Implementations in Conventional Databases

In a relational database, join queries can be expressed on various types of join predicates. The most widely used join type is a theta-join, RAθB S, in which the join predicate is R. A θ S. B where θ is one of the following comparison operators: <, >, ≤, ≥, =, and ≠. When θ is =, it is called an equi-join.

The three major implementations for these join types in the conventional databases are nested-loop join, hash join, and sort-merge join [10]. In this section, we briefly review each implementation. They are adapted to in-network processing of joins in WSNs [25,8,11,12] as described in Section 4.

Nested-Loop Join

Given a theta-join RAθB S, it matches R and S tuples that satisfy the join predicate out of the Cartesian product of R and S through nested loops. In the outer loop, the tuples of R are scanned. For each tuple of R, the tuples of S are scanned in the inner loop. R is called an outer relation and S an inner relation. If there is an index on S.A, the tuple matching in the inner loop can use it. Such an implementation is called an indexed nested-loop join.

Hash Join

Given an equi-join RA=B S, it first scans R (S) and partitions it to k buckets R1, …, Rk (S1,…, Sk) using a hash function on the joining attribute A (B). Then, it carries out the matching of R and S tuples that satisfy the join predicate only between bucket pairs Ri and Si, i = 1, …, k.

Sort-Merge Join

Given an equi-join query RA=B S, it first sorts the tuples of R (S) on the joining attribute A (B). Then, it carries out the matching of R and S tuples that satisfy the join predicate by scanning R and S in one pass each.

2.3. Semijoin in Distributed Databases

In distributed databases, a join RA=B S could be a distributed one: R and S reside at different sites, and the join result is to be consumed at a third site (i.e., result site). There could be several implementations of this join, each of which would incur different amounts of data transmission. In a naïve one, R and S are respectively sent to the result site, where the final join is conducted. The external join in WSNs corresponds to this naïve implementation. In another one, semijoins [13] are executed first to filter out non-joinable tuples of R and S. Then, only those tuples of R and S that have survived (i.e., joinable) are sent to the result site for the final join.

Given a distributed join RA=A S, two semijoins are possible: RA=A S and RA=A S. The semijoin RA=A S is executed in three steps: (1) At the site of R, the set of values of the joining attribute A of R (i.e., R[A]) is retrieved; (2) R[A] is sent to the site of S; (3) At the site of S, R[A] is joined with S to produce RA=A S.

RA=A S is a subset of S. It contains only those tuples of S that are joinable with R on A. A semijoin could be employed in processing a distributed join if it is cost-effective in communication [13,14]. For RA=A S, its cost is defined to be the cost of sending R[A] while its benefit is defined to be the difference between the cost of sending S and that of sending RA=A S. A semijoin is said to be cost-effective if the benefit exceeds the cost. To figure out if a semijoin is cost-effective, the semijoin selectivity (or semijoin selectivity factor) of a relation on the joining attribute needs to be estimated. Let fRA denote the semijoin selectivity of relation R on joining attribute A. fRA is the probability that a value in A appears in R assuming that the values of A are uniformly and independently distributed on the join operand relations [14]. It is estimated as ||R[A]|/|DA|, where DA is the domain of A [15]. Given a join RA=A S, fRA indicates what fraction of S would join with R on A (i.e.,| RA=A S | = fRA · |S|).

Given a distributed join query q = RA=A SB=BT, a semijoin, RA=A S, produces S’ It is obtained after eliminating all the tuples of S not joinable with R on A. This semijoin is said to reduce S to S’. Since S’ might contain those tuples not joinable with T on B, S’is a partial reduction of S. A subsequent semijoin, TB =BS’ produces S’. Since it contains only those tuples necessary for the result of q without any superfluous non-joinable tuples, S’ is the full reduction of S.

2.4. Sliding Window Join in Data Stream Management Systems

A full evaluation of a join between two unbounded streams of tuples is not practical because unbounded memory is required. In data stream management systems, a join of two streams R and S are often modeled as a sliding window join [1618]. In a sliding window join of R and S, a newly arriving tuple of R could produce join results only with the tuples of S that belong to a window of S. The window could be either time-based or tuple-based [19]. A time-based sliding window join of R and S works as follows. For a tuple r of R arriving at time instant t, let wS (t, hS) denote the window of S for r where hS is the window size. wS(t, hS) is defined to contain those tuples of S that have arrived in the time interval [t−hS, t]. A sliding window of R is defined similarly, and a newly arriving tuple of S is joined only with the sliding window of R. In a tuple-based sliding window join, the window of R (S) is defined to contain the last n tuples of R (S), where n is a positive integer associated with the window.

3. Overview of Join Processing in WSNs

The problem of join processing in WSNs is quite different from that in the conventional centralized or distributed databases. In this section, we address the requirements and challenges of in-network join processing in WSNs, present join types characterized by spatial as well as temporal predicates, and describe components of join implementation.

3.1. Requirements and Challenges

Due to the constraints of WSNs stated in Section 2.1, join implementation in WSNs is very complicated, whose optimization is very difficult. Major requirements and the resulting challenges are described below.

Stream processing

In the conventional databases, join operand relations are stored ones. Access paths to and the statistics on them including the statistics on the joining attributes are available. In WSNs, join operand relations are streams of sensor readings. The challenges are to execute a stream join using limited resources of sensor nodes, and to collect the statistics on the sensor readings for cost-based query optimization.

Distributed processing

Because of the memory constraints in the sensor nodes, it would not be possible to collect all the tuples at one designated node in the network for join processing. Thus, distributed processing is required. As stated in Section 2.1, in WSNs, each node has limited knowledge of other nodes and the network connectivity. Therefore, the problem of generating an efficient distributed strategy is a difficult challenge.

Protocol-oriented implementation

Since the sensor nodes in WSNs are only with constrained resources, a join implementation which is free from any physical error that might be caused due to the resource constraints while guaranteeing algorithmic correctness of the join result is required. In transmitting data among the sensor nodes, for example, an overflow at a receiving node due to its memory constraints should be avoided. A carefully designed protocol by which data transmission as well as query operations are synchronized is required. Such a protocol-oriented implementation under the resource constraints is a crucial challenge.

Fault-tolerance

As stated in Section 2.1, WSNs are often unstable. Node or link failures can occur or several reasons. Even if just a small number of joinable tuples are missing because of a failure, it could have a great effect on the join result. Dealing with failures is a challenge because fault tolerance with duplicate transmissions, retransmissions, and exchanges of control information that can help detect failures would not only increase the complexity of join processing but requires more communication.

3.2. Join Types

A join query in WSNs is often characterized by its selection/join predicates on the auxiliary attributes. The auxiliary attributes such as the location of a sensor node and the timestamp of the sensor readings represent the spatio-temporal dimension of the sensor readings. The spatio-temporal predicates on these attributes are important factors of a join query that affect its implementation.

Spatial predicates

For a join query RS, let ℝ ( Sensors 13 03358i1) denote the set of sensor nodes which produce the tuple stream of R (S). Table 1 summarizes notations in the paper. A spatial predicate in a join query is the one on the attribute location (i.e., geographic coordinates) of the sensor nodes. It restricts the sensor nodes that are to participate in the query. Spatial predicates can be specified as selection predicates or as join predicates. An example of the former is the predicate “S1.location IN Region_Specification(R1)” in the WHERE clause of the query in Figure 1(b). An example of the latter is the predicate “distance(S1.location, S2.location) < δ” in the WHERE clause of the query in Figure 1(e).

For a join query RS, only selection spatial predicates on R (and/or on S) can be specified. Queries in Figure 1(a–c) are of such type. Since there is no join spatial predicate, ℝ and Sensors 13 03358i1 can be easily identified assuming that each node knows its location. Since ℝ ( Sensors 13 03358i1) covers a fixed region of the network denoted as R (S), such type of join is an inter-region join. An instance of an inter-region join is shown in Figure 2. In an inter-region join RS, it is typical that regions R and S do not overlap with each other as shown in Figure 2. An important property of an inter-region join is that a node that has received an inter-region join query can determine if it is to participate in the query without communicating with other nodes. The processing of an inter-region join has received so far the most attention in the literature [25,8,11,12,20,21], and several techniques that are suitable for such a join type have been proposed.

If a join query specifies join spatial predicates, they not just restrict the sensor nodes that are to participate in the query but also restrict pairing among the sensor nodes for the join. Queries in Figure 1(d,e) are of such type. In general, a node that has received this type of query cannot determine if it is to participate in the query without communicating with other nodes. This could make in-network join implementation more difficult compared to an inter-region join. This type of join query was investigated in [6,7,2224].

Temporal predicates

Since a sensor relation is an unbounded stream of sensor tuples, a full evaluation of a join between two sensor relations is neither possible nor practical. For a sensor relation R, let wR denote a time-based window [19] of R (in this section, we mention only the time-based window because we assume that temporal predicates are specified on the timestamp attribute. The description of the join types associated with temporal predicates in this section can be extended to incorporate the tuple-based window as well. wR is a subset of R restricted by a time interval. A join query RS in WSNs is required to specify wR and wS so that each tuple of R (S) may be joined with wS (wR) instead of with S (R). Selection predicates or join predicates on the timestamp of the sensor readings can specify such a window as described below.

Three types of windows can be specified: fixed, sliding, and jumping. The time interval of a fixed window is specified by selection predicates on timestamps. For a join RS to be executed as a one-shot query, a pair of fixed windows w̿R and w̿S are specified such that the join result is w̿R ⨝ w̿S. The time interval [t1, t2] associated with w̿R (or w̿S) is specified such that t1t2t, where t is the point of query submission in time. The queries in Figure 1(a,b) is for such a one-shot join [24]. Note that w̿R and w̿S are static (i.e., stored) rather than streaming in such a one-shot join.

Fixed windows can be used for a continuous join as well if their time intervals are the future ones. The example query in Figure 1(c) is for such a continuous join [5], where each window contains the tuples that are to be produced in the next 30 minutes. Thus, the windows in such a continuous join are streaming ones, and the window size (i.e., 30 minutes) is the lifetime of the query.

The time interval of a sliding window is specified by join predicates on timestamps. For a join RS to be executed as a continuous query, a pair of sliding windows w̃R and w̃S are specified such that the join is modeled as a time-based sliding window join [19]. This model of continuous join in WSNs has received much attention in the literature [6,8,11,20,22,23].

A special case of a sliding window join is when one of w̃R and w̃S is not specified. For a continuous join RS where a tuple of R (e.g., representing an event er) is joined only with the future tuples of S (e.g., representing future events es related to er) but not with the past tuples of S, only one sliding window w̃R needs to be specified. When a tuple of S is produced, it is joined with w̃R. However, it is not kept because no window of S is maintained. When a tuple of R is produced, it is not joined with S at the moment but kept in w̃R. The example query in Figure 1(d) is for such a continuous join [6].

For a join RS modeled as a time-based sliding window join, the window w̃R (w̃S) is already a stored subset of R (S) when it is scanned for a join with a tuple of S (R) just produced. However, we regard w̃R and w̃S as streaming because they are sliding continuously.

In the context of acquisitional query processing in TinyDB [25], a one-shot join query can be expressed without temporal predicates. In the query in Figure 1(e), for example, no temporal predicate is specified in the WHERE clause. It is a one-shot join query RS as declared by the ONCE clause [26]. Its result is RcSc, where Rc and Sc respectively contain only the current measurements (i.e., the most recently sampled tuples of R and S). In other words, Rc and Sc have one tuple per node in ℝ and Sensors 13 03358i1, respectively. Therefore, Rc and Sc are static. This type of query was considered in [7].

A continuous join query can also be expressed without temporal predicates in TinyDB. Let us consider the following query:

SELECT S 1 . location , S 2 . location , S 1 . precipitation , S 2 . precipitation FROM Sensors S 1 , Sensors S 2 WHERE S 1 . precipitation < α AND S 2 . precipitation > α AND distances ( S 1 . location , S 2 . location ) < δ SAMPLE PERIOD 10 s

This query is the same as the one in Figure 1(e) except that the ONCE clause is replaced by the SAMPLE PERIOD clause [26]. This clause specifies a jumping window, defining the period of time between the start of each sample period such that tuples are produced at well-defined intervals. In the above query, the sample period is set to 10 seconds and the join is executed once every 10 seconds. In such a periodic continuous query, the join in each execution is treated as a one-shot query as if the ONCE clause were specified. Periodic continuous join queries including this type were investigated in [11,21,24].

3.3. Components of Join Implementation

An implementation of a join in WSNs consists of several components. Some of the major ones that are common to most of the techniques surveyed in this paper are described below.

Routing Protocol

Throughout join processing from query dissemination to the delivery of the final join result, a routing protocol is required. Among others, the tuples and/or joining attribute values need to be shipped and/or replaced inside the network with a routing protocol to execute join operators. For this purpose, the standard tree routing protocol presented in [25] is widely employed. Figure 3(a) shows a set of sensor nodes in a region, R, of the sensor network and Figure 3(b) an example of a routing tree constructed for them with the node at the center as the root. When all the nodes of the sensor network participates in the query, a routing tree covering all the sensor nodes is constructed with the base station as the root (Figure 3(c)). For an inter-region join RS, a routing tree per region could be constructed. Figure 3(d) shows the two routing trees for regions R and S. The location routing protocol such as GPSR [27] is also widely employed when routing data to the sensor node nearest to given geographic coordinates. It is usually used in combination with geographic hashing [28].

Query dissemination

The query sink where a join query is submitted is either the base station or a node inside the network. The query message is supposed to be delivered to every node of the network. For an inter-region join RS, however, the query message can be routed to the center coordinates of region R (S) using a location routing protocol like GPSR. The query is received at the sensor node cR (cS) nearest to the center coordinates of region R (S). In region R (S), a routing tree whose root is cR (cS) is constructed (Figure 3(d)) using the standard method of [25] while the query is disseminated in the region.

Join initiation

After a node receives a join query, it might need to participate in the process of join initiation. For an inter-region join, first the relevant information could be gathered through the routing tree of each region, and then collected at a sensor node cT where a join processing strategy is dynamically generated. cT could be a midpoint node between the two roots [5,12] or a node in the designated region where the join is to be conducted [3,4]. The strategy is notified back to the two roots, and this completes join initiation. Figure 3(d) shows the node cT and the two routing trees for regions R and S. The selection of the join node where the join is to be conducted for an inter-region join is also a function of join initiation. If the memory space of one node is not sufficient for the join, a set of nodes are selected. They form a join region. The location of a join region could be computed in the query sink [3,4,8,11].

Join initiation for other types of join queries was investigated in [22,23]. In the technique called Pair-wise Join that will be described in Section 4.2, multiple routing trees are employed for finding out the optimal path between a pair of nodes that participate in the join and the optimal join node on it.

Filtering

As described in Section 2.3, in the conventional distributed databases, the semijoin and its variants are employed to filter out non-joinable tuples before the final join is conducted. They reduce the amount of data to be transmitted [9,14]. The same principle could be exploited for joins in WSNs. Such techniques conduct in-network filtering of non-joinable attribute values and/or of non-joinable tuples using semijoins or its variants [2,47,12,21]. An alternative approach is a stochastic one using and maintaining a join filter in every sensor node [24]. This technique called Continuous Join Filtering (CJF) is described in Section 4.3.

Given a 2-way join RS in WSNs, the techniques proposed in the literature fall into the following three categories based on the reduction of the join operand relations:

  • Full reduction of both operand relations [2,4,21]

  • Full reduction of one operand relation [6]

  • Partial reduction of both operand relations [5,7,12,24]

Involvement of base station

In all the techniques surveyed, after non-joinable tuples are filtered out if such a step exists, those tuples that have survived are sent either to the base station or to the query sink inside the network or to the designated join region of the network for the final join. Excluding this final join phase, all the techniques except those of [6,7,24] conduct in-network processing of join without any form of involvement of the base station. In the techniques of [6,7,24], the base station is not just involved but plays a coordinating and core role.

Adapted join implementation

Most of the proposed techniques can be regarded as having some components that are variations or extensions of the join or semijoin implementations in the conventional centralized/distributed databases. They are adapted to the WSN environments. The techniques in [3,4,8,11] adapt nested-loop join or indexed nested-loop join. Those of [2,5,8] adapt hash join, partitioning relations into buckets which are replaced inside the network. Even the sort-merge join is logically adapted in the techniques of [5,12] though no physical sorting is carried out in the network. The techniques of [2,47,12,21] conduct in-network filtering of non-joinable tuples with the semijoin or its variations adapted to WSNs.

Cost-based optimization

Assuming that the statistics on the sensor readings are given a priori or collected for a long-running continuous join, cost-based join optimization is carried out. The list includes:

  • computation of the optimal join region for an inter-region join [4,11,20]

  • selection of the optimal inner/outer relation in an adapted nested-loop join implementation [3]

  • selection of the optimal join path in the network and the optimal join node on the path for a pair of nodes that participate in a join [22,23]

  • adaptive re-optimization for the join path and the join node for a pair of nodes that participate in a join [22]

  • adaptive re-optimization for multiple pairs of nodes that participate in a join [22]

  • selection of the optimal in-network semijoin strategy for a routing tree based inter-region join [21]

  • maintenance of the optimal join filters [24]

All of the aforementioned cost-based optimizations except that in [3] are suitable for a long-running continuous join query. One reason is that they require the statistics on the sensor readings for cost analysis and their meaningful values could not be collected soon. Another reason is that the cost incurred for such an optimization might be so high that it needs to be amortized during the lifetime of the query.

Collection of statistics

To conduct cost-based optimizations, the statistics on sensor relations and join result are required. They include the size of join operand relations, the size of join result (or join selectivity), semijoin selectivities, and selectivity of each selection predicate on sensor attributes, and so on. The collection of the statistics is a part of join implementation. In [11], for a periodic continuous join, the initial execution is assumed to be carried out at the query sink to sample the statistics. In [21], the external join is employed in the learning phases to collect the statistics. In [20,22,23], the statistics are assumed to be given through the executions of a long-running continuous join.

Failure handling

In the techniques employing tree routing, failures are handled by restructuring the tree [6,7,22,23]. For this, each node is supposed to maintain information on its neighbor nodes and to send a heartbeat message periodically to its neighbor nodes. The techniques employing the location routing protocol like GPSR [4,8,11] can adapt to node failures because such protocols can handle node failures, searching for new routes if a node on a route fails and guaranteeing packet delivery as long as a route exists. Data replication can also be employed to handle node failures [8].

Duration of join execution

It is a component of a join query and therefore relevant to its implementation. Although a continuous query is not necessarily a long-running one, it is often so in many applications (e.g., long-term monitoring). In implementing a long-running continuous join, the opportunities of collecting and maintaining the time-varying statistics for cost-based optimization [11,2022] and of improving the strategy for the subsequent executions [6,24] should be exploited.

4. Techniques of In-Network Join Processing

In this section, we present the state-of-the-art techniques of in-network join processing in WSNs proposed in the literature. In doing so, we elaborate upon each technique by emphasizing its characteristics and salient features. In Section 4.1, we first briefly review some of the first approaches [20,25,29,30]. In Section 4.2, we present a group of techniques which do not consider the filtering of non-joinable tuples before the final join [3,4,8,11,22,23]. In Section 4.3, we present another group of techniques. One of their main features is the filtering of non-joinable tuples using a semijoin or its variants [2,47,12,21,24]. In Section 4.4, we summarize and assess the techniques surveyed in Sections 4.2 and 4.3. In particular, Table 2 in Section 4.4 compares the surveyed techniques where each row can be referred to as a summary of the corresponding technique.

4.1. First Approaches

In [29], Yao and Gehrke compared the communication cost of the external join with that of an in-network join implementation through an experiment. They showed that the performance could differ significantly in favor of as well as against the in-network join depending on the join selectivity. In the in-network join, it was assumed that the join is conducted in a single node of the network where all the tuples are collected. The optimal location of the join node was not addressed.

In [20], Bonfils and Bonnet investigated the problem of searching for the optimal join node assuming that the join is conducted in a single node. They considered an inter-region join RS whose result is to be consumed at the query sink. The join is a long-running continuous one modeled as a window join. Assuming that the data rates (or the sizes) of R, S, and RS are known and that the communication cost between two sensor nodes is known, Ca(N), the join assignment cost of node N which is the cost of assigning the join operator to a node N is computed [20]. Initially, a node N0 is randomly selected as the join node. Afterwards, a neighbor node N1 of N0 is checked. If N1 has lower assignment cost than N0 (i.e., Ca(N1) < Ca(N0)), N1 becomes a new join node. This way, the location of the join node progressively moves towards its optimal location. Also, the optimal location of the join node would change adaptively as the data rates and selectivities change.

In [25], Madden et al. considered a join between a storage point and the sensor relation. A storage point corresponds to a materialized view in relational databases or to a materialization point in data stream systems. It buffers a stream of sensor tuples that belong to a window specified by a query. A storage point is materialized at a single node. The join is implemented by a nested-loop join where the sensor relation is the outer relation and the storage point is the inner one. The tuples of the sensor relation are transmitted through a routing tree.

In [30], Abadi et al. investigated a join between an external relation and the sensor relation. The former stores the tuples that specify the conditions of the events to detect in the network. This relation is pushed into the network for the join. There are three cases depending on the size of the external relation. First, it can be stored at a node. Second, it can be partitioned into a group of nodes that are within 1 hop distance (intermediate join). Third, it is too large to fit in the group of nodes in the second case (large join). For an intermediate join, the techniques of group formation, relation partition, and distributed join were proposed. For a large join, the techniques of non-joinable tuple filtering using a Bloom filter [31], partial join, and cache diffusion were proposed.

In these first approaches, the join was assumed to be performed in a single node [20,25,29] or one of the join operand relations was not a sensor relation [30]. In the next two subsections, the techniques of a join among the sensor readings that do not make the above assumption are presented.

4.2. Techniques without Filtering of Non-Joinable Tuples

In this section, we present a survey of the join implementations named Distribute-Broadcast Join [11], Mediated Join [3,4], Distributed Index-Join [8], Distributed Hash-Join [8], and Pair-wise Join [22,23]. They do not support non-joinable tuple filtering before the final join. They are focusing on other issues including adaptation of the conventional join implementations to WSNs, the optimal location of the join nodes, indexing, and the optimal join initiation.

Distribute-Broadcast Join

In [11], Chowdhary and Gupta considered an inter-region join RS to be executed as a continuous join query. They considered two query models. First, R and S are assumed to be static and the execution of such a static join is repeated. Second, R and S are streaming and the join is modeled as a sliding window join.

In the first model, join processing proceeds as follows: All the tuples of R are shipped and distributed uniformly in one or more nodes that are located in a designated region P of the network, which is called a join region. Then, the tuples of S are broadcast to P. At each node of P, join processing is performed and the matched tuple pairs are transmitted to the query sink. In such a protocol called Distribute-Broadcast Join (shown in Figure 4(a)), R and S respectively play the role of the inner and the outer relation of a nested-loop join.

In [11], the optimal join region with which the total communication cost for Distribute-Broadcast Join is minimized was investigated. If the join region is to be simply constructed as a circular region around a point C in the network, the optimal location of C is determined such that the weighted sum of the distances from C to region R, to region S, and to the query sink Q is minimized, where the weights are the sizes of R, S, and RS. Such an optimal point C lies within the triangle formed by region R, region S, and the query sink Q (ΔRSQ), and this particular join implementation is called Centroid Join.

If the join regions including the ones in geometrically non-trivial shape (i.e., other than just a circular region) are considered as well, the optimal join region Sensors 13 03358i2 is computed based on the sizes of R, S, and RS assuming that the network is dense enough for a node to be found at any point in the network. Sensors 13 03358i2 is formed using three points Cr, Cs, and Cq which are related respectively to region R, region S, and the query sink Q. They lie within the triangle ΔRSQ. Figure 4(b,c) show two possible shapes of Sensors 13 03358i2. In Figure 4(b), Sensors 13 03358i2 is formed of two curved paths <Cr, Cq> and <Cs, Cq>, a line segment C q Q ¯, and a circular region PO of appropriate radius around Q. In Figure 4(c), Sensors 13 03358i2 is formed of two curved paths <Cr, Cq> and <Cs, Cq>, and only a part of the line segment C q Q ¯ (without the circular region around Q of Figure 4(b)).

In the case of not sufficiently dense networks, the join region P is defined based on the paths traversed by location routing protocols GPSR and TBF. TBF (trajectory-based forwarding) protocol [32] could be used in particular to traverse the curved paths <Cr, Cq> and <Cs, Cq> of the optimal join region Sensors 13 03358i2. For reasonably dense sensor networks, the actual join region P yielded would be close to the originally intended optimal join region Sensors 13 03358i2.

In the second query model, to perform a sliding window join, both w̃R and w̃S are maintained in the join region P. A difference from the static join case is that not only R but S is shipped and distributed in P in the unit of a sliding window. w̃R (w̃S) is supposed to be partitioned among the nodes of P such that each node of P stores a partition of w̃R as well as a partition of w̃S. Each tuple t of R (S) is sent to P when it is produced. t is broadcast to every node of P such that it is joined with w̃S (w̃R). In this process, t is stored at the first encountered node of P with available memory. The join result tuples are sent to the query sink. The stream version of Distributed-Broadcast Join is a symmetric nested-loop join. The set of newly produced tuples of R (S) is the outer relation while w̃S (w̃R) plays the role of the inner relation. In computing the location of the optimal join region Sensors 13 03358i2, the size of Sensors 13 03358i2 needs to be set so that both w̃R and w̃S could be stored in Sensors 13 03358i2.

Distribute-Broadcast Join can be effective for a long-running continuous join. Reliable statistics required in computing the optimal join region such as the sizes of R, S, and RS can be collected when the query is long-running. It is especially so when data rates of R and S and join selectivity vary during the lifetime of the query. Distributed-Broadcast Join can adapt to node failures in traversing the join region because GPSR and TBF protocols can adapt to node failures, guaranteeing data delivery as long as a route exists.

Mediated Join

In [4], Coman et al. proposed Mediated Join to answer an inter-region join RS to be executed as a one-shot query submitted at the query sink Q. It collects R and S at a join region P, performs the join, and sends the result to Q. P consists of one or more nodes, and its location is other than that of region R or S. A detailed description of a distributed join algorithm in WSNs with which Mediated Join can be implemented is well presented in [3]. RS is implemented in nested-loop join. First, R is distributed in P, and then S is broadcast to P for join. R and S respectively play the role of the inner and the outer relation.

In [3], Coman and Nascimento investigated a problem of optimal selection of R or S as the outer relation (with the remaining one being the inner relation). The choice would make a difference in communication cost of executing the same join. Depending on the choice, the size of the join region would be different. The size of the join region affects the cost for distributing the inner relation as well as the cost for broadcasting the outer relation. In [3], the cost formula that estimates the total communication cost E in processing RS given the sizes of Ri (inner relation) and Ro (outer relation) is derived. Using this formula, it was shown that the total cost would vary considerably depending on which of R or S is selected as the outer relation. With E(Ri = R) denoting the total cost where R is the inner relation, and ǁRǁ the size of R, it was shown that the ratio E(Ri = S)/E(Ri = R) non-monotonically varies from 0.6 to around 1.6 when the ratio ǁSǁ/ǁRǁ falls in the range [1,7]. If E(Ri = S)/E(Ri = R) is greater than 1, S is chosen as the outer relation. Otherwise, R is chosen as the outer relation. Once the routing tree of region R (S) is constructed, the size of R (S) can be collected at the root. Therefore, it is possible to pick a better nested-loop join strategy at the join region where the join is to be conducted.

Distributed Index-Join

In [8], Pandit and Gupta proposed an index join algorithm using a distributed B+ tree implemented in WSNs to answer a continuous join query. It executes an inter-region theta-join RPr S, where Pr is a range predicate of the form, |R.A.−S.B.| θ for a value v. The join is modeled as a sliding window join. w̃R and w̃S are indexed on their joining attributes using a distributed B+ tree. It is created across the sensor nodes of the network as follows: First, a sensor node NR to store the root node of the B+ tree is chosen, and the degree (i.e., branch factor) d of the B+ tree is determined. The proper value of d is set depending on the amount of memory available in a sensor node. Once NR and d are determined, a set SN of the sensor nodes including NR to store the B+ tree nodes are chosen. Each node in SN is assigned a value range of the joining attribute. This assignment process is conducted from NR to its descendants level by level, and the leaf nodes of the B+ tree are supposed to store the tuples of w̃R and w̃S. In a conventional B+ tree, a pointer to a child node or a sibling link of a leaf node is the memory address of the target node. In the proposed B+ tree in WSNs, those pointers are represented by the geographic coordinates of the sensor node that stores the target B+ tree node. Thus, access to the target node is carried out by a location routing protocol like GPSR.

Join processing proceeds as follows: When a tuple t of R (S) is produced, the tuples of w̃S (w̃R) that satisfy Pr with t are searched from the B+ tree index, and t is stored at the leaf node of the B+ tree where it belongs. Distributed Index-Join is a symmetric indexed nested-loop join, where the set of newly produced tuples of R (S) is the outer relation while w̃S (w̃R) plays the role of the indexed inner relation. Since the join predicate is a range one, the leaf node of the B+ tree where the smallest value satisfying the predicate resides is searched, and then, through the sibling links, the subsequent leaf nodes are traversed until the largest value satisfying the predicate is reached.

In Distributed Index-Join, node failures are handled by data replication. A B+ tree index node NB stored in a sensor node is replicated at nearby sensor nodes. In the parent node of NB, the geographic coordinates referring to NB is now supposed to refer to a set of duplicated children. When the B+ tree is searched and NB is to be accessed, one of NB's duplicates can be chosen.

Distributed Index-Join can be effective for a long-running continuous join. The cost of building and maintaining (e.g., evicting the old tuples outside the indexed sliding window) the distributed B+ tree index could be paid off for a long running join.

Distributed Hash-Join

In [8], Pandit and Gupta proposed Distributed Hash-Join to answer a continuous join query. It executes an inter-region theta-join RPr S, where Pr is a range predicate of the form, ǀR.A. − S.Bǀ θ for a value v. Distributed Hash-Join adapts the hash join to WSNs. The join is modeled as a sliding window join. It partitions w̃R and w̃S using the same hash function on the joining attributes. The join works as follows: In case θ is equality (i.e., an equi-join), it hashes a newly produced tuple t of R (S) to geographic coordinates c. t is routed to the sensor node Nc that is nearest to c using a location routing protocol like GPSR. Join tuple matching for t is done at Nc because only the partition of w̃S (w̃R) which was hashed to c and placed at Nc stores the tuples joinable with t. If the memory overflow occurs at Nc when t is to be placed there, t is stored at the neighbor nodes of Nc. Nc keeps a record on its overflow area, maintaining it up-to-date afterwards.

In case θ is inequality (i.e., a range query), a locality preserving hash function is employed. It hashes the tuples whose joining attribute values are in close proximity with each other to the sensor nodes located near to each other. Join processing for the range predicate is performed across these nodes.

In Distributed Hash-Join, node failures are handled by data replication. Suppose a node N stores the partitions of sliding windows w̃R and w̃S. The tuples in those partitions are replicated at nearby nodes. Unless not all of them including N fail, at least one active node that is closest to the hashed geographic coordinates is guaranteed to have the tuples stored in N.

Pair-wise Join

In [22,23], Mihaylov et al. considered a long-running continuous join whose expression could be as general as the following:

( σ ϕ R Λ Ψ R R ) ϕ R S Λ ψ R S ( σ ϕ S Λ ψ S S ) .
R, ΨR, ∅S, and ΨR are selection predicates, and ∅RS and ΨRS are join predicates. The join is modeled as a sliding window join. Selection predicate ∅ is only on the auxiliary attributes which are static (e.g., node ID, the coordinates of an immobile node, etc.). Selection predicate Ψ is related with at least one sensor attribute. Similarly, the join predicates ∅ and Ψ are on the static and on the sensor attributes, respectively. For example, a join which is a modified version of an example query in [22], can be given as follows:
( σ I D < 25 Λ A > 200 R ) R . x = S . y + 5 Λ R . A = S . B ( σ I D > 50 Λ B > 200 S )
where ID is the node ID, x and y represent the coordinates of a node, A and B are respectively the sensor attributes of R and S.

Because of the spatial join predicate on the static attributes x and y (i.e.,R.x = S.y +5), a node that has received this query cannot determine if it is to participate in the query without communicating with other nodes. In [23], the problem of optimal join initiation for a query q with a spatial join predicate ∅RS was investigated. Each node Ni that has received q searches the network through multicasting for its join counterpart node Nt which satisfies ∅RS with Ni. Ni is called an initiator node, and Nt is called a target node (Figure 5(a)). Note that for each initiator node, there could be multiple target nodes (Figure 5(b)). While Ni searches for its target nodes, the vector information on the current path traversed so far is maintained so that backtracking to Ni is possible. Once a target node Nt is found, Ni and Nt communicate with each other, setting up the optimal in-network strategy of joining the tuples in Ni with those in Nt. In [22], this join between two nodes Ni and Nt is called a pair-wise join (or 1:1 join). Since there could be multiple target nodes for each initiator node, there could be multiple pair-wise joins that contribute to the result of q. In [23], join initiation is carried out for each pair-wise join individually. As for multiple join pair optimization, it is carried out after individual join initiations are completed. It is described shortly.

In [23], multiple routing trees are considered to provide several alternative paths between an initiator node and a target node. Using only one routing tree, the number of hops between two nodes physically near each other may be large. This problem can be handled by employing multiple trees. They can also reduce hot spots and congestion. Since multiple routing trees are employed, a target node may hear from the initiator node through multiple paths. The two nodes choose one of these paths and one node on the chosen path as the join node. Figure 6 shows an example where two routing trees are employed. Here, a cost-based selection of the optimal join node is carried out, assuming that selectivity of each predicate Ψ is known and that the number of hops from a node to the base station is known [22].

In [22], the techniques of multiple join pair optimization were also proposed. One is network-level resource sharing. An example is a path collapse feature shown in Figure 7(a,b). For two pair-wise joins, if some part of their join paths could be shared to make one of the current join paths shorter, that path is updated. Another is a group-based optimization shown in Figure 7(c,d). For a join RS, if a complete bipartite graph is formed between the two node sets ℝ and Sensors 13 03358i1 (i.e., there are ǀℝ ǀ · ǀ Sensors 13 03358i1ǀ pair-wise joins running), the external join in which all the nodes in ℝ ∪ Sensors 13 03358i1 participate is considered as an alternative strategy. Cost analysis is carried out to check if the external join is cheaper than a group of ǀℝǀ ǀ Sensors 13 03358i1ǀ pair-wise joins.

In Pair-Wise Join, node failures are handled as follows: If a node on the join path fails after the path is established, the node of data source cannot reach the join node. Recovery is carried out by searching an alternative path. If such a recovery fails, a pair-wise join is switched to the external join. If the base station is unreachable from a node, it will wait for the routing trees to be rebuilt.

Pair-wise Join would be effective for the applications where each node that participates in the join query is expected to be paired with a small number of nodes due mainly to the spatial join predicates. It can be employed for a long-running continuous join. The statistics required in cost analysis for the optimal join initiation and in multiple join pair optimization are assumed to be collectable because the query is long-running. The optimal join initiation for a pair-wise join may be very costly, incurring high communication overhead. It could be amortized later if the query is a long-running one.

4.3. Techniques with Filtering of Non-Joinable Tuples

In this section, we present a survey of the join implementations named Synopsis Join [2], Local Semijoin [4], INJECT [21], TPSJ [6], SENS-Join [7], CJF [24], PEJA [5], and SRJA [12]. Their common feature is in-network filtering of non-joinable tuples.

Synopsis Join

In [2], Yu et al. proposed Synopsis Join to answer a one-shot join query. It executes an inter-region equi-join RA=B S. A distributed variant of the semijoin is employed to fully reduce both R and S. Let v-tuple denote a tuple of R or S whose joining attribute value is v. Then, v-tuples of R are to be joined with v-tuples of S. The join proceeds as follows:

Each joining attribute value v of the v-tuples is geographically hashed to be sent to a sensor node Nv located in a region T of the network, where the joinability of v is to be checked. The value v is sent as a part of the synopsis of a local relation at the sensor node where the corresponding v-tuple is stored. In [2], a histogram is used as an example of the synopsis, which stores <v, the count of v-tuples> pairs with other auxiliary information such as location information on the nodes storing the corresponding v-tuples. The location of region T is determined such that the transmission cost for sending the synopses to be imposed on region R would get roughly equal to that on region S. Thus, T is located between R and S but closer to the bigger region of the two. If v turns out a joinable value (that is, v is in both R[A] and S[B]), Nv notifies this to all the nodes of R and S storing the v-tuples. This notification is done with a location routing protocol like GPSR, for the location information of the v-tuples has been collected at Nv. With this notification, R and S are fully reduced.

For each joinable value v in R[A] or in S[B], the final join among the corresponding v-tuples is conducted at a designated sensor node Nvf, to which the v-tuples of regions R and S are sent. The final join result is sent to the query sink Q. The location of Nvf is included in the aforementioned notification message sent by Nv. Since Nv has collected the location information of all the v-tuples of R and S, it can designate Nvf such that the communication cost of the remaining steps can be minimized [2]. Figure 8 depicts the process of Synopsis Join, focusing on the aspect of non-joinable tuple filtering and the final join.

Local Semijoin

In [4], Coman et al. proposed the Local Semijoin to answer a one-shot join query. It executes an inter-region equi-join RA=B S. A variant of semijoin is employed to fully reduce both R and S. In region R, the values of R.A and the IDs of their corresponding tuples are collected at the root of the routing tree. The root sends them to region S. At each node N in region S, semijoin R[A] ⋊AθB SN is conducted, where SN is the subset of S stored at N. This fully reduces S. For the matched values of R[A], their corresponding tuple IDs are sent back to region R, reducing R fully as well. The two regions send those tuples that have survived to the query sink for the final join.

Local Semijoin is a direct application of the conventional semijoin to WSNs except for the backward reduction using the tuple IDs. In [4], however, it was shown that Local Semijoin always outperforms Mediated Semijoin, an alternative implementation which might seem a more general one. In Mediated Semijoin, a join region T possibly other than the two regions R and S is arranged to which R[A] and S[B] are sent along with their tuple IDs. The tuple IDs that have survived in T after R[A] ⨝AθB S[B] are returned back to regions R and S, fully reducing relations R and S. In [4], the cost formulas for Local Semijoin and Mediated Semijoin were developed assuming that the size of regions R and S is small. According to those formulas, the optimal location of T in Mediated Semijoin is shown to be that of either R or S.

In Local Semijoin, data routing is carried out by GPSR protocol. It guarantees data delivery as long as a route exists and discovers new routes automatically when a node fails. In this sense, Local Semijoin can adapt to node failures as the underlying routing protocol does.

INJECT

Min et al. [21] proposed INJECT (In-Network Join strategy using Cost based optimization in Tree routing sensor networks) to answer a continuous join query. For a theta-join RS which is to be executed periodically, INJECT performs cost-based optimization, selecting the optimal strategy for each execution. Each execution is against static relations R and S with the routing tree covering all the nodes of the network with the base station as the root. In INJECT, both semijoin results, RS and RS, are obtained inside the network. They are sent to the base station for the final join.

Beside the external join, INJECT considers various join strategies including PartitionJoin, SynopsisJoin, and fullSynopsisJoin. Before each execution of the query, INJECT estimates the communication cost of each strategy using a cost model. The optimal one is chosen and notified into the network. The cost formulas are derived using such statistics as the selectivity of a selection predicate and the semijoin selectivity. At first, these statistics are unknown. The external join is employed in the learning phases in which these statistics are collected.

The basic idea of PartitionJoin is as follows: Let us consider an equi-join RA=A S, for example. Regions R and S and their common path to the base station in the routing tree is shown in Figure 9(a). TR and TS respectively denote the subtree of region R and S. A straightforward way to obtain the semijoin result RS at node rR (the root of TS) is to collect R[A] at node rR (the root of TR), forward it to rS via cT, and to filter out non-joinable tuples of S in TS by injecting R[A] into TS as shown in Figure 9(a). PartitionJoin optimizes this process as follows: R[A] is collected at node rR. It is forwarded to rS via cT. Non-joinable tuples of S in TS are filtered out by selectively forwarding R[A] into TS. In other words, R[A] is not forwarded to every node of TS. For example, suppose that there are two subtrees of rS (Figure 9(b)) and that R[A] is forwarded to the subtree whose root is n1 (denoted as T(n1)), whereas it is not to T(n2). Then, all the tuples of S in T(n2) are supposed to be sent to rS where they are semijoined with R[A]. The reason why R[A] is not forwarded to T(n2) is that the cost of forwarding R[A] to T(n2) would be higher than the benefit of reducing the set of S tuples in T(n2). For the subtree to which R[A] is forwarded (e.g., T(n1)), such selective forwarding is recursively applied. Figure 9(c) shows the three subtrees of T(n1). R[A] is forwarded to T(m1) and T(m2), but not to T(m3). In [21], Min et al. proposed a dynamic programming algorithm that obtains the optimal selective forwarding of R[A] to TS.

SynopsisJoin and fullSynopsisJoin are the same as PartitionJoin except that a Bloom filter [31] of the joining attribute is forwarded as a synopsis instead of the values of the joining attribute. Since a Bloom filter is much smaller, the cost of the semijoin is decreased while the benefit could be increased. SynopsisJoin and fullSynopsisJoin are regarded as efficient adaptations of the conventional Bloomjoin [33] or hash-semijoin [34,35] to WSNs.

The in-network strategies of INJECT can be employed only in the case that each of the nodes rR, cT, rS in Figure 9(a) is equipped with the memory whose capacity is sufficient enough to buffer the data it is supposed to receive and hold. For example, with SynopsisJoin, rS should be able to store R[A] as well as RS.

Two-Phase Self-Join (TPSJ)

In [6], Yang et al. proposed TPSJ to answer a continuous join query. It executes a theta-join query q of the form:

( σ P R ) A θ B Λ T ( h ) R
where P is a selection predicate on the sensor relation, and T(h) is a temporal predicate to specify a time-based sliding window [19] where h is the window size. The semantics of q is defined as follows: Let R1 = σPR. R1 is a set of tuples produced at the same time instance, say, at t throughout the sensor network. Then,
q = R 1 A θ B Λ T 2 ( t , h ) R ,
where the temporal predicate T2(t,h) restricts R to those tuples produced in the time interval [t, t+h]. The join predicate AθB is checked between the tuples of R1 and those of R satisfying T2(t,h).

The join processing proceeds in two phases after q is rewritten at the base station by decomposing q into two subqueries q1 and q2, where q1 = σPR and q2 = R1AθB Λ T2(t,h)R:

  • Phase 1. q1 is injected into the network, R1 is obtained and sent to the base station. Note that R1 received at the base station satisfies selection predicate P but has not been checked for join predicate AθB.

  • Phase 2. The base station broadcasts q2 and R1 to the network. At each node N, the semijoin R1AθBRN is carried out, where RN is the subset of R produced at N in the time interval [t, t+h]. This process fully reduces the sliding window of R (to be exact, σT2(t,h) R) to R2. R2 is sent to the base station where R1AθB R2 is conducted to obtain the final join result.

TPSJ is devised to detect events in monitoring applications. With a selection predicate, the candidate sensor readings (i.e., R1) that represent the event of interest are collected first. Then, R1 triggers the checking of the subsequent readings to see if they are correlated with R1. TPSJ would be effective when the selection predicate P is highly selective, because all the tuples of R1 are sent to the base station in the first phase.

In TPSJ, node failures are handled by restructuring the routing tree. When a node fails to hear from its parent for some period of time, it chooses a new parent. For proper restructuring, each node maintains information on its neighbor nodes such as the number of messages that it has received from a neighbor and the number of hops that a neighbor is away from the root. Each node also periodically broadcasts a message to its neighbors to inform them that it is active.

SENS-Join

In [7], Stern et al. proposed SENS-Join to answer a one-shot join query q = RS whose join condition could be any form of arbitrary predicates on n joining attributes. In [7], the sensor relations R and S are modeled as storing one tuple per node (i.e., the most recent measurement). The result of q is obtained in three steps after all the sensor nodes relevant to q form a routing tree with the base station as the root:

  • Step 1. All the joining attribute values are collected at the base station, where the join condition is checked to filter out non-joinable values.

  • Step 2. The join filter consisting of those values that have survived is constructed and broadcast to the network, where each node filters out non-joinable tuples by looking up the join filter.

  • Step 3. The remaining tuples considered joinable are sent to the base station where the final join is conducted.

In the first two steps, the joining attribute values are sent or broadcast in an encoded and indexed form for considerable reduction of communication cost. The data structure employed for compact representation of the joining attribute values is a quadtree[36] constructed in connection with Z-ordering[37]. The encoding works based on the quantization of joining attribute values as follows: Suppose there are n joining attributes in q. Each tuple can have up to n joining attribute values, which are mapped to a point in the n-dimensional space. For each dimension, its value range is divided into subranges of equal size. The number of subranges is a priori determined at the base station depending on the resolution of the dimension to be supported, and disseminated to the network independent of q. Then, a point in the n-dimensional space belongs to an n-dimensional cell. Each cell is numbered in Z-ordering (i.e., assigned a Z-number), a technique which maps multi-dimensional data to one-dimensional data while preserving data locality. Figure 10 shows an example of Z-ordering for 2-dimensional cells and its application for encoding joining attribute values. Now a tuple t (to be exact, the n joining attribute values of t) is mapped to a Z-number. The Z-numbers of all the tuples are represented in a quadtree, which is known to be efficiently constructed in connection with Z-ordering.

Due to the discrete quantization of joining attribute values as described above, accuracy could be sacrificed in the first two steps while not undermining the correctness of the final join result in the third step. The degree of reduction of the join operand relation would be partial to full depending on the resolutions supported in encoding the join attribute values. It could be full reduction if the supported resolutions cover all the exact values of the joining attributes.

SENS-Join requires the routing tree to be stable throughout the execution of a query. In SENS-Join, link failure is handled. If a link fails during the execution of a query, the routing tree is repaired to be restructured. Then, the query is re-executed.

Continuous Join Filtering (CJF)

In [24], Stern et al. proposed CJF to answer a continuous join query. It periodically executes a theta-join query q = RS. Each execution is against static relations R and S. In [24], the sensor relations R and S are modeled as storing one tuple per node (i.e., the most recent measurement). In each execution, the final join result is computed at the base station. The ideal scenario is that each node of R and S sends its tuple t to the base station if t is joinable and does not send t if t is not. Then, the base station computes the join result with the received tuples. The goal of CJF is to get close to such an ideal scenario as follows:

At each node, a join filter (or simply a filter) on the joining attribute, say, A, is installed. The filter is represented as an interval [v1, v2] of the values of A. For ease of explanation, let us consider an equi-join query q on one joining attribute A: q = RA=A S (CJF can process a theta-join on k joining attributes. The filter in each node consists of k intervals, one for each joining attribute. In each execution of q, each node sends its tuple t to the base station if t.A is outside (the interval of) the filter. Otherwise, it filters out (does not send) t. The base station computes the final join result with the received tuples. For correctness, however, the base station also checks if the value of A of any received tuple belongs to the interval of the filter in any node (say, N) that has not sent its tuple (say, u). This is called a collision, and it indicates the join possibility. If a collision occurs, the base station retrieves the missing tuple u by requesting N to send u to the base station. For this process, the base station needs to keep the filters of all the nodes. In fact, the filters of all the nodes are set by the base station before each execution of q. More description about this will be given shortly.

The interval of a filter [v1, v2] in node N is set using two values, v and s: v1 = vs/2, and v2 = v + s/2. v is an estimate (i.e., expected value) of A to be sampled in N. s is the filter size (i.e., the size of the interval). A constraint in setting filters is that the filter intervals of two different nodes should not overlap. This is to ensure that the joinable tuples are not filtered out. For a pair of nodes N1 and N2 for which such a constraint cannot be enforced because the two tuples of N1 and N2 might be joined with each other, the filter is installed neither in N1 nor in N2. That is, both filter sizes are set to 0. Then, N1 and N2 are supposed to send their tuples to the base station. That is, the filter size of a node whose tuple is joinable is set to 0 while that of a node whose tuple is not joinable is set as greater than 0.

The communication cost incurred in each execution of q depends on the filter sizes. Suppose tuple t produced in node N is not joinable. If the filter in N is too small, t might avoid the filter and be unnecessarily sent to the base station. If it is too large, the risk of collision at the base station gets higher. With this trade-off and the aforementioned constraint being considered, in [24], Stern et al. formulated the problem of determining the filter sizes for a given join query as a mathematical optimization problem, and proposed a solution.

In CJF, the base station computes the optimal filter sizes of all the nodes before each execution of the query. They are notified into the network for the filters to be maintained. In [24], it is assumed that the sensor readings would not drastically change between successive samplings. For example, the temperature in a region would not change much in a short period of time. Thus, the new filter sizes would not be much different from the previous ones. The filter updates are executed at some nodes only if communication cost for the update could be amortized in the next execution of the query.

As for the expected value v of A to be sampled at node N, the actual measurement would gradually diverge from v as time elapses. The update of v is triggered whenever a tuple is sent from N to the base station (i.e., not filtered out). The new value is computed using a linear regression model with k recent values received at the base station. According to the experiments in [24], this model works well with k = 6. This implies that CJF can adapt to the trend of the sensor readings early enough.

CJF can be employed in the applications where an estimate of the sensor readings of each joining attribute could be provided, and also the sensor readings would not change much between successive samplings.

Progressive Energy-efficient Join Algorithm (PEJA)

In [5], Lai et al. proposed PEJA to answer a continuous join query. It executes an inter-region equi-join RA=B S. The join processing proceeds as follows: In region R (S), a routing tree is constructed. In R (S), the value range of A (B) is divided into subranges. Each node of R (S) counts the number of value occurrences in R.A (S.B) for each subrange, making the node histogram which consists of a series of (subrange, count) pairs for that node. The node histograms are gathered at the root through the routing tree, and the root merges them to generate the region histogram which consists of a series of (subrange, count) pairs for that region. The two region histograms are sent to the node cT, which is located at the midpoint between the two roots of the routing trees. In cT, for each matching subrange pair, joinability for the subrange is checked. For example, if the count of a subrange [v1, v2] is not 0 in one region but that of the same subrange of the other region is 0, then there would be no join result for the subrange [v1, v2]. If both counts are non-zero, the join result is regarded to exist for [v1, v2] though this judgment would turn out to be a false hit. For the non-joinable subranges, the corresponding tuples of R and S are filtered out. Because of the false hits, such reductions of R and S are only partial. For each pair of joinable subranges, a strategy of in-network join processing is set up depending on the two counts. For example, if one count is high but the other one is very low, then the probability of the join result to be produced in that subrange could be low. If both counts are high, the probability could be high. Based on such a heuristic, a proper join strategy is selected and executed as follows.

The tuples of R that have survived are partitioned and replaced through geographic hashing. The region R is divided into grids where a grid is a rectangular geographic region of the network that comprises a set of sensor nodes. A subrange of R.A is mapped to the grids proportionally depending on the number of tuples in the subrange. For I which is a subrange of A, those tuples of R whose R.A belongs to I are sent to the grid g allocated for I. The same partitioning and replacement is conducted in region S for B as well, and the matching grid g′for I in S is called the mirror grid of g. Now the join tuple matching is carried out only between a grid and its mirror grid as in the conventional hash join. For each subrange I, the grid with less number of tuples send their tuples to its mirror grid where the final join is conducted. The matched tuples are sent to the base station for the final result. Each node of a grid g maintains a join filter FJ that stores the joining attribute values in the mirror grid of g. FJ is consulted in filtering out the non-joinable tuples in g. The joinable tuples of g matched through FJ are sent to the base station, and FJ of g's mirror grid is updated accordingly.

PEJA can be regarded as an adaptation of the conventional sort-merge join, though no physical sorting of the tuples on the joining attribute is carried out in the network. The hash partitioning of the tuples is executed in association with partitioning of the joining attribute value range into subranges. This amounts to the logical (and partial) ordering of the tuples where the tuples in a subrange are not sorted.

SRJA (Synopsis Refinement iceberg-Join Algorithm)

In [12], Lai et al. proposed SRJA to answer a one-shot join query. It executes an iceberg join[38] which is represented as an inter-region equi-join R A = B i S. An iceberg join in WSNs is to find out the prominent patterns of correlation among the sensor readings. For a joining attribute value v, it contributes to the join result only if the number of joined tuples for v exceeds some given iceberg thresholdα. Figure 11 shows an example when α is 2.

In SRJA, each of regions R and S generates a synopsis of the joining attribute as follows. The value range of the joining attribute is divided into k subranges. For each subrange that covers, say, n values, the number of occurrences of each of those n values is counted. Among those n counts, the minimum and the maximum values are picked. Then, the synopsis of region R (S) is a series of k triples (subrange, mincount, maxcount)'s. The two region synopses are sent to the node cT, which is located at the midpoint between the two roots of the routing trees. In cT, for each matching subrange pair, joinability for the subrange is checked. For a subrange, if the product of the two corresponding maxcount's is less than α, then the subrange is flagged as PRUNE, because the tuples belong to that subrange do not contribute to the result. If the product of the two mincount's is greater than α, then the subrange is flagged as JOIN, because the tuples belong to that subrange might contribute to the result. In other cases, the subrange is flagged DIVIDE. The flagged synopsis of each region is sent back to the corresponding region where the tuples for the PRUNE-flagged subrange are filtered out. For the JOIN-flagged subrange, a variant of the semijoin is carried out between two regions to filter out non-joinable tuples, and the tuples that have survived are sent to the query sink for the final result. For the DIVIDE-flagged subrange, the corresponding value range is further divided, and the above process is repeated.

4.4. Summary and Assessment

Table 2 compares the techniques surveyed in Sections 4.2 and 4.3 where each row can be referred to as a summary of the corresponding technique. In Section 3.1, we have described the requirements and challenges in in-network join processing in WSNs. In the following, we assess the surveyed techniques in Table 2 in terms of those requirements and challenges. The major requirements include stream processing, distributed processing, protocol-oriented implementation, and fault-tolerance.

Stream processing

Among others, two important challenges are faced in meeting this requirement. One is to process a stream join with limited resources of the sensor nodes, and the other is to collect the statistics on the sensor readings for cost-based optimization. The state-of-the-art techniques have well met the first challenge: Most of the techniques can process stream joins [5,6,8,11,22,23]; The periodic executions of a join query can be regarded as a form of stream join [11,21,24]; Even the techniques that focus on a one-shot join over static join operand relations could be tailored to support a continuous join over streaming relations [24,7,12]. However, only a limited solution to the second challenge has been devised in the state-of-the-art. Most techniques do not employ a cost-based optimization based on the statistics. As for those employing cost formulas, the statistics are assumed to be collected through a learning phase in the processing of a long-running query [4,11,21,22].

Distributed processing

A difficult challenge is to generate an efficient distributed join strategy when each sensor node has limited knowledge of other nodes and the network connectivity. For inter-region joins, the join region is arranged around the center location of the triangle formed by the two regions and the query sink [35,8,11,21]. These techniques could be efficient when joining the sensor readings produced from two small regions of the network that are not overlapping. Other techniques employ the base station as a coordinator of join processing [6,7,24]. When all or a majority of the nodes participate in the query, these techniques could be more efficient than those of pure in-network processing because the base station is not resource-constrained. However, it might incur much communication when only small regions of the network distant from the base station participate in the query. The techniques that use geographic hashing distribute query operators over the network [8,2]. The communication costs of these techniques depend on the hash functions and the distribution of the values to be hashed. The join initiation in [22,23] is carried out in a distributed way using multiple routing trees. However, it is costly and could be amortized only for a long-running query.

Protocol-oriented implementation

A crucial challenge is to carefully design a protocol-oriented join implementation under the resource constraints of the sensor nodes. The state-of-the-art has well addressed this requirement. Examples of detailed description of protocol-oriented join implementations can be found in [2,3]. In [21], the lower bounds of memory space of a sensor node required in executing the semijoin strategies are shown. However, the full details of implementation are often missing in the state-of-the-art techniques. Some examples are as follows: In [2], the size of the region T where the filtering of non-joinable attribute values through geographic hashing is to be conducted is computed based on the available memory of a sensor node. However, a skewed value distribution that might cause memory overflow in a node in T is not considered. In [11], the available memory of a sensor node is considered in arranging the optimal join region, which can be obtained after the initial execution of the join at the query sink to which all the tuples are collected. If the query sink is a node inside the network, its memory space matters but such an issue is not addressed. In [8], the overflow at a node to which a tuple is routed through geographic hashing is addressed. But the details are not given.

Fault-tolerance

This requirement has received the least attention in the state-of-the-art. Though failure handling is addressed in several techniques, only a simple form of failure is treated in each technique. In [4,6,7,11,22], the successful transmission of data in spite of a node or link failure is considered. It is achieved through the handling of failures by their underlying routing protocols. In [8], the replication of sliding windows is considered. As for other techniques where failure handling is not addressed, the aforementioned failure handling could be incorporated to them. However, more critical forms of failures (e.g., a partial or total loss of the join nodes) have not been addressed in the state-of-the-art.

5. Open Issues

In the previous section, we have presented a survey of various techniques for in-network join processing in WSNs. Each technique could be enhanced to a more general solution with slight modifications. For example, the techniques proposed for one-shot join queries could handle a continuous query as well if the sliding windows were taken as join operand relations instead of the static snapshots of input relations. Other than such straightforward extensions, more issues need to be investigated for developing more advanced techniques. In this section, we discuss some of the open issues and future research directions.

For long-running continuous join queries, the statistics on the sensor readings required for cost-based optimization in the state-of-the-art techniques were assumed to be sampled from the results of prior executions rather than estimated. The effectiveness of such a practice could be limited if the query is not long-running. The initial execution in particular cannot be optimized. The techniques for estimating selectivity using sampling, histogram, and wavelet in the conventional database environment were investigated [3942]. Those for estimating selectivity in data stream management systems were also investigated [4347]. However, direct and in-network employment of these techniques in WSNs is infeasible due to communication overhead and resource constraints of the sensor nodes. Schemes of applying or adapting such estimation techniques to WSNs in connection with in-network join processing need to be investigated.

Cost-based optimization for one-shot queries or short-lived continuous ones might be intractable unless the statistics on the sensor readings are given a priori. A progressive and adaptive optimization could be considered for such queries. First, only an initial part of the strategy is determined. Then, depending on the intermediate result of join processing with the initial strategy and on the characteristics of the sensor readings thus far, the subsequent step is determined, and so on. In [34], Mullin showed that such an approach was feasible with hash-semijoins in distributed query processing. There are also a wide range of techniques for adaptive query processing, where the information that is obtained at query runtime is used to dynamically adapt the query plan [48]. Though these techniques were not targeted at WSNs, their adaptations to WSNs need to be investigated.

Join initiation for the queries with spatial join predicates (e.g., the predicate “R.x = S.y + 5” in query expression (2)) needs further investigation. Evaluation of such predicates could be carried out in the phase of join initiation or postponed to the phase of tuple matching. Evaluation of them as early as in the join initiation phase would reduce the number of sensor nodes participating in the join and restrict their possible pairings. It could make in-network join processing more efficient for long-running continuous queries. In general, this is a difficult problem. In [22,23], evaluation of spatial predicates in the join initiation phase is by an exhaustive search of node pairs that are to participate in the join using multiple routing trees. More efficient approaches to this aspect of join implementation need to be investigated.

The join queries considered in the literature is mostly a 2-way join. In-network strategies suitable particularly for n-way joins were not addressed. Extension of the existing techniques to in-network strategies that can efficiently handle n-way joins is an open issue. In [49], Tran and Lee proposed a technique of employing semijoins for n-way window-based joins in a distributed data stream environment. Though it is not targeted at WSNs and the semijoin selectivities of the data streams are given as input parameters, the employment of semijoins has been shown to be efficient in an n-way join against distributed data streams. Adaptation of such an approach for a long-running continuous n-way join query in WSNs needs to be investigated.

Failure handling in the state-of-the-art techniques is not complete. This issue has not been dealt with thoroughly. Current solutions mostly handle a simple type of node or link failures only in some stages of in-network join processing. More critical failures such as the failure of the join nodes or the loss of intermediate join results were not addressed. A naïve approach to a complete solution might make join processing much more complicated and less energy-efficient. Adding fault tolerance to the existing techniques deserves more attention.

Another interesting open issue is to adapt the techniques developed for P2P databases. The current state-of-the-art surveyed in this paper is mostly under the influence of the techniques in the conventional centralized/distributed databases, focusing on the resource constraints of the sensor nodes in join processing and aiming at energy-efficient processing. Though the environments and technical goals of P2P databases are different from those of WSNs, they also provide distribution transparency, data independence through relational data modeling, and SQL-like relational query processing. Similar challenges are encountered in join processing on top of P2P networks such as the lack of statistics and peer/link failures. Relational query processors including various join implementations for such environments were proposed [50,51], and fault-tolerant query processing in P2P systems where the intermediate results in join processing are protected against failures was proposed [52]. Though they are not targeted at WSNs, their adaptations to WSNs deserve investigation.

Finally, join implementation and its evaluation in real-world WSNs are also important open issues. Most of the techniques surveyed in this paper have been evaluated in simulations. Since join selectivity is mostly assumed to be low, there is often no explicit statement about the required resources on individual nodes. In real-world settings, some techniques may need to be tailored because the assumptions made do not hold.

6. Conclusions

We have sketched the main ideas and features in the techniques of in-network join processing in WSNs proposed in the literature. We have described that join queries in WSNs are often characterized by spatio-temporal predicates. Spatially, an inter-region join is the most common type. Temporally, a long-running continuous join modeled as a time-based sliding window join is widely in use. Spatio-temporal characteristics have a direct influence on the design of in-network join implementation because different join types require different approaches to join implementation. Most of the join implementations are adaptations of the conventional join implementations in centralized and distributed databases. Some implementations filter non-joinable tuples out before the final join. Some conduct cost-based query optimizations.

The purpose of this survey has been to understand the existing join implementations, to classify join types, and to identify open issues for further development of advanced techniques. In-network processing of joins in WSNs will remain a significant area of active research because of its importance as well as its difficulty. It is hoped that this survey would contribute to a future breakthrough yet to come.

Acknowledgments

The author would like to thank the anonymous reviewers for their valuable comments and suggestions. This research was supported in part by the Basic Research Program in Science and Engineering of the National Research Foundation of Korea under grant No. 20120062 and in part by the Chung-Ang University Research Grant.

References

  1. Zhao, F.; Guibas, L. Wireless Sensor Networks: An Information Processing Approach; Morgan Kaufmann: San Francisco, CA, USA, 2004. [Google Scholar]
  2. Yu, H.; Lim, E.; Zhang, J. On In-Network Synopsis Join Processing for Sensor Networks. Proceedings of 7th International Conference on Mobile Data Management, Nara, Japan, 9–13 May 2006; pp. 32–39.
  3. Coman, A.; Nascimento, M. A Distributed Algorithm for Joins in Sensor Networks. Proceedings of 19th International Conference on Scientific and Statistical Database Management, Banff, BA, Canada, 9–11 July 2007.
  4. Coman, A.; Nascimento, M.; Sander, J. On Join Location in Sensor Networks. Proceedings of 8th International Conference on Mobile Data Management, Mannheim, Germany, 7–11 May 2007; pp. 190–197.
  5. Lai, Y.; Chen, Y.; Chen, H. PEJA: Progressive energy-efficient join processing for sensor networks. J. Comp. Sci. Technol. 2008, 6, 957–972. [Google Scholar]
  6. Yang, X.; Lim, H.; Özsu, M.; Tan, K. In-Network Execution of Monitoring Queries in Sensor Networks. Proceedings of ACM SIGMOD International Conference on Management of Data, Beijing, China, 12–14 June 2007; pp. 521–532.
  7. Stern, M.; Buchmann, E.; Böhm, K. Towards Efficient Processing of General-Purpose Joins in Sensor Networks. Proceedings of 25th IEEE International Conference on Data Engineering, Shanghai, China, 29 March–2 April 2009; pp. 126–137.
  8. Pandit, A.; Gupta, H. Communication-Efficient Implementation of Range-Join in Sensor Networks. Proceedings of 11th International Conference on Database Systems for Advanced Applications, Singapore, 12–15 April 2006; pp. 859–869.
  9. Özsu, M.T.; Valduriez, P. Principles of Distributed Database Systems, 3rd ed.; Springer: New York, NY, USA, 2011. [Google Scholar]
  10. Mishra, P.; Eich, M.H. Join processing in relational databases. ACM Comp. Surv. 1992, 1, 63–113. [Google Scholar]
  11. Chowdhary, V.; Gupta, H. Communication-Efficient Implementation of Join in Sensor Networks. Proceedings of 10th International Conference on Database Systems for Advanced Applications, Beijing, China, 17–20 April 2005; pp. 447–460.
  12. Lai, Y.; Lin, Z.; Gao, X. SRJA: Iceberg Join Processing in Wireless Sensor Networks. Proceedings of International Workshop on Database Technology and Applications, Wuhan, Hubei, China, 27–28 November 2010; pp. 1–4.
  13. Bernstein, P.A.; Chiu, D.W. Using semi-joins to solve relational queries. J. ACM 1981, 1, 25–40. [Google Scholar]
  14. Yu, C.T.; Chang, C.C. Distributed query processing. ACM Compu. Surv. 1984, 4, 399–433. [Google Scholar]
  15. Hevner, A.; Yao, S. Query processing in distributed database systems. IEEE Trans. Softw. Eng. 1979, 3, 177–187. [Google Scholar]
  16. Babcock, B.; Babu, S.; Datar, M.; Motwani, R.; Widom, J. Models and Issues in Data Stream Systems. Proceedings of 21st ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems, Madison, WI, USA, 3–5 June 2002; pp. 1–16.
  17. Kang, J.; Naughton, J.; Viglas, S. Evaluating Window Joins Over Unbounded Streams. Proceedings of 19th International Conference on Data Engineering, Bangalore, India, 5–8 March 2003; pp. 341–352.
  18. Das, A.; Gehrke, J.; Riedewald, M. Approximate Join Processing Over Data Streams. Proceedings of ACM SIGMOD International Conference on Management of Data, San Diego, California, CA, USA, 9–12 June 2003; pp. 40–51.
  19. Arasu, A.; Babu, S.; Widom, J. The CQL continuous query language: Semantic foundations and query execution. VLDB J. 2006, 2, 121–142. [Google Scholar]
  20. Bonfils, B.; Bonnet, P. Adaptive and Decentralized Operator Placement for In-Network Query Processing. Proceedings of International Workshop Information Processing in Sensor Networks, Palo Alto, CA, USA, 22–23 April 2003; pp. 47–62.
  21. Min, J.; Yang, H.; Chung, C. Cost based in-network join strategy in tree routing sensor networks. Inf. Sci. 2011, 16, 3443–3458. [Google Scholar]
  22. Mihaylov, S.; Jacob, M.; Ives, Z.; Guha, S. Dynamic Join Optimization in Multi-Hop Wireless Sensor Networks. Proceedings of 36th International Conference on Very Large Data Bases, Singapore, 13–17 September 2010; pp. 1279–1290.
  23. Mihaylov, S.; Jacob, M.; Ives, Z.; Guha, S. A Substrate for In-Network Sensor Data Integration. Proceedings of 5th Workshop on Data Management for Sensor Networks, Auckland, New Zealand, 24 August 2008; pp. 35–41.
  24. Stern, M.; Böhm, K.; Buchmann, E. Processing Continuous Join Queries in Sensor Networks: A Filtering Approach. Proceedings of ACM SIGMOD International Conference on Management of Data, Indianapolis, IN, USA, 6–11 June 2010; pp. 267–278.
  25. Madden, S.; Franklin, M.; Hellerstein, J.; Hong, W. The Design of An Acquisitional Query Processor for Sensor Networks. Proceedings of ACM SIGMOD International Conference on Management of Data, San Diego, CA, USA, 9–12 June 2003; pp. 491–502.
  26. Madden, S.; Franklin, M.; Hellerstein, J.; Hong, W. TinyDB: An acquisitional query processing system for sensor networks. ACM Trans. Database Syst. 2005, 1, 122–173. [Google Scholar]
  27. Karp, B.; Kung, H. GPSR: Greedy Perimeter Stateless Routing for Wireless Networks. Proceedings of 6th Annual International Conference on Mobile Computing and Networking, Boston, MA, USA, 6–11 August 2000; pp. 243–254.
  28. Ratnasamy, S.; Karp, B.; Yin, L.; Yu, F.; Estrin, D.; Govindan, R.; Shenker, S. GHT: A Geographic Hash Table for Data-Centric Storage. Proceedings of 1st ACM International Workshop on Wireless Sensor Networks and Applications, Atlanta, GA, USA, 28 September 2002; pp. 78–87.
  29. Yao, Y.; Gehrke, J. Query Processing for Sensor Networks. Proceedings of 1st Biennial Conference on Innovative Data Systems Research, Asilomar, CA, USA, 5–8 January 2003.
  30. Abadi, D.; Madden, S.; Lindner, W. REED: Robust, Efficient Filtering and Event Detection in Sensor Networks. Proceedings of the 31-st International Conference on Very Large Data Bases, Trondheim, Norway, 30 August–2 September 2005; pp. 769–780.
  31. Bloom, B. Space/time trade-offs in hash coding with allowable errors. Commun. ACM 1970, 7, 422–426. [Google Scholar]
  32. Nath, B.; Niculescu, D. Routing on a Curve. Proceedings of 1st Workshop on Hot Topics in Networks, Princeton, NJ, USA, 28–29 October 2002.
  33. Mackert, L.; Lohman, G. R* Optimizer Validation and Performance Evaluation for Distributed Queries. Proceedings of 12th International Conference on Very Large Data Bases, Kyoto, Japan, 25–28 August 1986; pp. 149–159.
  34. Mullin, J.K. Optimal semijoins for distributed database systems. IEEE Trans. Softw. Eng. 1990, 5, 558–560. [Google Scholar]
  35. Tseng, J.C.R.; Chen, A.L.P. Improving distributed query processing by hash-semijoins. J. Inf. Sci. Eng. 1992, 4, 525–540. [Google Scholar]
  36. Samet, H. The quadtree and related hierarchical data structures. ACM Comp. Surv. 1984, 2, 63–113. [Google Scholar]
  37. Morton, G.M. Technical Report: A Computer Oriented Geodetic Database and a New Technique in File Sequencing; IBM Ltd.: Ottawa, ON, Canada, 1966. [Google Scholar]
  38. Fang, M.; Shivakumar, N.; Garcia-Molina, H.; Motwani, R.; Ullman, J.D. Computing Iceberg Queries Efficiently. Proceedings of 24th International Conference on Very Large Data Bases, New York, NY, USA, 24–27 August 1998; pp. 299–310.
  39. Haas, P.; Nanghton, J.; Seshadri, S.; Stokes, L. Sampling Based Estimation of the Number of Distinct Values of an Attribute. Proceedings of 21st International Conference on Very Large Data Bases, Zurich, Switzerland, 11–15 September 1995; pp. 311–322.
  40. Haas, P.; Nanghton, J.; Seshadri, S.; Swami, A. Fixed Precision Estimation of Join Selectivity. Proceedings of 12th ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems, Washington, DC, USA, 25–28 May 1993; pp. 190–201.
  41. Matias, Y.; Vitter, J.S.; Wang, M. Wavelet-Based Histograms for Selectivity Estimation. Proceedings of ACM SIGMOD International Conference on Management of Data, Seattle, WA, USA, 2–4 June 1998; pp. 448–459.
  42. Poosala, V.; Ioannidis, Y.; Haas, P.; Shekita, E. Improved Histograms for Selectivity Estimation of Range Predicates. Proceedings of ACM SIGMOD International Conference on Management of Data, Montreal, QC, Canada, 4–6 June 1996; pp. 294–305.
  43. Babcock, B.; Datar, M.; Motwani, R. Sampling from a Moving Window over Streaming Data. Proceedings of 13th Annual ACM-SIAM Symposium on Discrete Algorithms, San Francisco, CA, USA, 6–8 January 2002; pp. 633–634.
  44. Gemulla, R.; Lehner, W. Sampling Time-Based Sliding Windows in Bounded Space. Proceedings of ACM SIGMOD International Conference on Management of Data, Vancouver, BC, Canada, 10–12 June 2008; pp. 379–392.
  45. Cormode, G.; Muthukrishnan, S.; Yi, K.; Zhang, Q. Optimal Sampling from Distributed Streams. Proceedings of 29th ACM SIGMOD-SIGACT-SIGART Symposium on Principles of Database Systems, Indianapolis, IN, USA, 6–11 June 2010; pp. 77–86.
  46. Thaper, N.; Indyk, P.; Guha, S.; Koudas, N. Dynamic Multidimensional Histograms. Proceedings of ACM SIGMOD International Conference on Management of Data, Madison, WI, USA, 3–6 June 2002; pp. 428–439.
  47. Wei, Y.; Prasad, V.; Son, S.H. QoS Management of Real-Time Data Stream Queries in Distributed Environments. Proceedings of 10th IEEE International Symposium on Object-Oriented Real-Time Distributed Computing, Santorini Island, Greece, 7–9 May 2007; pp. 241–248.
  48. Deshpande, A.; Ives, Z.; Raman, V. Adaptive query processing. Found. Trends Databases 2007, 1, 1–140. [Google Scholar]
  49. Tran, T.M.; Lee, B.S. Distributed stream join query processing with semijoins. Distrib. Parallel Databases 2010, 3, 211–254. [Google Scholar]
  50. Huebsch, R.; Chun, B.; Hellerstein, J.; Loo, B.; Maniatis, P.; Roscoe, T.; Shenker, S.; Stoica, I.; Yumerefendi, A. The Architecture of PIER: An Internet-Scale Query Processor. Proceedings of 2nd Biennial Conference on Innovative Data Systems Research, Asilomar, CA, USA, 4–7 January 2005; pp. 28–43.
  51. Rösch, P.; Sattler, K.; Weth, C.; Buchmann, E. Best Effort Query Processing in DHT-Based P2P Systems. Proceedings of 1st IEEE International Workshop on Networking Meets Database, Tokyo, Japan, 5–8 April 2005.
  52. Bestehorn, M.; Weth, C.; Buchmann, E.; Böhm, K. Fault-tolerant query processing in structured P2P systems. Distrib. Parallel Databases 2010, 1, 33–66. [Google Scholar]
Figure 1. More examples of joins in WSN applications suggested in the literature. The examples of join queries in the literature are not shown. Refer to the referenced papers for them. Additional examples based on them in the same applications are given.
Figure 1. More examples of joins in WSN applications suggested in the literature. The examples of join queries in the literature are not shown. Refer to the referenced papers for them. Additional examples based on them in the same applications are given.
Sensors 13 03358f1a 1024Sensors 13 03358f1b 1024
Figure 2. Inter-region join RS, where each small circle denotes a sensor node.
Figure 2. Inter-region join RS, where each small circle denotes a sensor node.
Sensors 13 03358f2 1024
Figure 3. (a) A region, R, of the sensor network that consists of sensor nodes, where each small circle denotes a sensor node; (b) A routing tree constructed for region R, where the sensor node at the center (i.e., a dark circle) is chosen as the root; (c) A routing tree constructed for all the sensor nodes of the network with the base station as the root; (d) Join initiation for an inter-region join RS.
Figure 3. (a) A region, R, of the sensor network that consists of sensor nodes, where each small circle denotes a sensor node; (b) A routing tree constructed for region R, where the sensor node at the center (i.e., a dark circle) is chosen as the root; (c) A routing tree constructed for all the sensor nodes of the network with the base station as the root; (d) Join initiation for an inter-region join RS.
Sensors 13 03358f3 1024
Figure 4. (a) Distribute-Broadcast Join; (b) A possible shape of an optimal join region; (c) Another possible shape of an optimal join region.
Figure 4. (a) Distribute-Broadcast Join; (b) A possible shape of an optimal join region; (c) Another possible shape of an optimal join region.
Sensors 13 03358f4 1024
Figure 5. (a) An initiator node Ni and its target node Nt. A join between Ni and Nt is called a pair-wise join. (b) Two target nodes Nt1 and Nt2 for one initiator node Ni. Each of the (Ni, Nt1) and (Ni, Nt2) pairs represents a pair-wise join.
Figure 5. (a) An initiator node Ni and its target node Nt. A join between Ni and Nt is called a pair-wise join. (b) Two target nodes Nt1 and Nt2 for one initiator node Ni. Each of the (Ni, Nt1) and (Ni, Nt2) pairs represents a pair-wise join.
Sensors 13 03358f5 1024
Figure 6. (a) A routing tree where a dark circle denotes the root, and the join path between two triangular nodes; (b) Alternative routing tree for the same set of nodes and a different join path; (c) The two routing trees are in use together, and there are two join paths searched; (d) Every node on the two join paths are candidate join nodes.
Figure 6. (a) A routing tree where a dark circle denotes the root, and the join path between two triangular nodes; (b) Alternative routing tree for the same set of nodes and a different join path; (c) The two routing trees are in use together, and there are two join paths searched; (d) Every node on the two join paths are candidate join nodes.
Sensors 13 03358f6 1024
Figure 7. Multiple join pair optimization. (a) Before path collapse: there are two pair-wise joins (i, t1) and (i, t2). The two join paths are node-disjoint except i. There is a link between n1 and n2; (b) After path collapse: the link between n1and n2 is in use to make the join path of (i, t2) shorter; (c) Before group-based optimization for RS, where ℝ = {r1, r2} and Sensors 13 03358i1 = {s1, s2, s3}; (d) After group-based optimization: RS is executed as an external join.
Figure 7. Multiple join pair optimization. (a) Before path collapse: there are two pair-wise joins (i, t1) and (i, t2). The two join paths are node-disjoint except i. There is a link between n1 and n2; (b) After path collapse: the link between n1and n2 is in use to make the join path of (i, t2) shorter; (c) Before group-based optimization for RS, where ℝ = {r1, r2} and Sensors 13 03358i1 = {s1, s2, s3}; (d) After group-based optimization: RS is executed as an external join.
Sensors 13 03358f7 1024
Figure 8. Non-joinable tuple filtering and final join for RS using a distributed variant of a semijoin, where v-tuple denotes a tuple of R or S whose joining attribute value is v.
Figure 8. Non-joinable tuple filtering and final join for RS using a distributed variant of a semijoin, where v-tuple denotes a tuple of R or S whose joining attribute value is v.
Sensors 13 03358f8 1024
Figure 9. Semijoin RS in INJECT. (a) Relevant portion of the routing tree for an inter-region join RS and the shipping of R[A] for performing semijoin RS; (b) Selective forwarding of R[A] in PartitionJoin; (c) Recursive application of selective forwarding of R[A] in PartitionJoin.
Figure 9. Semijoin RS in INJECT. (a) Relevant portion of the routing tree for an inter-region join RS and the shipping of R[A] for performing semijoin RS; (b) Selective forwarding of R[A] in PartitionJoin; (c) Recursive application of selective forwarding of R[A] in PartitionJoin.
Sensors 13 03358f9 1024
Figure 10. Z-ordering and its application for encoding joining attribute values. (a) Z-numbers in bits. The bit string in a cell is obtained through bit interleaving: one bit from x-dimension, and the next bit from y-dimension, and so on; (b) Z-numbers in decimal; (c) Relation R with 2 joining attributes X and Y, where value range of X is [0, 39] and that of Y is [0, 399]. Their subranges are specified in (d); (d) Mapping of the tuples of R in (c) to the marked cells of the 2-dimensional space.
Figure 10. Z-ordering and its application for encoding joining attribute values. (a) Z-numbers in bits. The bit string in a cell is obtained through bit interleaving: one bit from x-dimension, and the next bit from y-dimension, and so on; (b) Z-numbers in decimal; (c) Relation R with 2 joining attributes X and Y, where value range of X is [0, 39] and that of Y is [0, 399]. Their subranges are specified in (d); (d) Mapping of the tuples of R in (c) to the marked cells of the 2-dimensional space.
Sensors 13 03358f10 1024
Figure 11. (a) Relation R; (b) Relation S; (c) Result of natural join RB=B S; (d) Result of iceberg join R B = B i S with iceberg threshold α = 2.
Figure 11. (a) Relation R; (b) Relation S; (c) Result of natural join RB=B S; (d) Result of iceberg join R B = B i S with iceberg threshold α = 2.
Sensors 13 03358f11 1024
Table 1. Notation.
Table 1. Notation.
SymbolDescription
R, SJoin operand relations for a join query RS
ℝ ( Sensors 13 03358i1)A set of sensor nodes which produce the sensor tuple stream of R (S). Each node in ℝ ( Sensors 13 03358i1) satisfies the predicates on geographic location of the nodes specified in the query.
R (S)A region of the sensor network that consists of the nodes in ℝ ( Sensors 13 03358i1)
wR(wS)A time-based window of R (S). It is either fixed or sliding.
w̿R (w̿S)A time-based fixed window of R (S)
R (w̃S)A time-based sliding window of R (S)
Table 2. Comparison of various in-network join implementations.
Table 2. Comparison of various in-network join implementations.
TechniquesJoin Pred.Query Type Supported1Join Operand Relations2Non-Joinable Tuple Filtering3Involvement of Base Station4Adapted Join ImplementationRouting ProtocolOptimization and Other Features
Distribute-Broadcast Join [11]thetaC, P, Lstatic, streamNONOnested-loop joinGPSR, TBFcost-based selection of optimal join region
Mediated Join [3,4]thetaOstaticNONOnested-loop joinGPSR, tree routingcost-based selection of inner/outer relation for nested-loop join
Distributed Index-Join [8]rangeCstreamNONOindexed nested-loop joinGPSRdynamically creating and using a distributed B+ tree
Distributed Hash-Join [8]equi, rangeCstreamNONOhash joinGPSRpartitioning and joining tuples with geographic hashing
Pair-wise Join [22,23]thetaC, LstreamNONOOrthogonal 5multiple tree routingcost-based join initiation for long-running join query, adaptivity (cost-based re-optimization)

Synopsis Join [2]equiOstaticfull reduction of both relationsNOsemijoin, hash joinGPSR, tree routingpartitioning and filtering of the joining attribute values with geographic hashing
Local Semijoin [4]thetaOstaticfull reduction of both relationsNOsemijoinGPSRalways outperforms Mediated Semijoin [4]
INJECT [21]thetaC, P, Lstaticpartial or full reduction of both relationsNOsemijoin, Bloomjointree routingcost-based optimization
Two-Phase Self Join [6]thetaCstreamfull reduction of one relationYESsemijointree routingquery decomposition assuming a highly selective selection predicate on one relation
SENS-Join [7]generalOstaticpartial to full reduction of both relations 6YESsemijointree routingusing quadtree as n-dimensional join filter based on Z-ordering
CJF (Continuous Join Filtering) [24]thetaC, Pstaticpartial reduction of both relationsYESideal distributed join 7tree routingoptimal join filter at each node
PEJA (Progressive Energy-efficient Join) [5]equiCstreampartial reduction of both relationsNOsort-merge join, hash joinGPSR, tree routinglogical sort through division of joining attribute value range, partitioning and filtering tuples with geographic hashing
SRJA (Synopsis Refinement iceberg Join) [12]equi, icebergOstaticpartial reduction of both relationsNOsort-merge join, semijoinGPSR, tree routinglogical sort through division of joining attribute value range

1C = continuous, O = one-shot, P = periodic, L = long-running.2per window.3using a semijoin (or its variants) or a join filter.4other than in the final join.5The join method at the join node N is orthogonal to the proposed framework. Under the memory constraints at N, any centralized join implementation can be used.6where partial to full depending on the resolution of join filter.7a hypothetical distributed join method whereby only the joinable tuples of each site are sent to the final join site.

Share and Cite

MDPI and ACS Style

Kang, H. In-Network Processing of Joins in Wireless Sensor Networks. Sensors 2013, 13, 3358-3393. https://doi.org/10.3390/s130303358

AMA Style

Kang H. In-Network Processing of Joins in Wireless Sensor Networks. Sensors. 2013; 13(3):3358-3393. https://doi.org/10.3390/s130303358

Chicago/Turabian Style

Kang, Hyunchul. 2013. "In-Network Processing of Joins in Wireless Sensor Networks" Sensors 13, no. 3: 3358-3393. https://doi.org/10.3390/s130303358

Article Metrics

Back to TopTop