EDBT 2026 Demo / reviewers in the wild / expert
Zhenying He
dblp:23/6341
· DBLP profile ↗
69ranked-venue papers in the field
2as first author
44since 2021 · last 2026
0000-0002-2926-4814ORCID · corroborated
Domains — venue-derived; a paper can count in several
Database Systems & Data Management · 59 (1 first)Information Retrieval & Web Search · 4Other / Interdisciplinary · 4Data Mining & Knowledge Discovery · 1Knowledge Engineering, Semantic Web & Information Systems · 1 (1 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | PyraTSG: A Hierarchical Scale Transition Framework for Dependency Modeling in Multivariate Time Series Forecasting
Yuheng Dai, Haoran Xiong, Hailong Gu, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (4) | 4 |
| 2026 | Cart: A Future-Oriented Text Impacts Alignment Framework for Time Series Forecasting
Hailong Gu, Haoran Xiong, Keyue Huang, Yuheng Dai, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (4) | 6 |
| 2026 | TGA: Efficient Trajectory Approximate Top-k Query with High Precision
Kai Zhang 0006, Yinan Jing, Zhenying He, Xiaoyang Sean Wang |
DASFAA (6) | 4 |
| 2026 | GeoPhrase Tree: An Efficient Index for Frequent Phrase Query over Spatio-Temporal Ranges
Chenning Wu, Chang Lu 0004, Yinan Jing, Zhenying He, Xiaoyang Sean Wang |
DASFAA (1) | 4 |
| 2026 | CYANSQL: Unlock the Power of NL2SQL Via Clustering-Based Test-Time Scaling
Haoyu Qin, Tonghui Ren, Zhenying He, Xiaoyang Sean Wang, Jiashu Xing, Yanghuan Ye, Shifei Huang |
ICDE | 3 |
| 2026 | UTune: Towards Uncertainty-Aware Online Index TuningabstractThere have been a flurry of recent proposals on learned benefit estimators for index tuning. Although these learned estimators show promising improvement over what-if query optimizer calls in terms of the accuracy of estimated index benefit, they face significant limitations when applied to online index tuning, an arguably more common and more challenging scenario in real-world applications. There are two major challenges for learned index benefit estimators in online tuning: (1) limited amount of query execution feedback that can be used to train the models, and (2) constant coming of new unseen queries due to workload drifts. The combination of the two hinders the generalization capability of existing learned index benefit estimators. To overcome these challenges, we present UTune, an uncertainty-aware online index tuning framework that employs operator-level learned models with improved generalization over unseen queries. At the core of UTune is an uncertainty quantification mechanism that characterizes the inherent uncertainty of the operator-level learned models given limited online execution feedback. We further integrate uncertainty information into index selection and configuration enumeration, the key component of any index tuner, by developing a new variant of the classic $ε$-greedy search strategy with uncertainty-weighted index benefits. Experimental evaluation shows that UTune not only significantly improves the workload execution time compared to state-of-the-art online index tuners but also reduces the index exploration overhead, resulting in faster convergence when the workload is relatively stable. Chenning Wu, Wentao Wu 0001, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
ICDE | 5 |
| 2026 | A Dual-Layer End-to-End Cost Estimation Model for LSM-Tree-Based Database SystemsabstractIn database systems, cost estimation for query plans has a variety of uses, including query optimization, resource management, load balancing, query scheduling, performance monitoring, and automated maintenance. Existing methods mainly targeted B-tree-based systems, where costs and cardinality are highly correlated. However, LSM-Trees, due to their unique storage structure, violate the assumptions of existing learning methods, causing cardinality to be irrelevant to cost estimation. In addition, the constantly changing data layout leads to severe data drifts when updating data, preventing current learning based models from accurately estimating costs in an agile way. To address these challenges, we propose a dual-layer end-to end cost estimation model for LSM-Tree-based database systems. This model treats cost estimation as a regression problem and comprises two layers: the storage layer and the query plan layer. The storage layer employs lightweight neural networks to leverage data distribution, provide information to the query plan layer, and address the challenges posed by data drift in LSM Trees. The query plan layer uses the Transformer framework and incorporates structural information to learn the representation of plans. This dual-layer architecture allows our model to effectively embed storage information and query plan tree details. The results show that our proposed model achieves state-of-the art cost estimation accuracy for database systems based on LSM-Trees. Additionally, our architecture significantly reduces the model's updating costs, ensuring robust performance amid frequent data drifts. Yinan Jing, Songli Wang, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2025 | StreamingRT: Stream KNN Join with Ray Tracing CoreabstractEfficient processing of k-nearest neighbor (kNN) join operations on streaming data is critical for applications in location-aware services, recommendation systems, and spatial analytics. To serve users in real time, these applications generally require a high-performance kNN join on continuously changing streaming data. This paper introduces StreamingRT, a framework that leverages ray tracing (RT) cores in GPUs to accelerate stream kNN joins in 3D space. By modeling stream data into large primitives and transferring queries into short rays, StreamingRT transforms the kNN join problem into an efficient ray tracing task. To address the ray tracing index updating overhead on stream data, we propose two key techniques, i.e., boundary-extended point partitioning and query-driven BVH lazy updating. Moreover, we also adopt multi-BVH coprocessing and CPU-GPU pipelining to improve performance. These techniques enable efficient stream kNN join on ray tracing cores, delivering unprecedented performance improvement. Experimental evaluations show that StreamingRT can achieve up to 2.2× and 5.8× speedup over the state-of-the-art approach on RT cores and CUDA cores, respectively. Shixi Yang, Kai Zhang 0006, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
CIKM | 5 |
| 2025 | FHGE: A Fast Heterogeneous Graph Embedding with Ad-Hoc Meta-Paths
Xuqi Mao, Zhenying He, Xiaoyang Sean Wang |
DASFAA (3) | 2 |
| 2025 | MAPN: Enhancing Heterogeneous Sparse Graph Representation by Mamba-Based Asynchronous Aggregation
Xuqi Mao, Zhenying He, Xiaoyang Sean Wang |
DASFAA (1) | 2 |
| 2025 | Grounding Natural Language to SQL Translation with Data-Based Self-ExplanationsabstractNatural Language Interfaces for Databases em-power non-technical users to interact with data using natural language (NL). Advanced approaches, utilizing either neural sequence-to-sequence or more recent sophisticated large-scale language models, typically implement NL to SQL (NL2SQL) translation in an end-to-end fashion. However, like humans, these end-to-end translation models may not always generate the best SQL output on their first try. In this paper, we propose Cyclesql, an iterative framework designed for end-to-end translation models to autonomously generate the best output through self-evaluation. The main idea of CyClesqlis to introduce data-grounded NL explanations of query results as self-provided feedback, and use the feedback to validate the correctness of the translation iteratively, hence improving the overall translation accuracy. Extensive experiments, including quantitative and qualitative evaluations, are conducted to study Cyclesql by applying it to seven existing translation models on five widely used benchmarks. The results show that 1) the feedback loop introduced in Cyclesql can consistently improve the performance of existing models, and in particular, by applying Cyclesql to Resdsql, obtains a translation accuracy of 82.0% (+2.6 %) on the validation set, and 81.6 % (+3.2 %) on the test set of Spider benchmark; 2) the generated NL explanations can also provide insightful information for users, aiding in the comprehension of translation results and consequently enhancing the interpretability of NL2SQL translation11Our code is available at https://github.com/Kaimary/CycleSQL.. Yuankai Fan, Tonghui Ren, Can Huang 0003, Zhenying He, Xiaoyang Sean Wang |
ICDE | 4 |
| 2025 | ARC: Approximate Relevant Clip Query in Large-Scale Video RepositoriesabstractThe exponential growth of video data highlights the necessity of exploring large-scale video repositories to extract valuable insights. Querying video clips based on content and temporal attributes is a critical task. However, existing solutions face two major challenges: insufficient flexibility in handling complex query conditions involving statistical reasoning and temporal constraints, and low efficiency under high query quality requirements and resource constraints. Yue Chen 0029, Yinan Jing, Ziqiang Yu, Xiaohui Yu 0001, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
SIGIR | 5 |
| 2025 | FAAQP: Fast and Accurate Approximate Query Processing based on Bitmap-augmented Sum-Product NetworkabstractFor interactive data exploration, approximate query processing (AQP) is a useful approach that provides a timely response by trading query accuracy. To reduce query latency, existing AQP methods use samples or models rather than the underlying data to answer queries. However, it is difficult to achieve satisfactory results in terms of query accuracy and query latency simultaneously with these methods. For the sample-based methods, this is because the more accurate the query results are, the more samples are needed and the more time cost is required for processing. The model-based methods have lower query latency, but they cannot return the approximate results with high accuracy because the existing models cannot capture the complex data distribution accurately. In this paper, we propose a fast and accurate AQP method FAAQP . In FAAQP, we propose a novel unsupervised model bitmap-augmented sum-product network (BSPN) that combines the advantages of the sum-product network with bitmaps to capture the characteristics of data distribution more accurately. Then, we propose a budget-aware BSPN construction method that builds BSPN models with the maximum query accuracy for the given storage budget. Furthermore, to reduce the query latency of FAAQP, we propose a bitmap merging strategy that makes a trade-off between query accuracy and query latency. Experimental results on real-world and synthetic datasets show that FAAQP outperforms the state-of-the-art AQP methods and achieves 1.3×-9.0× improvements in query accuracy with a low query latency. Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
Proc. ACM Manag. Data | 3 |
| 2025 | DRPQ: Distributed Evaluation of Regular Path Queries On Streaming GraphsabstractPersistent Regular Path Query (RPQ) on streaming graphs is widely applicable to many online analysis applications. Existing research primarily focuses on the single-worker scenario, while scaling out to distributed RPQ processing on multiple workers is desirable when facing a high workload. Existing distributed solutions are designed for general streaming queries, and various bottlenecks exist that significantly limit the performance when performing streaming RPQ evaluation. The challenge is how to execute queries with multiple workers while introducing limited overhead and ensuring sufficient speedup as the number of workers increases. This paper introduces a distributed processing strategy called DRPQ by carefully dividing a query into multiple partially matched query tasks. The idea is to form query tasks based on initial matches of the graph against the given regular expression, and to dynamically distribute these tasks to workers to balance their workloads. To reduce redundant evaluation across different workers, a grouping method is proposed to find query tasks that are likely to share evaluation processes, and send them to the same workers. Extensive experiments on two real-world graph datasets demonstrate that DRPQ is significantly more efficient and scalable than existing distributed solutions. Furthermore, the proposed grouping method proves to be particularly effective, nearly doubling the throughput in most cases. Kai Zhang 0006, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
Proc. ACM Manag. Data | 3 |
| 2025 | The Power of Constraints in Natural Language to SQL TranslationabstractCurrent large language model (LLM)-based Natural Language to SQL (NL2SQL) approaches typically rely on the database schema and partial data values for the translation. These approaches are unable to use sufficient data for accurate database understanding due to limitations in data selection methods, and they cannot input the entire database due to the limited context window sizes of LLMs. This insufficient data integration may result in an incomplete understanding of the database, leading to semantically incorrect SQL generation. In this paper, we introduce REDSQL, a novel plug-and-play framework that refines the predicted SQL by utilizing the entire database in the refinement process. The core idea of REDSQL is to enhance SQL refinement by identifying potential errors based on the database content, which is achieved by applying constraints on the input relations of query operations. LLMs can refine the SQL using SQL-related information extracted by REDSQL, which provides concise and informative insights into the database. Additionally, REDSQL enhances schema semantics by integrating data profiling for more effective database utilization. Our experiments demonstrate that REDSQL consistently improves the performance of existing NL2SQL approaches across five benchmarks. Specifically, REDSQL elevates the accuracy of CODES to 67.3% (+8.8%) and PURPLE to 67.7% (+11.1%) on the Bird benchmark. Tonghui Ren, Chen Ke, Yuankai Fan, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
Proc. VLDB Endow. | 5 |
| 2025 | Genie: A Lightweight Serverless Infrastructure for In-Memory Key-Value Caching With Fine-Grained and Prompt ElasticityabstractAn increasing number of web applications require cloud in-memory key-value stores to minimize latency and achieve higher throughput. They generally have diverse characteristics and constantly changing traffic volumes, which require different computational and memory resources. A serverless in-memory key-value store characterized by elastic resource allocation and pay-as-you-go billing could satisfy the requirements of diverse and dynamic workloads. However, we find current serverless IMKVs fail to achieve fine-grained and prompt resource elasticity due to the limitations of their infrastructures. This paper proposes Genie, a lightweight serverless infrastructure for in-memory key-value caching with fine-grained and immediate elasticity. In Genie, a novel approach is adopted to enable dynamic and independent resource allocation to multiple tenants. It processes all arrived requests and estimates the vCPU consumption with a lightweight machine-learning approach for fine-grained billing. Moreover, Genie estimates the working set and dynamically resizes the allocated memory for hit ratio requirements. Evaluation results show that CPU estimation could be achieved every 100 microseconds without impacting system performance, and memory capacity could be adjusted by megabytes within seconds. The holistic design incurs 1%-2% performance degradation compared to our baseline. Moreover, Genie achieves an average of 58.3% CPU and 49.9% memory savings compared to AsparaDB for Memcache. Huijuan Xiao, Shixi Yang, Kai Zhang 0006, Yinan Jing, Zhenying He, Xiaoyang Sean Wang |
IEEE Trans. Knowl. Data Eng. | 5 |
| 2024 | ACEKV: An In-Memory Key-Value Store with Optimized Cuckoo Insertion
Huijuan Xiao, Wenbin Bao, Kai Zhang 0006, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
DASFAA (1) | 4 |
| 2024 | SmartInsight: Learning-Based Automatic Insight Discovery for Exploratory Data Analysis
Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Shiwei Shi, Xiaoyang Sean Wang |
DASFAA (4) | 4 |
| 2024 | Metasql: A Generate-Then-Rank Framework for Natural Language to SQL TranslationabstractThe Natural Language Interface to Databases (NLIDB) empowers non-technical users with database access through intuitive natural language (NL) interactions. Advanced approaches, utilizing neural sequence-to-sequence models or large-scale language models, typically employ auto-regressive decoding to generate unique SQL queries sequentially. While these translation models have greatly improved the overall translation accuracy, surpassing 70% on NLIDB benchmarks, the use of auto-regressive decoding to generate single SQL queries may result in sub-optimal outputs, potentially leading to erroneous translations. In this paper, we propose Metasql, a unified generate-then-rank framework that can be flexibly incorporated with existing NLIDBs to consistently improve their translation accuracy. Metasql introduces query metadata to control the generation of better SQL query candidates and uses learning-to-rank algorithms to retrieve globally optimized queries. Specifically, Metasql first breaks down the meaning of the given NL query into a set of possible query metadata, representing the basic concepts of the semantics. These metadata are then used as language constraints to steer the underlying translation model toward generating a set of candidate SQL queries. Finally, Metasql ranks the candidates to identify the best matching one for the given NL query. Extensive experiments are performed to study Metasql on two public NLIDB benchmarks. The results show that the performance of the translation models can be effectively improved using Metasql. In particular, applying Metasql to the published Lgesql model obtains a translation accuracy of 77.4 % on the validation set and 72.3 % on the test set of the Spider benchmark, outperforming the baseline by 2.3% and 0.3%, respectively. Moreover, applying Metasql to GpT-4 achieves translation accuracies of 68.6%, 42.0%, and 17.6 % on the three real-world complex scientific databases of Sciencebenchmark, respectively. The code for Metasql is available at https://github.com/Kaimary/MetaSQL. Yuankai Fan, Zhenying He, Tonghui Ren, Can Huang 0003, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
ICDE | 2 |
| 2024 | PURPLE: Making a Large Language Model a Better SQL WriterabstractLarge Language Model (LLM) techniques play an increasingly important role in Natural Language to SQL (NL2SQL) translation. LLMs trained by extensive corpora have strong natural language understanding and basic SQL generation abilities without additional tuning specific to NL2SQL tasks. Existing LLMs-based NL2SQL approaches try to improve the translation by enhancing the LLMs with an emphasis on user intention understanding. However, LLMs sometimes fail to generate appropriate SQL due to their lack of knowledge in organizing complex logical operator composition. A promising method is to input the LLMs with demonstrations, which include known NL2SQL translations from various databases. LLMs can learn to organize operator compositions from the input demonstrations for the given task. In this paper, we propose PURPLE (Pre-trained models Utilized to Retrieve Prompts for Logical Enhancement), which improves accuracy by retrieving demonstrations containing the requisite logical operator composition for the NL2SQL task on hand, thereby guiding LLMs to produce better SQL translation. PURPLE achieves a new state-of-the-art performance of 80.5% exact-set match accuracy and 87.8% execution match accuracy on the validation set of the popular NL2SQL benchmark Spider. PURPLE maintains high accuracy across diverse benchmarks, budgetary constraints, and various LLMs, showing robustness and cost-effectiveness. Tonghui Ren, Yuankai Fan, Zhenying He, Ren Huang, Jiaqi Dai, Can Huang 0003, Yinan Jing, Kai Zhang 0006, Yifan Yang 0001, Xiaoyang Sean Wang |
ICDE | 3 |
| 2024 | Akane: Perplexity-Guided Time Series Data CleaningabstractDirty data are prevalent in time series, such as energy consumption or stock data. Existing data cleaning algorithms present shortcomings in dirty data identification and unsatisfactory cleaning decisions. To handle these drawbacks, we leverage inherent recurrent patterns in time series, analogize them as fixed combinations in textual data, and incorporate the concept of perplexity. The cleaning problem is thus transformed to minimize the perplexity of the time series under a given cleaning cost, and we design a four-phase algorithmic framework to tackle this problem. To ensure the framework's feasibility, we also conduct a brief analysis of the impact of dirty data and devise an automatic budget selection strategy. Moreover, to make it more generic, we additionally introduce advanced solutions, including an ameliorative probability calculation method grounded in the homomorphic pattern aggregation and a greedy-based heuristic algorithm for resource savings. Experiments on 12 real-world datasets demonstrate the superiority of our methods. Haoran Xiong, Zhenying He, Peng Wang 0027, Chen Wang 0018, Xiaoyang Sean Wang |
Proc. ACM Manag. Data | 3 |
| 2024 | MWP: Multi-Window Parallel Evaluation of Regular Path Queries on Streaming GraphsabstractA persistent Regular Path Query (RPQ) on a streaming graph is to continuously find every pair of vertices that are connected by a path in the graph within a sliding window, such that the edge label sequence of this path matches a given regular expression. The existing RPQ evaluation algorithm in the literature incrementally maintains a set of spanning-tree-like data structures to quickly form query results and to avoid reprocessing edges that are shared by multiple sliding windows. This approach allows parallel processing of the graph edges within a sliding window but requires a blocking expiration phase between sliding windows to remove the old edges. This blocking phase can significantly degrade the query performance, especially when the edges arrive quickly and the sliding windows overlap significantly. This paper presents a new RPQ evaluation strategy called Multi-Window Parallel (MWP) method leveraging a new data structure called Timestamped Rooted Digraph (TRD). The novel idea is to incrementally maintain TRDs for the quick formulation of query results, like the aforementioned spanning trees, but simultaneously contain needed information for multiple sliding windows. MWP eliminates the forced blocking expiration phase. Only when memory runs low, a quick "dirty garbage collection" (DGC) process is done to remove some unneeded edges and nodes on TRDs, without incurring large costs. Extensive experiments on real graph datasets show that MWP significantly outperforms the existing algorithm in terms of throughput, tail latency, and scalability, and that DGC provides an effective solution for releasing memory with minimum impact. Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
Proc. ACM Manag. Data | 2 |
| 2024 | Oasis: An Optimal Disjoint Segmented Learned Range FilterabstractThe learning-enhanced data structure has inspired the development of the range filter, bringing significantly better false positive rate (FPR) than traditional non-learned range filters. Its core idea is to employ piece-wise linear functions that uniformly map the entire key space into a bitmap sequentially. Nonetheless, such uniform mapping can be space-ineffective, impacting FPRs. This paper introduces Oasis, a novel learned range filter that divides the key space into disjointed intervals by excluding large empty ranges explicitly and optimally maps those unpruned intervals into a compressed bitmap. The configuration optimality in Oasis is guaranteed by a careful theoretical analysis. To enhance the versatility of Oasis, we further propose Oasis+, which integrates the design space of both learned and non-learned filters, delivering robust performance across a wide range of workloads. We evaluate the performance of both Oasis and Oasis+ when integrated into the key-value system RocksDB, using a diverse set of real-world and synthetic datasets and workloads. In RocksDB, Oasis and Oasis+ improve the performance by up to 1.4× and 6.2× when compared to state-of-the-art learned and non-learned range filters. Guanduo Chen, Meng Li 0010, Siqiang Luo, Zhenying He |
Proc. VLDB Endow. | 4 |
| 2024 | RoarGraph: A Projected Bipartite Graph for Efficient Cross-Modal Approximate Nearest Neighbor SearchabstractApproximate Nearest Neighbor Search (ANNS) is a fundamental and critical component in many applications, including recommendation systems and large language model-based applications. With the advancement of multimodal neural models, which transform data from different modalities into a shared high-dimensional space as feature vectors, cross-modal ANNS aims to use the data vector from one modality (e.g., texts) as the query to retrieve the most similar items from another (e.g., images or videos). However, there is an inherent distribution gap between embeddings from different modalities, and cross-modal queries become Out-of-Distribution (OOD) to the base data. Consequently, state-of-the-art ANNS approaches suffer poor performance for OOD workloads. In this paper, we quantitatively analyze the properties of the OOD workloads to gain an understanding of their ANNS efficiency. Unlike single-modal workloads, we reveal OOD queries spatially deviate from base data, and the k-nearest neighbors of an OOD query are distant from each other in the embedding space. The property breaks the assumptions of existing ANNS approaches and mismatches their design for efficient search. With the insights from the OOD workloads, we propose p Ro jected bipartite Graph ( RoarGraph ), an efficient ANNS graph index that is built under the guidance of query distribution. Extensive experiments show that RoarGraph significantly outperforms state-of-the-art approaches on modern cross-modal datasets, achieving up to 3.56× faster search speed at a 90% recall rate for OOD queries. Kai Zhang 0006, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
Proc. VLDB Endow. | 3 |
| 2024 | RTScan: Efficient Scan with Ray Tracing CoresabstractIndexing is a core technique for accelerating predicate evaluation in databases. After many years of effort, the indexing performance has reached its peak on the existing hardware infrastructure. We propose to use ray tracing (RT) cores to move the indexing performance and efficiency to another level by addressing the following technical challenges: (1) the lack of an efficient mapping of predicate evaluation to a ray tracing job and (2) the poor performance by the heavy and imbalanced ray load when processing skewed datasets. These challenges set obstacles to effectively exploiting RT cores for predicate evaluation. In this paper, we propose RTScan, an approach that leverages RT cores to accelerate index scans. RTScan transforms the evaluation of conjunctive predicates into an efficient ray tracing job in a three-dimensional space. A set of techniques are designed in RTScan, i.e., Uniform Encoding, Data Sieving, and Matrix RT Refine, which significantly enhances the parallelism of scans on RT cores while lightening and balancing the ray load. With the proposed techniques, RTScan achieves high performance for datasets with either uniform or skewed distributions and queries with different selectivities. Extensive evaluations demonstrate that RTScan enhances the scan performance on RT cores by five orders of magnitude and outperforms the state-of-the-art approach on CPU by up to 4.6×. Yangming Lv, Kai Zhang 0006, Xiaodong Zhang 0001, Rubao Lee, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
Proc. VLDB Endow. | 6 |
| 2024 | CIVET: Exploring Compact Index for Variable-Length Subsequence Matching on Time SeriesabstractNowadays the demands for managing and analyzing substantially increasing collections of time series are becoming more challenging. Subsequence matching, as a core subroutine in time series analysis, has drawn significant research attention. Most of the previous works only focus on matching the subsequences with equal length to the query. However, many scenarios require support for efficient variable-length subsequence matching. In this paper, we propose a new representation, Uniform Piecewise Aggregate Approximation (UPAA) with the capability of aligning features for variable-length time series while remaining the lower bounding property. Based on UPAA, we present a compact index structure by grouping adjacent subsequences and similar subsequences respectively. Moreover, we propose an index pruning algorithm and a data filtering strategy to efficiently support variable-length subsequence matching without false dismissals. The experiments conducted on both real and synthetic datasets demonstrate that our approach achieves considerably better efficiency, scalability, and effectiveness than existing approaches. Haoran Xiong, Hang Zhang 0032, Zeyu Wang 0007, Zhenying He, Peng Wang 0027, Xiaoyang Sean Wang |
Proc. VLDB Endow. | 4 |
| 2024 | SDEcho: Efficient Explanation of Aggregated Sequence DifferenceabstractUnderstanding the reasons behind differences between aggregated sequences derived from SQL queries is crucial for data scientists. However, existing methods often suffer from being labor-intensive, lacking scalability, providing only approximate solutions, and inadequately supporting sequence difference explanations. In response, we introduce SDEcho, a novel framework designed to automate the explanation searching for sequence differences in high-dimensional and high-volume datasets. SDEcho utilizes advanced pruning techniques, considering pattern, order, and dimension perspectives, as well as their interactions, to prune the entire explanation space while maintaining explanations accurate and concise. This hybrid pruning approach significantly accelerates the explanation searching process, making SDEcho a valuable tool for data analysis tasks. Extensive experiments on synthetic and real-world datasets, along with a case study, demonstrate that SDEcho outperforms existing methods in terms of both effectiveness and efficiency. Yinan Jing, Zhenying He, Yuxin Che, Haoran Xiong, Kai Zhang 0006, Xiaoyang Sean Wang |
Proc. VLDB Endow. | 5 |
| 2024 | Learned Optimizer for Online Approximate Query Processing in Data ExplorationabstractIn the interactive data exploration, approximate query processing (AQP) can be used to quickly return query results at the cost of accuracy. For online AQP, the sampler can be treated as an operator in the query plan. During the query optimization for AQP, heuristic rules are usually used to guide the sampler push-down. However, due to the complexity and changes of data distribution, the heuristic rule-based optimization methods cannot meet the users’ query accuracy requirements. In this article, we propose a learning-based query optimization method for online AQP. We first introduce the weak equivalence concept and propose a series of push-down rules to guide the sampler push-down during the query optimization. Then, to enable more queries to meet the users’ query accuracy requirements, we propose a deep learning model to further optimize the query plan. By using this model during each push-down process of the sampler, we try to avoid the negative effect of inappropriate sampler push-down on query accuracy, especially when there is an inconsistency between the underlying and intermediate data distribution. Extensive experiments show that the method proposed in this paper can outperform the state-of-the-art online sampling-based AQP method by 1.2×−7.9× in query accuracy. Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2024 | Static and Streaming Discovery of Maximal Linear Representation Between Time SeriesabstractNowadays, many applications, like the Internet of Things and Industrial Internet, collect data points from sensors continuously to form long time series. Finding the correlation between time series is a fundamental task for many time series mining problems. However, it is meaningless to directly measure the global correlation between two long time series due to concept shift or noise data. To tackle this challenge, in this paper, we formulate the novel problem of finding maximal significant linear representation. The major idea is that, given two time series and a quality constraint, we want to find the longest gapped time interval on which a time series can be linearly represented by the other within the quality constraint requirement. We develop both exact and approximate algorithms (with approximation quality guarantees), which exploit a novel representation of the linear correlation between time series on subsequences, and transform the problem into a geometric search. Moreover, we propose an online approach to find this correlation in each sliding window incrementally for the streaming data. We present a systematic empirical study to verify the efficiency and effectiveness of our approaches. Zeyu Wang 0007, Zhenying He, Peng Wang 0027, Yang Wang 0041, Wei Wang 0009 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2024 | RTOD: Efficient Outlier Detection With Ray Tracing CoresabstractOutlier detection in data streams is a critical component in numerous applications, such as network intrusion detection, financial fraud detection, and public health. To detect abnormal behaviors in real-time, these applications generally have stringent requirements for the performance of outlier detection. This paper proposes RTOD, a high-performance outlier detection approach that utilizes RT cores in modern GPUs for acceleration. RTOD transforms distance-based outlier detection in data streams into an efficient ray tracing job. By creating spheres centered at points within a window and casting rays from each point, RTOD identifies the outlier points according to the number of intersections between rays and spheres. Besides, we propose two optimization techniques, namely Grid Filtering and Ray-BVH Inversion, to further accelerate the detection efficiency of RT cores. Experimental results show that RTOD achieves up to 9.9× speedups over existing start-of-the-art outlier detection algorithms. Kai Zhang 0006, Yangming Lv, Yinglong Wang 0001, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
IEEE Trans. Knowl. Data Eng. | 6 |
| 2024 | Learning-Based Sample Tuning for Approximate Query Processing in Interactive Data ExplorationabstractFor interactive data exploration, approximate query processing (AQP) is a useful approach that usually uses samples to provide a timely response for queries by trading query accuracy. Existing AQP systems often materialize samples in the memory for reuse to speed up query processing. How to tune the samples according to the workload is one of the key problems in AQP. However, since the data exploration workload is so complex that it cannot be accurately predicted, existing sample tuning approaches cannot adapt to the changing workload very well. To address this problem, this paper proposes a deep reinforcement learning-based sample tuner,RL-STuner. When tuning samples,RL-STunerconsiders the workload changes from a global perspective and uses a Deep Q-learning Network (DQN) model to select an optimal sample set that has the maximum utility for the current workload. In addition, this paper proposes a set of optimization mechanisms to reduce the sample tuning cost. Experimental results on both real-world and synthetic datasets show thatRL-STuneroutperforms the existing sample tuning approaches and achieves 1.6×-5.2× improvements on query accuracy with a low tuning cost. Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2023 | RpDelta: Supporting UCR-Suite on Multi-versioning Time Series Data
Zhenying He, Xiaoyang Sean Wang, Yingze Song, Clement Liu |
DASFAA (1) | 3 |
| 2023 | Gar: A Generate-and-Rank Approach for Natural Language to SQL TranslationabstractA Natural Language (NL) Interface to Databases (NLIDB) aims to help end-users access databases. State-of-the-art approaches primarily construct language translation models to convert NL queries to SQL queries. While these models exhibit good performance on NLIDB benchmarks, the translation accuracy seems to have stalled at between 70%-75%, and most erroneous translations happen with complex queries that require an understanding of the structure and semantics specific to a database. This paper proposes a Generate-And-Rank approach called Gar. Gar assumes that a set of sample SQL queries is given to represent the possible user-intended queries to the database. In order to provide a broad coverage, akin to avoiding over-fitting, Gar extracts the basic components from the sample set to form the basic building blocks to generate a set of generalized SQL queries. By leveraging a simple rule-based SQL to NL technique, a less natural NL expression called a dialect expression for each sample and generalized SQL query is obtained. Finally, a learning-to-rank method is used for a given NL query to retrieve the best dialect expression and hence the resulting SQL query. Extensive experiments are performed to study Gar in comparison with other approaches. The results show that Gar achieves better performance on the NLIDB benchmarks, including in particular a 78.5% translation accuracy on the popular Spider benchmark, outperforming the best reported accuracy in the literature. An extension to Gar, called Gar-j, is further introduced to aid the translation by annotating join semantics in the sample queries. The experimental results show that Gar-j can further improve translation accuracy on queries with joins. Code for Gar can be found at https://github.com/Kaimary/GAR. Yuankai Fan, Zhenying He, Tonghui Ren, Dianjun Guo, Ruisi Zhu, Guanduo Chen, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
ICDE | 2 |
| 2023 | GenSql: A Generative Natural Language Interface to Database SystemsabstractTo make databases more accessible to a much broader audience of non-technical users, many applications, such as chatbots and search engines, have developed a natural language (NL) interface for the underlying databases (NLIDB). With the advances in machine learning techniques, most recent research employs language translation models to build NLIDB systems. In this demonstration, we introduce GenSql, a generative NLIDB system that enables users to query databases using NL. Unlike most existing NLIDB systems that attempt to leverage a generalized language translation model to convert NL to SQL queries (NL2SQL) for any database, GenSql utilizes a set of sample queries to capture the specific structure and semantics of a given database and thus to provide more accurate translation results. The underlying NL2SQL model in GenSql is a novel generate-and-rank model named Gar designed by the authors, which first generates a set of generalized SQL queries with corresponding NL expressions from the given sample queries, and ranks the NL expressions to get the best matching one, and hence the SQL query. This demonstration shows the effectiveness of GenSql, especially in answering complex queries, which proves its utility in practice. Yuankai Fan, Tonghui Ren, Zhenying He, Xiaoyang Sean Wang |
ICDE | 3 |
| 2023 | An Integrated Interactive Framework for Natural Language to SQL Translation
Yuankai Fan, Tonghui Ren, Dianjun Guo, Zhenying He, Xiaoyang Sean Wang, Tao Sui |
WISE | 5 |
| 2023 | BlinkViz: Fast and Scalable Approximate Visualization on Very Large Datasets using Neural-Enhanced Mixed Sum-Product NetworksabstractWeb-based online interactive visual analytics enjoys popularity in recent years. Traditionally, visualizations are produced directly from querying the underlying data. However, for a very large dataset, this way is so time-consuming that it cannot meet the low-latency requirements of interactive visual analytics. In this paper, we propose a learning-based visualization approach called BlinkViz, which uses a learned model to produce approximate visualizations by leveraging mixed sum-product networks to learn the distribution of the original data. In such a way, it makes visualization faster and more scalable by decoupling visualization and data. In addition, to improve the accuracy of approximate visualizations, we propose an enhanced model by incorporating a neural network with residual structures, which can refine prediction results, especially for visual requests with low selectivity. Extensive experiments show that BlinkViz is extremely fast even on a large dataset with hundreds of millions of data records (over 30GB), responding in sub-seconds (from 2ms to less than 500ms for different requests) while keeping a low error rate. Furthermore, our approach remains scalable on latency and memory footprint size regardless of data size. Yimeng Qiao, Yinan Jing, Hanbing Zhang, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
WWW | 4 |
| 2022 | Learning-Based Optimization for Online Approximate Query Processing
Wenyuan Bi, Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (1) | 4 |
| 2022 | CrossIndex: Memory-Friendly and Session-Aware Index for Supporting Crossfilter in Interactive Data Exploration
Hanbing Zhang, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (1) | 4 |
| 2022 | Revisiting Approximate Query Processing and Bootstrap Error Estimation on GPU
Hanbing Zhang, Yinan Jing, Kai Zhang 0006, Zhenying He, Xiaoyang Sean Wang |
DASFAA (1) | 5 |
| 2022 | Querying Maximum Quasi-independent Set by Pay-and-RecycleabstractIn the paper, we study the problem of computing a maximum quasi-independent set that admits$k$conflict edges at most but contains the set of query vertices$S$. It generalizes the task of finding a maximum independent set (shorted as MIS) for a given graph. Due to the intractable hardness of computing an exact solution, delivering a high-quality approximate solution within a time budget can be accepted. The existing algorithms for the maximum quasi-independent set are organized in two phases, namely near-MIS initialization and edge expansion (i.e., deleting edges). As both of the two phases adopt greedy strategies, error propagation degrades the quality of delivered answer sets. In contrast, we develop a novel pay-and-recycle approach interleaving the above two phases. Instead of making greedy peelings when no reduction rules can be applied, we delete an edge (i.e., edge expansion) to create opportunities for applying reduction rules. To enhance the performance, the wasted edges are detected and recycled for further expansion. Moreover, we propose an effective method to guide edge expansion based on offline samples. Extensive empirical studies show that our proposed method outperforms the state-of-the-art algorithm in finding larger quasi-independent sets. Weiguo Zheng, Zhenying He, Xiaoyang Sean Wang |
ICDE | 4 |
| 2021 | VizGRank: A Context-Aware Visualization Recommendation Method Based on Inherent Relations Between Visualizations
Qianfeng Gao, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (3) | 2 |
| 2021 | Incrementally Finding the Vertices Absent from the Maximum Independent Sets
Weiguo Zheng, Zhenying He, Xiaoyang Sean Wang |
PAKDD (1) | 4 |
| 2021 | Parrot: A Progressive Analysis System on Large Text CollectionsabstractAbstract The size of textual data continues to grow along with the need for timely and cost-effective analysis, while the growth of computation power cannot keep up with the growth of data. The delays when processing huge textual data can negatively impact user activity and insight. This calls for a paradigm shift from blocking fashion to progressive processing. In this paper, we propose a sample-based progressive processing model that focuses on term frequency calculation on text. The model is based on an incremental execution engine and will calculate a series of approximate results for a single query in a progressive way to provide a smooth trade-off between accuracy and latency. As a part, we proposed a new variant of the bootstrap technique to quantify result error progressively. We implemented this method in our system called Parrot on top of Apache Spark and used real-world data to test its performance. Experiments demonstrate that our method is 2.4×–19.7× faster to get a result within 1% error while the confidence interval always covers the accurate results very well. Yazhong Zhang, Hanbing Zhang, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
Data Sci. Eng. | 3 |
| 2021 | Efficiently answering top-k frequent term queries in temporal-categorical range
Zhenying He, Chang Lu 0004, Yinan Jing, Kai Zhang 0006, Weili Han, Jianxin Li 0001, Chengfei Liu, Xiaoyang Sean Wang |
Inf. Sci. | 1 |
| 2020 | A Fast Automated Model Selection Approach Based on Collaborative Knowledge
Zhenyuan Sun, Zhenying He, Yinan Jing, Xiaoyang Sean Wang |
DASFAA (1) | 3 |
| 2020 | Progressive Term Frequency Analysis on Large Text Collections
Yazhong Zhang, Hanbing Zhang, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (2) | 3 |
| 2020 | An Agile Sample Maintenance Approach for Agile AnalyticsabstractAgile analytics can help organizations to gain and sustain a competitive advantage by making timely decisions. Approximate query processing (AQP) is one of the useful approaches in agile analytics, which facilitates fast queries on big data by leveraging a pre-computed sample. One problem such a sample faces is that when new data is being imported, re-sampling is most likely needed to keep the sample fresh and AQP results accurate enough. Re-sampling from scratch for every batch of new data, called the full re-sampling method and adopted by many existing AQP works, is obviously a very costly process, and a much quicker incremental sampling process, such as reservoir sampling, may be used to cover the newly arrived data. However, incremental update methods suffer from the fact that the sample size cannot be increased, which is a problem when the underlying data distribution dramatically changes and the sample needs to be enlarged to maintain the AQP accuracy. This paper proposes an adaptive sample update (ASU) approach that avoids re-sampling from scratch as much as possible by monitoring the data distribution, and uses instead an incremental update method before a re-sampling becomes necessary. The paper also proposes an enhanced approach (T-ASU), which tries to enlarge the sample size without re-sampling from scratch when a bit of query inaccuracy is tolerable to further reduce the sample update cost. These two approaches are integrated into a state-of-the-art AQP engine for an extensive experimental study. Experimental results on both real-world and synthetic datasets show that the two approaches are faster than the full re-sampling method while achieving almost the same AQP accuracy when the underlying data distribution continuously changes. Hanbing Zhang, Yazhong Zhang, Zhenying He, Yinan Jing, Kai Zhang 0006, Xiaoyang Sean Wang |
ICDE | 3 |
| 2020 | BinDex: A Two-Layered Index for Fast and Robust ScansabstractIn modern analytical database systems, the performance of the data scan operation is of key importance to the performance of query execution. Existing approaches may be categorized into index scan and sequential scan. However, both approaches have inherent inefficiencies. Indeed, sequential scan may need to access a large amount of unneeded data, especially for queries with low selectivity. Instead, index scan may involve a large number of expensive random memory accesses when the query selectivity is high. Moreover, with the growing complexities in database query workloads, it has become hard to predict which approach is better for a particular query. In order to obtain fast and robust scans under all selectivities, this paper proposes BinDex, a two-layered index structure based on binned bitmaps that can be used to significantly accelerate the scan operations for in-memory column stores. The first layer of BinDex consists of a set of binned bitmaps which filter out most unneeded values in a column. The second layer provides some auxiliary information to correct the bits that have incorrect values. By varying the number of bit vectors in the first layer, BinDex can make a tradeoff between memory space and performance. Experimental results show that BinDex outperforms the state-of-the-art approaches with less memory than a B+-tree would use. And by enlarging the memory space, BinDex can achieve up to 2.9 times higher performance, eliminating the need for making a choice between sequential or index scans. Kai Zhang 0006, Jiading Guo, Zhenying He, Yinan Jing, Weili Han, Xiaoyang Sean Wang |
SIGMOD Conference | 5 |
| 2018 | Online Subset Topic Modeling for Interactive Documents Exploration
Yaobo Wu, Yixiong Ke, Chaoying Liu, Yinan Jing, Zhenying He, Xiaoyang Sean Wang |
DASFAA (1) | 6 |
| 2018 | iExplore: Accelerating Exploratory Data Analysis by Predicting User Intention
Jiyang Gong, Chaoying Liu, Yinan Jing, Zhenying He, Kai Zhang 0006, Xiaoyang Sean Wang |
DASFAA (2) | 5 |
| 2018 | Geo-Social Influence Spanning MaximizationabstractThe problem of influence maximization has attracted a lot of attention as it provides a way to improve marketing, branding, and product adoption. However, existing studies rarely consider the physical locations of the social users, although location is an important factor in targeted marketing. In this paper, we investigate the problem of influence spanning maximization in location-aware social networks. Our target is to identify the maximum spanning geographical regions in a query region, which is very different from the existing methods that focus on the quantity of the activated users in the query region. Since the problem is NP-hard, we develop one greedy algorithm with a 1-1/e approximation ratio and further improve its efficiency by developing an upper bound based approach. Then, we propose the OIR index by combining ordered influential node lists and an R*-tree and design the index based solution. The efficiency and effectiveness of our proposed solutions and index have been verified using three real datasets. Jianxin Li 0001, Timos K. Sellis, J. Shane Culpepper, Zhenying He, Chengfei Liu, Junhu Wang |
ICDE | 4 |
| 2017 | An Adaptive Data Partitioning Scheme for Accelerating Exploratory Spark SQL Queries
Chenghao Guo, Zhenying He, Xiaoyang Sean Wang |
DASFAA (1) | 3 |
| 2017 | Partial sums-based P-Rank computation in information networksabstractP-Rank is a simple and captivating link-based similarity measure that extends SimRank by exploiting both in- and out-links for similarity computation. However, the existing work of P-Rank computation is expensive in terms of time and space cost and cannot efficiently support similarity computation in large information networks. For tackling this problem, in this paper, we propose an optimization technique for fast P-Rank computation in information networks by adopting the spiritual of partial sums. We write P-Rank equation based on partial sums and further approximate this equation by setting a threshold for ignoring the small similarity scores during iterative similarity computation. An optimized similarity computation algorithm is developed, which reduces the computation cost by skipping the similarity scores smaller than the give threshold during accumulation operations. And the accuracy loss estimation under the threshold is given through extensive mathematical analysis. Extensive experiments demonstrate the effectiveness and efficiency of our proposed approach through comparing with the straightforward P-Rank computation algorithm. Mingxi Zhang 0001, Zhenying He, Wei Wang 0009 |
WI | 3 |
| 2017 | Geo-Social Influence Spanning MaximizationabstractInfluence maximization is a recent but well-studied problem which helps identify a small set of users that are most likely to “influence” the maximum number of users in a social network. The problem has attracted a lot of attention as it provides a way to improve marketing, branding, and product adoption. However, existing studies rarely consider the physical locations of the users, but location is an important factor in targeted marketing. In this paper, we propose and investigate the problem of influence maximization in location-aware social networks, or, more generally,Geo-social Influence Spanning Maximization. Given a query$q$composed of a region$R$, a regional acceptance rate$\rho$, and an integer$k$as a seed selection budget, our aim is to find the maximum geographic spanning regions (MGSR). We refer to this as the MGSR problem. Our approach differs from previous work as we focus more on identifying the maximum spanning geographical regions within a region$R$, rather than just the number of activated users in the given network like the traditional influence maximization problem[14]. Our research approach can be effectively used for online marketing campaigns that depend on the physical location of social users. To address the MGSR problem, we first prove NP-Hardness. Next, we present a greedy algorithm with a$1-1/e$approximation ratio to solve the problem, and further improve the efficiency by developing an upper bounded pruning approach. Then, we propose the OIR*-Tree index, which is a hybrid index combining ordered influential node lists with an R*-tree. We show that our index based approach is significantly more efficient than the greedy algorithm and the upper bounded pruning algorithm, especially when$k$is large. Finally, we evaluate the performance for all of the proposed approaches using three real datasets. Jianxin Li 0001, Timos K. Sellis, J. Shane Culpepper, Zhenying He, Chengfei Liu, Junhu Wang |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2016 | ListMerge: Accelerating Top-k Aggregation Queries Over Large Number of Lists
Shile Zhang, Zhenying He |
DASFAA (2) | 3 |
| 2015 | MPTM: A Topic Model for Multi-Part Documents
Zhipeng Xie, Liyang Jiang, Tengju Ye, Zhenying He |
DASFAA (2) | 4 |
| 2014 | Topical Presentation of Search Results on Database
Mingxi Zhang 0001, Zhenying He, Peng Wang 0027, Wei Wang 0009, Chengfei Liu |
DASFAA (2) | 3 |
| 2013 | Diversifying Query Suggestions by Using Topics from WikipediaabstractDiversifying query suggestions has emerged recently, by which the recommended queries can be both relevant and diverse. Most existing works diversify suggestions by query log analysis, however, for structured data, not all query logs are available. To this end, this paper studies the problem of suggesting diverse query terms by using topics from Wikipedia. Wikipedia is a successful online encyclopedia, and has high coverage of entities and concepts. We first obtain all relevant topics from Wikipedia, and then map each term to these topics. As the mapping is a nontrivial task, we leverage information from both Wikipedia and structured data to semantically map each term to topics. Finally, we propose a fast algorithm to efficiently generate the suggestions. Extensive evaluations are conducted on a real dataset, and our approach yields promising results. Mingxi Zhang 0001, Zhenying He, Peng Wang 0027, Wei Wang 0009 |
Web Intelligence | 3 |
| 2012 | Branch Code: A Labeling Scheme for Efficient Query Answering on TreesabstractLabeling schemes lie at the core of query processing for many tree-structured data such as XML data that is flooding the web. A labeling scheme that can simultaneously and efficiently support various relationship queries on trees (such as parent/children, descendant/ancestor, etc.), computation of lowest common ancestors (LCA) and update of trees, is desired for effective and efficient management of tree-structured data. Although a variety of labeling schemes such as prefix-based labeling, interval-based labeling and prime-based labeling as well as their variants have been available to us for encoding static and dynamic trees, these labeling schemes usually show weakness in one aspect or another. In this paper, we propose an integer-based labeling scheme branch code as well as its compressed version as our major solution to simultaneously support efficient query processing on both static and dynamic ordered trees with affordable storage cost. The proposed branch code can answer common queries on ordered trees in constant time, which comes at the cost of consuming O(N log N) storage. To reduce storage cost to O(N), a compressed branch code is further developed. We also give a relationship determination algorithm purely using compressed branch code, which is of quite low possibility to produce false positive results as verified by experimental results. With the support of splay trees, branch code can also support dynamic trees so that updates and queries can be implemented with O(log N) amortized cost. All the results above are either theoretically proved or verified by experimental studies. Yanghua Xiao, Wanyun Cui, Zhenying He, Wei Wang 0009, Guodong Feng |
ICDE | 4 |
| 2012 | E-rank: A Structural-Based Similarity Measure in Social NetworksabstractWith the social networks (SNs) becoming ubiquitous and massive, the issue of similarity computation among entities becomes more challenging and draws extensive interests from various research fields. SimRank is a well known similarity measure, however it considers only the meetings between two nodes that walk along equal length paths since the path length increases strictly with the iteration increasing during the similarity computation, besides, it does not differentiate importance for each link. In this paper, we propose a novel structural similarity measure, E-Rank (Entity Rank), towards effectively computing the structural similarity of entities in SNs, based on the intuition that two entities are similar if they can arrive at common entities. E-Rank can be well applied to social networks for measuring similarities of entities. Extensive experiments demonstrate the effectiveness of E-Rank by comparing with the state-of-the-art measures. Mingxi Zhang 0001, Zhenying He, Wei Wang 0009 |
Web Intelligence | 2 |
| 2010 | Efficient SLCA-Based Keyword Search on XML Databases: An Iterative-Skip Approach
Zhenying He, Yue Tao, Xiansheng Wang, Wei Wang 0009 |
DEXA (1) | 2 |
| 2010 | k-symmetry model for identity anonymization in social networksabstractWith more and more social network data being released, protecting the sensitive information within social networks from leakage has become an important concern of publishers. Adversaries with some background structural knowledge about a target individual can easily re-identify him from the network, even if the identifiers have been replaced by randomized integers(i.e., the network is naively-anonymized). Since there exists numerous topological information that can be used to attack a victim's privacy, to resist such structural re-identification becomes a great challenge. Previous works only investigated a minority of such structural attacks, without considering protecting against re-identification under any potential structural knowledge about a target. To achieve this objective, in this paper we propose k-symmetry model, which modifies a naively-anonymized network so that for any vertex in the network, there exist at least k -- 1 structurally equivalent counterparts. We also propose sampling methods to extract approximate versions of the original network from the anonymized network so that statistical properties of the original network could be evaluated. Extensive experiments show that we can successfully recover a variety of such properties of the original network through aggregations on quite a small number of sample graphs. Wentao Wu 0001, Yanghua Xiao, Wei Wang 0009, Zhenying He, Zhihui Wang 0009 |
EDBT | 4 |
| 2009 | A Novel Air Index Scheme for Twig Queries in On-Demand XML Data Broadcast
Yongrui Qin, Weiwei Sun 0008, Zhuoyao Zhang, Ping Yu 0001, Zhenying He |
DEXA | 5 |
| 2009 | Efficiently indexing shortest paths by exploiting symmetry in graphsabstractShortest path queries (SPQ) are essential in many graph analysis and mining tasks. However, answering shortest path queries on-the-fly on large graphs is costly. To online answer shortest path queries, we may materialize and index shortest paths. However, a straightforward index of all shortest paths in a graph of N vertices takes O(N2) space. In this paper, we tackle the problem of indexing shortest paths and online answering shortest path queries. As many large real graphs are shown richly symmetric, the central idea of our approach is to use graph symmetry to reduce the index size while retaining the correctness and the efficiency of shortest path query answering. Technically, we develop a framework to index a large graph at the orbit level instead of the vertex level so that the number of breadth-first search trees materialized is reduced from O(N) to O(|Δ|), where |Δ| ≤ N is the number of orbits in the graph. We explore orbit adjacency and local symmetry to obtain compact breadth-first-search trees (compact BFS-trees). An extensive empirical study using both synthetic data and real data shows that compact BFS-trees can be built efficiently and the space cost can be reduced substantially. Moreover, online shortest path query answering can be achieved using compact BFS-trees. Yanghua Xiao, Wentao Wu 0001, Jian Pei 0001, Wei Wang 0009, Zhenying He |
EDBT | 5 |
| 2008 | Efficient Algorithms for Node Disjoint Subgraph Homeomorphism Determination
Yanghua Xiao, Wentao Wu 0001, Wei Wang 0009, Zhenying He |
DASFAA | 4 |
| 2008 | HFilter: Hybrid Finite Automaton Based Stream Filtering for Deep and Recursive XML Data
Weiwei Sun 0008, Yongrui Qin, Ping Yu 0001, Zhuoyao Zhang, Zhenying He |
DEXA | 5 |
| 2005 | Using XML Structure to Reduce Candidate Nodes Participated in Query Processing
Zhenying He, Jianzhong Li 0001, Chaokun Wang, Pengcheng Ge, Haikun Chen |
WAIM | 1 |
| 2004 | Optimized Query Translation Strategy for XML Stored in Relational Database
Hongzhi Wang 0001, Jianzhong Li 0001, Zhenying He |
WAIM | 3 |
| 2003 | Xaggregation: Flexible Aggregation of XML Data
Hongzhi Wang 0001, Jianzhong Li 0001, Zhenying He, Hong Gao 0001 |
WAIM | 3 |