You are currently viewing a new version of our website. To view the old version click .
ISPRS International Journal of Geo-Information
  • Article
  • Open Access

15 January 2018

Approach to Accelerating Dissolved Vector Buffer Generation in Distributed In-Memory Cluster Architecture

,
,
and
College of Electronic Science, National University of Defense Technology, Changsha 410073, China
*
Author to whom correspondence should be addressed.
This article belongs to the Special Issue Geospatial Big Data and Urban Studies

Abstract

The buffer generation algorithm is a fundamental function in GIS, identifying areas of a given distance surrounding geographic features. Past research largely focused on buffer generation algorithms generated in a stand-alone environment. Moreover, dissolved buffer generation is data- and computing-intensive. In this scenario, the improvement in the stand-alone environment is limited when considering large-scale mass vector data. Nevertheless, recent parallel dissolved vector buffer algorithms suffer from scalability problems, leaving room for further optimization. At present, the prevailing in-memory cluster-computing framework—Spark—provides promising efficiency for computing-intensive analysis; however, it has seldom been researched for buffer analysis. On this basis, we propose a cluster-computing-oriented parallel dissolved vector buffer generating algorithm, called the HPBM, that contains a Hilbert-space-filling-curve-based data partition method, a data skew and cross-boundary objects processing strategy, and a depth-given tree-like merging method. Experiments are conducted in both stand-alone and cluster environments using real-world vector data that include points and roads. Compared with some existing parallel buffer algorithms, as well as various popular GIS software, the HPBM achieves a performance gain of more than 50%.

1. Introduction

A vector buffer in GIS (geographic information systems) is defined as the zone around a geometric geographic feature, measured in units of distance or time [1]. Vector buffer analysis is a fundamental function in the GIS domain for proximity analysis, area range computation, hybrid overlay analysis, spatial data query/filter and so on. It determines the neighborhood degree in GIS [2].
Buffer generation is the key to vector buffer analysis. Several methods for solving the generation problem of vector buffers have been proposed. According to whether or not the buffer zones of each feature are merged, the problem can be classified into two types: buffering with dissolved boundaries and buffering with intact boundaries, which are frequently used in modern GIS systems http://pro.arcgis.com/en/pro-app/tool-reference/analysis/buffer.htm http://docs.qgis.org/2.18/en/docs/gentle_gis_introduction/vector_spatial_analysis_buffers.html (Figure 1).
Figure 1. Two types of vector buffer.
Vector buffer analysis itself is computation-intensive and time-consuming. Moreover, the rapid growth of available large-scale geographic data has increased the complexity and difficulty of buffer analysis. Many strategies for optimizing the problem have been proposed. Most of them concentrate on accelerating the buffer zone construction [3,4,5,6]. Typically, the edge constraint triangulation method [7] and the buffer equation approximation strategy are widely accepted [8]. Also, many algorithms have been designed to address buffer zone dissolving [9,10,11]. This is because the dissolved type of buffer, compared with the undissolved one, is applied more frequently. At present, the recognized efficient algorithms—including Vatti’s algorithm [12] and the Greiner–Hormann algorithm [13]—can be used to process an arbitrary self-intersection with polygon dissolving.
Although excellent performances have been achieved, these optimized methods are carried out simply on the basis of the stand-alone serial approach. Therefore, their computational optimization ability is limited if addressing large-scale mass geodata. Parallel computing and distributed computing are ways of exploiting parallelism in computing to achieve higher performances. In this article, we regard distributed computing as a special form of parallel computing.
Thus, several parallel strategies have been put forward to solve those bottleneck problems. The first strategy is based on the MPI (message passing interface) protocol, which supports the parallel execution of buffer analysis algorithms on HPC (high-performance computing) cluster computers [14,15,16,17] but suffers from weak extensibility when faced with the big spatial data scenarios. The second strategy comes from the distributed high-performance computing framework for big data, MapReduce and Spark, which have recently gained much attention and popularity in the field of geoanalysis. Despite the fact that they do not natively support spatial data and spatial analysis, abundant expansion frameworks have gradually been created and applied in spatial computing. These frameworks include Hadoop-GIS [18], SpatialHadoop [19], SpatialSpark [20], GeoSpark [21], LocationSpark [22], and Simba [23]. They provide a variety of basic spatial functions, for example, spatial index construction, spatial range query, and k-nearest neighbors query (k-NN). Unfortunately, these extended frameworks do not yet support buffer processing. However, we observe that Spark has already been used in spatial overlay analysis [24] and spatial multi-way join calculation [25], suggesting its potential application to buffer analysis.
Thus, in this paper, we propose a parallel vector buffer analysis framework that takes advantage of the in-memory architecture of the Spark platform and further improves its performance by utilizing a space-filling-curve coding technology with a sampling-based partitioning strategy and a depth-given tree-like merging method.
The main contributions of this paper are as follows:
  • Space-filling curves are studied and proved to be effective in preserving spatial neighborhood properties and avoiding data skew under the Spark platform. The corresponding methods are designed.
  • A number of methods are put forward by using a Hilbert spatial-filling curve partition method to acquire the aggregation attribute, avoid data skew, address the boundary intersection, decompose data partitions with a load balance, and perform polygon merging in a more effective, tree-like way.
  • Using a real dataset, we show the superior performances of different strategies and verify the effectiveness of this method.
This paper is organized as follows: Section 2 highlights related work and literature. Section 3 describes the practical problems of buffer analysis in a parallel environment. Section 4 focuses on the optimization methods. Then, the computational cost comparison between the proposed HPBM and other algorithms is analyzed in Section 5. The experimental results are presented and discussed in Section 6.

3. Problem Definition and Description

