Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.52 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.52 KB

VisBooster

This repository hosts the source code for the VisBooster system published as a Demo paper in BigVis 2022 workshop.

Introduction

VisBooster is a middleware-based query rewriting framework.

VisBooster intercepts SQL queries by customizing JDBC drivers used by Tableau and uses rules to rewrite the queries to semantically equivalent yet more efficient queries. The rewriting rules are designed by data experts who analyze slow queries and apply their domain knowledge and optimization expertise. VisBooster can accelerate visualization queries formulated by Tableau up to 100 times faster.

The following is the demo we showed at BigVis 2022 Workshop (jointly held with EDBT/ICDT 2022). IMAGE ALT TEXT HERE

JDBC Drivers

The VisBooster customized JDBC drivers repository are listed below:

Run VisBooster

Requirements

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Run VisBooster server

cd server/
python3 server.py

Access VisBooster web interface

Go to the link http://localhost:8000 to access the web interface.