Upfront Pipeline - mitdbg/amoeba GitHub Wiki
Load the tpch data into Amoeba.
- Robust Tree
fab setup:local_tpch create_table_info bulk_sample_gen create_robust_tree write_partitions
Load the baselines
- KDTree
fab setup:local_tpch table_name:tpch_kdtree create_table_info bulk_sample_gen create_kdtree write_partitions
- RangeTree
fab setup:local_tpch table_name:tpch_range_tree create_table_info bulk_sample_gen create_range_tree write_partitions
- HybridRangeTree
fab setup:local_tpch table_name:tpch_hybrid_range_tree create_table_info bulk_sample_gen create_hybrid_range_tree write_partitions
Use the following commands to run the queries
- Full Scan:
fab setup:local_tpch upfront_full_scan_tpch_queries
- Using Tree:
fab setup:local_tpch upfront_tree_tpch_queries
- Using KDTree:
fab setup:local_tpch table_name:tpch_kdtree upfront_tree_tpch_queries
- Using RangeTree:
fab setup:local_tpch table_name:tpch_range_tree upfront_tree_tpch_queries
- Using HybridRangeTree:
fab setup:local_tpch table_name:tpch_hybrid_range_tree upfront_tree_tpch_queries
- Spark:
fab setup:local_tpch upfront_spark_tpch_queries