From recent studies, we find that a cluster computing paradigm over distributed shared memory for big data processing, such as Spark, is also a promising solution for large-scale spatial analysis. However, detailed methods for data partitioning, task dispatching and result merging are needed.
Thus, the problem could be described as follows: Consider geospatial dataset D, which contains n objects and is expressed as D = d i | i = 1 , 2 , , N , where N is the total number of objects in D and d i is the ith object of D. The goal is to compute the buffer zones (in the Spark environment) around each object in D and dissolve them into one (or several) integral polygons, denoted as G.
The symbols used in this article are presented in Table 1 below.
Table 1. Symbols used in this study.
The vector buffer generation problem is solved in two steps: First, buffer zones are built for each object d i with a given buffer radius r. The single object buffer generation function is denoted as F b u f f e r ( d i , r ) , and the entire result set of step one is expressed as B = F b u f f e r ( D , r ) , where B is the collection of all single buffer zones. Second, the buffer zones of the first step are dissolved into one (or several) integral polygons. The dissolve function is denoted as F d i s s o l v e ( B ) . In this way, the buffer generation problem can be expressed conceptually as
F = F d i s s o l v e ( F b u f f e r ( D , r ) )
An example is shown in Figure 2, with a polyline dataset representing the road network of Changsha city in South China given in Figure 2a and the dissolved buffer result shown in Figure 2b. It could be observed that after the dissolving process, the result of the entire road network is a large and complex object.
Figure 2. Changsha city road buffer examples.
The dissolve procedure seems to be quite time-consuming. Therefore, a better solution may be achieved via parallelization. The most direct solution is to take the divide-and-conquer strategy: divide the input dataset D into multiple parts and calculate the dissolved results for each part until the final result is determined. We call each partition a data block, and the total number of blocks is denoted as p. Then, Equation (1) can be rewritten as Equation (2).
F = F d i s s o l v e ( i = 1 p F d i s s o l v e ( F b u f f e r ( D i , r ) ) )
Thus, the problem is turned into three steps. First, input dataset D is divided into p data blocks, each denoted as D i . Second, the dissolved buffer zone of each data block is determined according to Equation (1); this step can be processed in parallel over p tasks. Third, the results from all data blocks are further merged into the final single geometry.
Regarding the above, there are some detailed problems. For example, in step one, the method for distributing D into p parts is unknown. Moreover, in later steps, an approach to merging each part into a larger one is lacking. To optimize the performance, the following three problems will be solved:
  • Spatial Aggregation for Adjacent Data. After the mapping, D D i | i = 1 , 2 , , p , the input dataset is divided into multiple data blocks. Clearly, the less overlap there is among these data blocks, the better the computing efficiency achieved later during geometry merging. By contrast, without spatial order, if the geographic range of a dataset is as broad as Russia or Canada, the buffer merge operations can be extremely costly. Therefore, the data objects should be partitioned according to their geographical proximity, namely, adjacent objects should be assigned to the same or a neighboring block.
  • Data Blocks of Equal Size. The distribution of vector data in the real world is geographically unbalanced in two ways: the number of geographic objects in different areas is unbalanced and the number of vertices (a single geometry-like polyline or polygon contains a series of vertices) in different vector objects is unbalanced. The imbalance in data size causes an imbalance in the computing times of different parallel tasks. A method ensuring that each D i has roughly the same amount of data would cause the computational performance to be optimized on the whole. Thus, the optimization method should include the following considerations: (1) data splitting processing (to avoid a single large piece of data); (2) load balancing considerations regarding the total number of objects and the total number of vertices.
  • Parallel Dissolving of Buffer Zones. The dissolving procedure F d i s s o l v e needs to be parallelized. While in MPI-based methods, the different processes are merged in a binary-tree-like way, in the Spark architecture, the data blocks are merged in parallel. Therefore, the best depth of the tree may be not log 2 ( p ) . Moreover, the sequential order of p also needs to be maintained.

4. Methodology

To overcome the drawbacks presented above, we propose a method based on the Hilbert filling curve to aggregate adjacent objects and thus to optimize the data distribution among all distributed data blocks and to reduce the cost of swapping data among different blocks during parallel processing. The method is called the HPBM (Hilbert curve partition buffer method), the framework of which is shown in Figure 3. There are three major phases of the HPBM: Hilbert-curve-based data partition, task decomposition and distribution, and depth-given tree-like merger.
Figure 3. Framework of HPBM.
Phase 1. Hilbert-curve-based data partition. In Spark, spatial data are stored in a distributed file system in K e y , V a l u e form, where K e y represents the unique identifier of a single object and V a l u e includes a variety of attributes. First, the entire dataset is traversed by a Hilbert curve, and each object is encoded with a Hilbert code. Then, a sampling-based adaptive partitioning method is conducted to balance the data skew, and the boundary-crossing objects are addressed using a grid-based splitting strategy. After that, data objects are recoded in the new pair form H c , d , with H c standing for the Hilbert code and d standing for other attributes of the object.
Phase 2. Task decomposition and distribution. Load balance is fully taken into consideration, and every partition is indexed with a unique identity. The data output in this phase can be presented as I D , D , which uses I D as the sequential sorted number for data blocks.
Phase 3. Depth-given tree-like merging. First, every D is calculated to produce its result G using the equation G i = F b u f f e r ( D i , r ) . Then, after applying the dissolving operation F d i s s o l v e ( i = 1 p G i ) to every data block, the final result is produced in a tree-like way.

4.1. Hilbert-Curve-Based Data Partition

