DBSCAN-PSM: an improvement method of DBSCAN algorithm on Spark

DBSCAN is a density-based data clustering algorithm; in image processing, data mining, machine learning and other fields are widely used. With the increasing of the size of clusters, the parallel DBSCAN algorithm is widely used. However, we consider current partitioning method of DBSCAN is too simple and steps of GETNEIGHBORS query repeatedly access the dataset on Spark. So we proposed DBSCAN-PSM which applies new data partitioning and merging method. In the first stage of our method, we import the KD-tree, combine the partitioning and GETNEIGHBORS query, reduce the number of access to the dataset and decrease the influence of I/O in the algorithm. In the second stage of our method, we use the feature of points in merging so as to avoid the time costing of the global label. Experimental results showed that our new method can improve the parallel efficiency and the clustering algorithm performance.