In the parallel computing model, the data are distributed to different computing nodes to support simultaneous computations. Since buffer computation requires adjacent objects, it is necessary to avoid distributing spatially adjacent data to different computing nodes. The existing data allocation strategy is based on the ordinary grid partition strategy and does not satisfactorily aggregate adjacent spatial objects. In mathematical analysis, a space-filling curve (abbreviated as SFC in the following) is a curve whose range contains the entire n-dimensional unit hypercube. We found that space-filling curves have good advantages in terms of the aggregation of neighboring spatial objects when compared with an ordinary grid [14]. Space-filling curves in parallel buffer analysis has not been addressed in recent research [16,17,32], though in his literature [17], Fan presented this topic as a future research direction. Therefore, we present a more efficient partitioning method based on space-filling curves, which essentially contains two steps.
Step 1: Hilbert-curve-based spatial aggregation. Types of space-filling curves include the Peano curve, the Hilbert curve, and the Z-order curve. Among all space-filling curves, the Hilbert curve is superior in terms of spatial aggregation [36].
First, the plane space is described using k layers of different resolutions. Each layer is denoted as L i ( i [ 1 , k ] ) and is divided into R i × R i grids to support parallel task allocation, where R i is called the resolution and R i = 2 L i ( i [ 1 , k ] ) ; the grids are denoted as U = U i | i = 1 , 2 , , R i 2 . Each layer L i is filled with an ith-order Hilbert curve, as shown in Figure 4.
Figure 4. Hierarchical space partition schema.
Then, the Hilbert code of each grid in L i can be calculated based on the Hilbert curve coding method proposed by Faloutsos [37].
The vertices of the L I N E and P O L Y G O N objects in U i are given the same Hilbert code, i.e., U i . Thus, we build a mapping function (Equation (3)) to map each vertex of the spatial objects to its corresponding Hilbert code, where H c denotes the Hilbert code, f h is the mapping function, L i is the corresponding layer, and X and Y denote the longitude and the latitude of the vertex, respectively.
H c = f h ( L i , X , Y )
While the K e y , V a l u e model fits nicely with large-scale data via SFC K e y -based partitioning, spatial analytics are intrinsically complex due to their multidimensional nature [18]. There are two remaining major problems to address: the spatial data skew problem and boundary object problem. The latter problem is solved in the next subsection.
Algorithm 1 Adaptive Hilbert-Based Data Partition Algorithm.
Input: D: input data; L j : initial layer; C m a x : maximum number of objects allowed in a grid;
Output: matched Hilbert layer number j;
1:if D.type = POINT then
2:  sample D with ratio S a ;
3:end if
4:if D.type = LINE then
5:  split single line into a series of v;// v denotes vertex, which is regarded as a single point
6:  sample the series of v with ratio S a ;
7:end if
8:for j < k do //k is the maximum layer allowed
9:  initialize the S F C according to L j ;
10:  compute H c for every sampled point according to Equation (3);
11:  count the number of objects in every grid and choose the largest one as U m a x ;
12:  if U m a x / S a > C m a x then // U m a x / S a is the estimated value
13:     j = j + 1 ;
14:  else
15:    return j;
16:  end if
17:end for
Step 2: Spatial data skew processing. From the OpenStreetMap dataset, we take the Beijing POI (point of interest) data for experiments. By partitioning the space at level L i into grids U with resolution R i = 12 , the average number of objects per grid is 522, with the largest number in a grid being 35,036. If buffer generation calculation is based on the combined data block of the grids, the response time can increase significantly due to these “huge” grids.
As analyzed above, there should be a threshold regarding the maximum number of objects C m a x allowed for a single grid. To achieve this goal, an adaptive data-partitioning-level-setting algorithm is proposed [18]. However, the count operation in the algorithm incurs an increase in both computation and I/O. In our other studies, we found that the sampling methods could reduce resource consumption. Therefore, we propose estimating and approximating the entire dataset via sampling. In our method, U m a x / S a is used to estimate the original data, where S a denotes the sampling ratio. U m a x / S a provides an unbiased estimation since the random sampling strategy is applied.
The final algorithm is described in Algorithm 1. On the basis of the selected SFC, the qualified layer number j is finally output after completing the recursive calculations.

4.2. Boundary Object Processing

In the partition operation, grid-crossing objects may occur. To improve the processing speed, an appropriate strategy is needed to address this event.
Spatial objects that cross over the grid boundaries are called boundary objects. For P O I N T objects, this does not occur. However, some L I N E objects can cross multiple grids. As shown in Figure 5, line 1 crosses over two grids, while line 2 crosses over six grids. This phenomenon raises the following two problems. First, to which grid does the object belong? Second, load unbalance occurs as a result of these objects because the clipping operation is sensitive to the number of vertices.
Figure 5. Boundary object processing example.
Multiple matching methods and multiple assignment methods are adopted to address these issues [18,38]. They work perfectly for the spatial query and join operations, despite the slightly increased overhead in the latter method due to the multiple duplications. Though they remain effective when used for P O I N T buffering, they become less capable in L I N E buffer analysis. For example, the multiple match does not eliminate the load unbalance problem because single large data remain unchanged. Worse still, the multiple assignment method, which duplicates boundary objects for multiple grids, causes storage overhead and extra I/O.
Since L I N E buffer analysis is much more sophisticated, neither multiple matching nor multiple assignment helps to solve this problem. For this reason, we propose splitting the single line vector objects into line segments. This strategy is practically supported in two ways. Primarily, the splitting-and-conquer method is one of the ways to create a buffer zone [17]. Moreover, the topology relationship between split lines is insignificant for the dissolve-type buffer result.
Therefore, a new approximation grid segmentation method is put forward, the procedure of which is introduced in Algorithm 2. A threshold F for detecting the number of vertices in one object is set. The total number of vertices in the object over F is split, while the remaining ones are retained. For those objects that are not split up, the Hilbert code of the middle vertex H c ( v i ) = f h ( L i , v i . X , v j . Y ) is chosen as the K e y . For those that are split up, the entire line object is decomposed into an array of small segments that run through at least two grids. Figure 5 gives an example; if F is set to 5, then line 1 is unchanged, while line 2, where the vertices are numbered from left to right, is cut into five short lines.
Algorithm 2 Boundary Object Assigning and Splitting Algorithm.
Input: D: input line dataset; L i : the level of the layer of the given S F C ; F: vertices number threshold;
Output: D : new line dataset;
1: D =
2:for each d in D do
3:  compute the number of vertices in d: l e n ( d ) ;
4:  if ( l e n ( d ) <= F) then
5:     H c ( d ) = f h ( L i , v j . X , v j . Y | j = l e n ( d ) / 2 ) ; //compute Hilbert code with middle vertex of d
6:    Append H c , d into D ;
7:  else
8:     j = 1 ;
9:     v s = v j ;
10:    while ( v j v l e n ( d ) ) do
11:      if ( H c ( v j ) H c ( v j + 1 ) ) then
12:        split the line and create a new line d , with vertices from v s to v j + 1 ;
13:         H c ( d ) = H c ( v j ) ;
14:        Append H c , d into D ;
15:         v s = v j + 1 ;
16:      end if
17:       j = j + 1 ;
18:    end while
19:  end if
20:end for
21:return D

4.3. Grid-Based Accumulative Data Decomposition

When many small grids are merged into a series of large data blocks D, decomposition is achieved for the previously partitioned data. Afterwards, the batch products can be processed in parallel. However, two problems need to be taken into consideration in this step. First, too many small series D lead to deteriorated performance [18]. This problem may occur during grid partition and decomposition [14], as there is no recursive partition strategy. Thus, the grids may be densely partitioned and decomposed. Second, a single high-density partitioned series D may require a lengthy calculation time, thereby causing processing congestion. To solve this problem, an even decomposition strategy, which decomposes the data according to the number of vertices, is utilized [16,17,32].
Our goal is to minimize the chances of producing a single large data block as well as control the total number of data blocks. The task decomposition algorithm consists of three steps. First, the spatial aggregation attribute is acquired by sorting H c , d , and the number of objects in every grid is counted. Second, according to the total count, we evenly put them into p parts. We note that the value of p should be neither too small nor too large, as explained above. Third, each data block is indexed with a unique I D , as the order of the I D s also indicates the spatial aggregation attribute for D. The example is illustrated in Figure 6; the Beijing road data are divided, with colors used to distinguish the decomposed data blocks. As we can see, sparsely distributed data contain more grids and vice versa.
Figure 6. Buffer result and partial data splitting example.

4.4. Buffer Generation and Depth-Given Tree-Like Merging

In step i = 1 p G i , with G i = F d i s s o l v e ( F b u f f e r ( D i , r ) ) , the dissolved buffer zone of various datasets D is calculated to produce G. This step can provide significant advantages over parallel computing, as the I/O from different nodes are rarely involved. However, the later step, F d i s s o l v e ( i = 1 p G i ) , requires combining all of the G, for which a suitable parallel merger strategy is required.
The previous parallel merger methods—the binary-tree-like merger method, compared with the sequential merger method—are more superior at large. This is mainly because they make the most use of multi-cores and reduce the congestion [16,17]. However, the previous two tree-like methods are based on MPI processes, thus making scalable computing difficult to achieve due to the complexity of multiprocess programming.
The merger method in Spark can be rather different from that of the MPI for the following reasons. First, in the MPI-based method, the datasets D are divided into c parts, where c denotes the number of processes. However, they are divided into p parts in our method, with p > c , where p is not affected by the number of processes. Second, the depth h = l o g 2 ( c ) of the MPI-based methods is not suitable for our method herein. Third, every file block also has a geolocation attribute, which calls for the full use of the I D . Therefore, we apply the data-block-based tree-like method and not the processed-based tree-like method.
On this basis, this paper uses the depth-given tree-like buffer merger method. The purpose of this method is to reduce the number of intermediate results, as well as make the most of the geoinformation of data blocks. In this way, the high cost of geometric consumption is alleviated. As shown in Figure 7, the whole procedure is mainly divided into two steps. After subsets D are partitioned into nodes 1–5, the dissolved buffer zone G is generated within every node. Then, several G are merged in a tree-like way, with the given depth equal to 2.
Figure 7. Depth-given tree-like merger example.
There are two important parameters in this step: the depth parameter h and the fanout parameter b. Their relationship is represented by Equation (4). b is used to calculate the remaining data blocks after every layer of merger. For example, after the first merger, the remaining number of G is p / b , and after the second merger, the remaining number of G is p / b / b .
b = m a x ( p 1 h , 2 )
In our algorithm, b is fixed at 3. This setting means that p 1 h = 3 , which further implies that h is slightly smaller than l o g 2 ( p ) . This setting guarantees the comparatively best performance. To demonstrate the function of this setting, the cost function is used to give a direct explanation. The cost function consists of three parts: computation cost, dissolving cost, and I/O cost. The parameter b is set to 2, 3, and 4 (or > 4 ).
If b is set to 2, a waiting period does not exist in the dissolving process, which makes the computation cost low. However, the number of intermediate results is much larger than that for a higher value of b, which results in a high dissolving cost. Thus, its I/O is also the highest among the three methods.
If b is set to 3, a waiting period does exist in the dissolving process, as 3 blocks are sequentially dissolved, which leads to a higher computational cost. Meanwhile, the dissolving cost and I/O cost decrease because the number of intermediate results is reduced.
If b is set to 4, a longer waiting period exists in the dissolving process, as 4 blocks are sequentially dissolved; thus, the efficiency is decreased significantly.
Subsequently, our objective is to finish the computation as fast as possible. If b 4 , then the larger the value of b, the larger the waiting time cost of the dissolving process. If b = 2 , the comparatively high dissolving cost and I/O cost lead to a deteriorated performance. Therefore, b = 3 is the theoretically better choice for parallel buffer generation.

5. Performance Analysis

In this section, we analyze the computational complexity of the whole algorithm. The whole algorithm is divided into four steps: data partition, data decomposition, local buffer and dissolve, and global dissolve. It is acknowledged that the local buffer and global buffer are the most time-consuming steps, as these operations are the most computationally intensive.
For the input data, the number of objects is N; the total number of vertices is V; the number of data blocks is p; the sampling operation is expressed as S a ( · ) ; the Hilbert code calculation is expressed as H c ( · ) ; the buffer operation is denoted as F b u f f e r ( · ) ; and the dissolve operation is denoted as F d i s s o l v e ( · ) . The whole cost of our method is O ( S a ( N ) + H c ( N ) + R ( N ) ) + O ( N ) + F d i s s o l v e ( F b u f f e r ( N + N e ( e 1 ) ) ) + F d i s s o l v e ( l o g b ( p ) ) .
Data Partition. Data partition means to partition the data according to our adaptive Hilbert-based data partition algorithm. In this algorithm, we assume that the data are partitioned once and that the cost is O ( S a ( N ) + H c ( N ) + R ( N ) ) . O ( S a ( N ) ) represents the cost of finding suitable partition layers for the sampled data, O ( H c ( N ) ) represents the Hilbert code calculation and O ( R ( N ) ) represents sorting according to H c .
Data Decomposition. Data decomposition means to decompose all the data into a series of data blocks and to distribute them to different computing nodes. This step requires one iteration of all the data, the cost of which is O ( N ) , which is the most insignificant among the four steps.
Local Buffer and Dissolve. For this step, it is difficult to give the precise cost expression due to the uniqueness of different spatial data. Thus, the complexity is expressed approximately. e represents the average number of grids crossed for every single object, and N e represents the crossing-boundary objects. Apparently, the number of objects is N e ( e 1 ) , and the number of vertices is N e ( e 1 ) . Therefore, the cost of our method is O ( F d i s s o l v e ( F b u f f e r ( N + N e ( e 1 ) ) ) ) .
Global Dissolve. Apparently, in the MPI-based method, using the binary-tree-like method, the cost decreases from O ( c ) to O ( l o g 2 ( e ) ) , and all union times can be represented as 2 l o g 2 e 1 . Regarding our method, the computational cost is reduced from O ( p ) to O ( l o g b ( p ) ) , the base b is calculated using Equation (4), and the new union times can be represented as b ( 1 b h ) 1 b . The cost of our method is O ( F d i s s o l v e ( l o g b ( p ) ) ) . Thus, the resource consumption is optimized and reduced.

6. Experimental Evaluation

We conducted several experiments to measure the impacts of different strategies, including the partition method, cross-grid object handling method, and depth-given tree-like merger method. Finally, we compared the HPBM with three other algorithms [16,17,32]. Different from the method applied in Reference [17], we did not construct an R-tree, as there was no need to filter the data.

6.1. Experimental Setup and Datasets

Experiments were conducted in two different environments—stand-alone and cluster. The code was implemented using the Scala language. The experiments were based on Spark 1.6.1, Hadoop 2.6, and JDK 1.8. Some other open-source GIS software programs were utilized: QGIS version 2.0, PostGIS version 2.1, Citus Data version 5.2, and ArcGIS 10.2. The experimental hardware environment is shown in Table 2.
Table 2. Hardware environment.
Table 3 shows the OpenStreetMap datasets used in these experiments. All files were saved in “CSV” format. More importantly, all the data were collected from the real world and have the geographically unbalanced distribution property. Apparently, such data create challenges with respect to efficient processing.
Table 3. Datasets used in the experiment. OSM: OpenStreetMap.
Experiments 1–3 were carried out in the stand-alone environment. Experiment 4 involved the algorithm comparisons that were carried out in both the stand-alone and cluster environments to verify the scalability of the HPBM. In all the experiments, the buffer distance r was set to 200 m, which has practical meaning for those datasets with a wide spatial range.

6.2. Experiment 1. Impact of Partition and Cross-Boundary Object Handling Method

Experiments settings. To evaluate the performance gain of the Hilbert curve used in the HPBM, experiments were conducted on the four methods shown in Table 4. They were all adopted for experiments on the P 1 and P 2 datasets, and the resolutions of the grids were set to be identical.
Table 4. Method comparison in experiment 1.
As shown in Figure 8a, the result demonstrates the necessity of implying a geographical partition strategy and the correctness of using the Hilbert-curve-based partition method. The three partition methods are more than one order of magnitude faster than NP, regardless whether considering P 1 or P 2 . In terms of GP, ZP, and HP, the efficiency of the HP method is slightly higher, as implied by the speedup lines (comparison with NP). The superior spatial adjacent attribution of the Hilbert curve was demonstrated [36]. In our experiment, the efficiency of the Hilbert partition for parallel buffer analysis was tested.
Figure 8. Experiment on cross-grid data processing methods.
To verify the necessity of the adaptive spatial filling curve hierarchy, we continued to experiment on the P 2 dataset with different S F C layers. The results are shown in Figure 8b. All three methods were affected by the curve level with roughly the same trend. When the level was too low, the amount of data in a single grid could be quite large, having apparent different effects. In contrast, when the level became too high, the excessively dense partition increased the amount of calculation, though less significantly.

6.3. Experiment 2. Cross-Grid Data Processing Method

Experiments settings. In this experiment, we compared the 4 methods shown in Table 5. In the DS method, the objects are divided into many single segments, which are regarded as single new lines. P O I N T data are seldom affected by the boundary-crossing problem; thus, only L I N E datasets were used to carry out this experiment. In addition, the replication method is more complex than the arbitrary assignment method; thus, it was not tested.
Table 5. Method comparison in experiment 2.
The experimental results are shown in Figure 9a. The performance gain of AS is obvious, especially when the amount of data is large enough. When addressing L 1 , AA outperforms the other 3 methods; this trend is explained in Section 5. Regarding L 2 , AA falls to third place, while AS becomes first. This dramatic change is caused by the dataset property. There exists a higher percentage of single long data in L 2 compared with L 1 , for which the splitting methods would be more effective. Regarding the NP method, it demonstrates the necessity of optimization.
Figure 9. Experiment on cross-grid data processing methods.
For the AS method proposed in this paper, the influence of its own parameters was also verified. In this experiment, line lengths below the given threshold were not cut. The results are shown in Figure 9b. For data with a node number less than 3, the best computational efficiency could be obtained when the threshold F = 2 .

6.4. Experiment 3. Comparison of Tree-Like Merger Methods

Experiments settings. As shown in Table 6, 3 methods were tested on L 1 , L 2 and L 3 . The D T M is the strategy used in our paper.
Table 6. Method comparison in experiment 3.
The results are shown in Figure 10, where the timings of four different components are listed. Seen from the whole procedure, the two tree-like merging methods are apparently superior to the sequential merging method. When focusing on different timings, we note that the time costs of the data partition, data decomposition, and local buffer and dissolve for these three methods are approximately the same. By contrast, a significant difference exists in terms of the global buffer; this difference becomes even more significant as the dataset becomes larger. For the SM method, the one-by-one merger strategy brings about an obviously long waiting time, especially for large dataset L 3 . Regarding the two tree-like methods, the DTM is slightly better than the BTM when a smaller depth h is used for the BTM than that of the DTM. This result clearly demonstrates that the DTM can reduce the intermediate results and network overhead.
Figure 10. Experiments on the tree-like merger methods.
The relationship between h and the number p is also experimentally verified. Figure 11a illustrates the correctness of our depth setting. When p is fixed to 256, regardless of the size of the dataset, the optimal depths of h are 5, 6 and 7 ( b = 3 ). Such result is in accordance with our analysis in Section 4. Moreover, if h becomes smaller, more computation time is consumed.
Figure 11. Experiment on the parameters.
Similarly, when the dataset is fixed to L 2 , the results are as shown in Figure 11b. These results also support the conclusion in Section 4. If p changes, h will also change. When p = 64 , the best h is 4 and 5. When p = 128 , the best h is 5 and 6. When p = 256 , the best h is 5, 6 and 7. Moreover, the performance improves as the number of data blocks p increases.

6.5. Experiment 4. Algorithm Comparison Experiment

Comparison algorithms. Algorithm comparison experiments were carried out in both the stand-alone and cluster environments. If the running time was more than 2 h or the algorithm failed to return a result, the result was not be recorded due to a lack of practical application value.
Algorithms 1 [17], 2 [16], and 3 [32] mainly adopt the strategies previously mentioned in the referred articles. We have to admit that they are not equivalent to the original methods for the following two reasons. First, our experimental environment is different from theirs. Second, one of the most important factors in buffer analysis, the buffer distance r, is not given in those references. Under these circumstances, we optimized Algorithms 1–3 to produce Optimized Algorithms 1–3 by adopting our Hilbert curve partition method. Our reasons for this optimization are listed below. First, the optimizing effect of the Hilbert curve partition is verified in Experiment 1. In addition, adding this strategy enables some algorithms to address large-scale data; for example, Algorithm 3 has not yet been tested on datasets larger than 10,000 objects, but it shows the capability to tackle L 3 as a result of our optimization. Finally, the effectiveness of other optimization methods can be seen and analyzed more clearly herein.
  • OA1. OA1 (Optimized Algorithm 1) is based on three optimization methods: split-and-conquer buffer zone generation, vertices-based task decomposition, and tree-like merger [17].
  • OA2. OA2 (Optimized Algorithm 2) adopts strategies such as vertices-based task decomposition and tree-like merger [16].
  • OA3. OA3 (Optimized Algorithm 3) uses the equivalent-arc partition strategy [32].
  • A4. A4 (Algorithm 4) is the general parallel buffer method, as depicted in Section 3 (method before optimization).
Stand-alone Settings. In the experiment, we compared the HPBM with OA 1–3, A4, and the popular GIS software programs PostGIS, QGIS and ArcGIS. The results are shown in Table 7.
Table 7. Stand-alone experiment. GIS: geographic information systems; HPBM: Hilbert curve partition buffer method.
For a small dataset such as L 1 , the optimization benefits for the HPBM and OA1–3 are conceivable. The result of OA1 is slightly inferior to that of OA2, as its buffer zone generation strategy causes a large number of extra union operation costs. Regarding OA3, its bottlenecks arise from the one-by-one merger strategy. Not surprisingly, the non-optimized method A4 is the slowest. Albeit less significantly, the efficiency of the database GIS method PostGIS exceeds that of QGIS and ArcGIS.
Compared with L 1 , L 2 contains a higher percentage of single long data. Such spatially unbalanced data make splitting single long data necessary. The HPBM adapting splitting methods bestow apparent benefits in terms of the global buffer, as analyzed in experiment 3. Compared with OA2, OA1 suffers from its own split-and-conquer drawbacks. Finally, among the three GIS software programs, PostGIS enjoys a better performance.
Not surprisingly, the analysis of L 3 is roughly the same as that of L 2 . However, we have to note that OA3 is capable of handling larger amounts of data after our Hilbert partition method is applied. However, OA3 experiences more severe congestion when more data blocks are created for this larger amount of data. Compared with the other methods, A4 requires a drastically long computation time, mainly because the spatial aggregation attribute is not taken into consideration.
In larger dataset L 4 , there are 597,829 objects. Although the computational complexity increases greatly, the HPBM outperforms the other methods by more than 50% and achieves speedups of 2.8, 2.0, 8.5, and 7.2 times that of OA1, OA2, OA3, and PostGIS, respectively. By contrast, A4, QGIS and ArcGIS are not capable of finishing the calculation or cannot do so within 2 h. Moreover, in OA3, the equivalent-arc data block partition method exhibits a limited optimization effect when addressing large amounts of data. To our surprise, PostGIS behaves even better than OA3.
Overall, the improved strategies offer more pruning and optimization opportunities.
Cluster Settings. To demonstrate the scalability of our method, the same experiments were carried out for a cluster with 100 cores. Citus Data extends PostGIS such that it supports the distributed computing. The buffer generation method in Citus Data consists of two steps. Step 1: all data are partitioned and distributed to all the slave nodes; then, the dissolved buffer zone is generated for every slave node. Step 2: all the dissolved buffer results of the slave nodes are transmitted to the master node for reunion to produce the final result. The results are shown in Table 8.
Table 8. Cluster experiment.
Regarding the small dataset L 1 , two features of the distributed parallel computing environment should be taken into consideration. The I/O expenses between different nodes cause a decrease in the computation efficiency. In addition, using too many cores results in significant task-startup overhead. Therefore, as seen from the figure, the comprehensive performances of the HPBM and OA1–3 are even a little inferior to those in the stand-alone environment, with an average drop of 13%. In contrast, Citus Data enjoys significant speedup because of the distributed F b u f f e r .
For the larger dataset L 2 , the execution efficiencies of the HPBM and OA1–3 improve significantly, outperforming those in the stand-alone environment.
Regarding L 3 , when compared with the experiment in the stand-alone environment, the performances of the HPBM, OA1, OA2, OA3, and A4 improve by 36.0%, 39.2%, 30.9%, and 9.2%, respectively. Not surprisingly, the improvement of A4 is limited since the one-by-one method is not able to make the most of the enhanced resources.
For L 4 , the HPBM achieves a 40.1% improvement in the cluster compared to in the stand-alone environment, which demonstrates the scalability of our HPBM for large-scale mass data. Likewise, OA1–3 also have better performances. Nevertheless, A4 behaves even worse as a result of the increase in inter-node I/O. Citus Data does not return the result within 2 h, as all F b u f f e r results received from the four nodes are too large and complex to be merged in the master node.

7. Conclusions and Future Work

In this study, a methodology is presented to demonstrate the use of the in-memory cluster-computing framework (the Spark platform) for generating vector buffer zones with dissolved boundaries. Dissolved vector buffer generation is a data-intensive and computationally intensive task. In addition, the current vector data collected from the real world are geographically unbalanced, which causes bottleneck problems during processing.
Part of the current algorithm design and optimization is completed mainly under the serial computing model. Nevertheless, those algorithms that run in the parallel computing environment suffer from the complexity of the geographically unbalanced big data. Moreover, scalable computing is difficult to achieve under a computing architecture such as the MPI.
Apache Spark is an open-source cluster-computing framework that provides an interface for programming entire clusters with implicit data parallelism and fault tolerance. Spark’s architectural foundation, i.e., the resilient distributed dataset (RDD), functions as a working set through the distributed shared memory, which improves the performance of data intensive computing by an order of magnitude.
Based on this architecture, we propose a cluster-computing-oriented parallel dissolved vector buffer generating algorithm, called the HPBM, that contains a Hilbert-space-filling-curve-based data partition method, a data skew and cross-boundary objects processing strategy, and a depth-given tree-like merger method. The first strategy, i.e., the Hilbert-space-filling-curve-based data partition method, solves the data skew problem and partially alleviates the task unbalance bottleneck. Then, the second cross-boundary objects processing strategy, which splits a single large geometry into smaller segments, further solves the task unbalance problem caused by those large geometries. Finally, the depth-given tree-like merger method optimizes the global dissolve step, which is the most time-consuming among the four steps.
Our experimental results show that the proposed method outperforms current popular GIS software and some existing parallel buffer algorithms. Experiment 1 shows the positive effects of the Hilbert curve partition method when applied in the parallel dissolved vector buffer generating algorithm. This result is in accordance with its demonstrated good spatial adjacent attribution. Then, experiment 2 supports the necessity of cross-grid data processing. Experiment 3 reveals different timings of the four different steps during the entire buffer generation process and clearly supports the function of the depth-given tree-like merger method. Finally, comparison experiments are conducted in both the standalone and cluster environments. Due to the combination of three optimization strategies, the HPBM performs better than the other methods.
In the future, the more efficient union operation and simplification strategies may attract more focus, as the single extremely large and complex buffer result is difficult to visualize and utilize.

Acknowledgments

This research was supported by a Chinese HTRDP(863) grant (2015AA123901).

Author Contributions

Jinxin Shen proposed the method, conducted the experiment, and drafted and modified the manuscript; Luo Chen modified the algorithms, prepared the datasets and extensively revised the manuscript; Ye Wu designed and optimized the computer programs for the experiments; and Jing Ning contributed to the experimental study and conceptual framework. All authors have read and approved the final manuscript.

Conflicts of Interest

The authors declare that they have no conflict of interest.

References

  1. Sommer, S.; WadeSutherland, T. A to Z GIS: An Illustrated Dictionary of Geographic Information Systems; Esri Press: Redlands, CA, USA, 2006. [Google Scholar]
  2. Wu, H. Problem of buffer zone construction in GIS. J. Wuhan Tech. Univ. Surv. 1997, 4, 358–366. [Google Scholar]
  3. Peng, D. An effective buffer generation method in GIS. Comput. Eng. Appl. 2004, 6, 3706–3708. [Google Scholar]
  4. Huang, Z.; Ting-Hua, A.I.; Hong, W. The buffer construction of line object based on the geometric scan idea. Acta Geod. Cartogr. Sin. 2006, 35, 171–176. [Google Scholar]
  5. Wang, J.C.; Li-Fan, L.I.; Li, L.I. Optimization of boundary tracing algorithm on buffer generation. Geogr. Geo-Inf. Sci. 2009, 25, 155–159. [Google Scholar]
  6. Feng, W.; Peng, L.; Wei, L.I. New approach for line(s)object buffer construction in GIS. Comput. Eng. Appl. 2012, 17, 80–87. [Google Scholar]
  7. Wu, H.; Gong, J.; Li, D. Buffer curve and buffer generation algorithm in aid of edge constrained triangle network. Acta Geod. Cartogr. Sin. 1999, 28, 355–359. [Google Scholar]
  8. Li, J.; Qin, Q.M.; Chen, C.; Zhao, Y.; Xie, C. A method of approximately simulating buffers based on mathematical equations for accelerating buffer analysis. J. Remote Sens. 2013, 17, 1131–1145. [Google Scholar]
  9. Sutherland, I.E.; Hodgman, G.W. Reentrant polygon clipping. Commun. ACM 1974, 17, 32–42. [Google Scholar] [CrossRef]
  10. Weiler, K.; Atherton, P. Hidden surface removal using polygon area sorting. Acm Siggraph Comput. Graph. 1977, 11, 214–222. [Google Scholar] [CrossRef]
  11. Liang, Y.D.; Barsky, B.A. An analysis and algorithm for polygon clipping. Commun. ACM 1983, 26, 868–877. [Google Scholar] [CrossRef]
  12. Vatti, B.R. A Generic Solution to polygon clipping. Commun. ACM 1992, 35, 56–63. [Google Scholar] [CrossRef]
  13. Greiner, G.; Hormann, K. Efficient clipping of arbitrary polygons. ACM Trans. Graph. 1998, 17, 71–83. [Google Scholar] [CrossRef]
  14. Yao, Y.; Gao, J.; Meng, L.; Deng, S. Parallel computing of buffer analysis based on grid computing. Geospat. Inf. 2007, 5, 98–101. [Google Scholar]
  15. Pang, L.; Li, G.; Yan, Y.; Ma, Y. Research on parallel buffer analysis with grided based HPC technology. In Proceedings of the IEEE International Geoscience and Remote Sensing Symposium, Cape Town, South Africa, 12–17 July 2009; pp. 200–203. [Google Scholar]
  16. Huang, X.; Pan, T.; Ruan, H.; Fu, H.; Yang, G. Parallel buffer generation algorithm for GIS. J. Geol. Geosci. 2013, 2. [Google Scholar] [CrossRef]
  17. Fan, J.; Min, J.; Guomin, G.U.; Sun, Y. Optimization approaches to MPI and area merging-based parallel buffer algorithm. Bol. Cienc. Geodesicas 2014, 20, 237–256. [Google Scholar] [CrossRef]
  18. Aji, A.; Wang, F.; Vo, H.; Lee, R.; Liu, Q. Hadoop-GIS: A high performance spatial data warehousing system over MapReduce. Proc. VLDB Endow. 2013, 6, 1009–1020. [Google Scholar] [CrossRef]
  19. Eldawy, A.; Mokbel, M.F. SpatialHadoop: A MapReduce framework for spatial data. In Proceedings of the IEEE International Conference on Data Engineering, Helsinki, Finland, 16–20 May 2016; pp. 1352–1363. [Google Scholar]
  20. You, S.; Zhang, J.; Gruenwald, L. Large-scale spatial join query processing in cloud. In Proceedings of the IEEE International Conference on Data Engineering Workshops, Seoul, Korea, 13–17 April 2015; pp. 34–41. [Google Scholar]
  21. Yu, J.; Wu, J.; Sarwat, M. GeoSpark: A cluster computing framework for processing large-scale spatial data. In Proceedings of the ACM Sigspatial International Conference, Seattle, WA, USA, 3–6 November 2015; pp. 1–4. [Google Scholar]
  22. Tang, M.; Yu, Y.; Malluhi, Q.M.; Ouzzani, M. LocationSpark: A distributed in-memory data management system for big spatial data. Proc. VLDB Endow. 2016, 9, 1565–1568. [Google Scholar] [CrossRef]
  23. Xie, D.; Li, F.; Yao, B.; Li, G.; Zhou, L.; Guo, M. Simba: Efficient in-Memory spatial analytics. In Proceedings of the ACM SIGMOD International Conference on Management of Data, San Francisco, CA, USA, 26 June–1 July 2016; pp. 1071–1085. [Google Scholar]
  24. Jin, F.; Feng, Z.; Zhenhong, D.U.; Liu, R.; Li, R. Spatial overlay analysis of land use vector data based on Spark. J. Zhejiang Univ. 2016, 41, 40–44. [Google Scholar]
  25. Du, Z.; Zhao, X.; Zhou, J.; Zhang, F.; Liu, R. An Effective high-performance multiway spatial join algorithm with Spark. Int. J. Geo-Inf. 2017, 6, 96. [Google Scholar] [CrossRef]
  26. Ren, Y.; Yang, C.; Yu, Z.; Wang, P. A way to speed up buffer generalization by Douglas-Peucker algorithm. In Proceedings of the IEEE International Geoscience and Remote Sensing Symposium, Anchorage, AK, USA, 20–24 September 2004; pp. 2916–2919. [Google Scholar]
  27. LI, K.; Lin, D.U. An Algorithm of Buffer Zones Based on Algorithm of Dialation. J. Inst. Surv. Mapp. 2005, 3, 229–231. [Google Scholar]
  28. Žalik, B.; Zadravec, M.; Clapworthy, G. Construction of a non-symmetric geometric buffer from a set of line segments. Comput. Geosci. 2003, 1, 53–63. [Google Scholar] [CrossRef]
  29. Bhatia, S.; Vira, V.; Choksi Deepak, V.; Venkatachalam, P. An algorithm for generating geometric buffers for vector feature layers. Geo-Spat. Inf. Sci. 2013, 2, 130–138. [Google Scholar] [CrossRef]
  30. Emre, E.; Kilinc, I.; Gezici, G.; Baykal, B. A buffer zone computation algorithm for corridor rendering in GIS. In Proceedings of the International Symposium on Computer and Information Sciences, Guzelyurt, Cyprus, 14–16 September 2009; pp. 432–435. [Google Scholar]
  31. Clarke, K.C. Geocomputation’s future at the extremes: High performance computing and nanoclients. Parallel Comput. 2003, 10, 1281–1295. [Google Scholar] [CrossRef]
  32. Wang, T.; Zhao, L.; Wang, L.; Chen, L.; Cao, Q. Parallel research and opitmization of buffer algorithm based on equivalent arc partition. Remote Sens. Inf. 2016, 31, 147–152. [Google Scholar]
  33. Fan, J. The Key Techniques of Cloud GIS Based on Hadoop. Ph.D. Thesis, The PLA Information Engineering University, Zhengzhou, China, 2013. [Google Scholar]
  34. GitHub. Available online: https://github.com/harsha2010/magellan (accessed on 25 June 2017).
  35. Zaharia, M.; Chowdhury, M.; Franklin, M.J.; Shenker, S.; Stoicxa, I. Spark: Cluster computing with working sets. In Proceedings of the Usenix Conference on Hot Topics in Cloud Computing, Boston, MA, USA, 22–25 June 2010. [Google Scholar]
  36. Moon, B.; Jagadish, H.V.; Faloutsos, C.; Saltz, J.H. Analysis of the clustering properties of Hilbert space-filling curve. IEEE Trans. Knowl. Data Eng. 2001, 13, 124–141. [Google Scholar] [CrossRef]
  37. Faloutsos, C. Fractals for secondary key retrieval. In Proceedings of the Eighth ACM Sigact-Sigmod-Sigart Symposium on Principles of Database Systems, Philadelphia, PA, USA, 29–31 March 1989; pp. 247–252. [Google Scholar]
  38. Eldawy, A.; Alarabi, L.; Mokbel, M.F. Spatial partitioning techniques in SpatialHadoop. Proc. VLDB Endow. 2015, 8, 1602–1605. [Google Scholar] [CrossRef]

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.