├── .gitignore ├── .gitmodules ├── README.md ├── common ├── README.md ├── abort_eval.sh ├── conf │ ├── my.cnf │ └── postgresql.conf ├── config ├── drop_cache.sh ├── eval_nvmev.sh ├── init_db.sh ├── init_nvmev.sh ├── prep_db.sh ├── run_eval.sh ├── set_perf.py ├── start_db.sh ├── stat_cpu_utilization.sh ├── stat_io_utilization.sh ├── stat_mem_utilization.sh ├── stat_nvmev.sh └── unbind_nvme.sh ├── filebench ├── do_eval.sh ├── varmail.f ├── webserver.f └── workloads │ ├── compflow_demo.f │ ├── copyfiles.f │ ├── createfiles.f │ ├── cvar_example.f │ ├── filemicro_create.f │ ├── filemicro_createfiles.f │ ├── filemicro_createrand.f │ ├── filemicro_delete.f │ ├── filemicro_rread.f │ ├── filemicro_rwrite.f │ ├── filemicro_rwritedsync.f │ ├── filemicro_rwritefsync.f │ ├── filemicro_seqread.f │ ├── filemicro_seqwrite.f │ ├── filemicro_seqwriterand.f │ ├── filemicro_seqwriterandvargam.f │ ├── filemicro_seqwriterandvartab.f │ ├── filemicro_statfile.f │ ├── filemicro_writefsync.f │ ├── fileserver.f │ ├── fivestreamread.f │ ├── fivestreamreaddirect.f │ ├── fivestreamwrite.f │ ├── fivestreamwritedirect.f │ ├── listdirs.f │ ├── makedirs.f │ ├── mongo.f │ ├── netsfs.f │ ├── networkfs.f │ ├── oltp.f │ ├── openfiles.f │ ├── randomfileaccess.f │ ├── randomread.f │ ├── randomrw.f │ ├── randomwrite.f │ ├── ratelimcopyfiles.f │ ├── removedirs.f │ ├── singlestreamread.f │ ├── singlestreamreaddirect.f │ ├── singlestreamwrite.f │ ├── singlestreamwritedirect.f │ ├── tpcso.f │ ├── varmail.f │ ├── videoserver.f │ ├── webproxy.f │ └── webserver.f ├── fio ├── do_eval.sh └── workloads │ ├── rand-read-aio.fio │ ├── rand-read.fio │ ├── rand-write-aio.fio │ ├── rand-write.fio │ ├── seq-read-1m.fio │ ├── seq-read-aio-1m.fio │ ├── seq-read-aio.fio │ ├── seq-read.fio │ ├── seq-write-1m.fio │ ├── seq-write-aio-1m.fio │ ├── seq-write-aio.fio │ └── seq-write.fio ├── linkbench └── do_eval.sh ├── rocksdb └── do_eval.sh ├── sysbench └── do_eval.sh ├── tpch ├── .gitignore ├── do_eval.sh ├── generate_data.sh ├── mariadb │ ├── README.md │ ├── create_indexes.sql │ ├── create_keys.sql │ ├── create_tables.sql │ ├── load_data.sql │ ├── main.sh │ └── queries │ │ ├── 1.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 14.sql │ │ ├── 15.sql │ │ ├── 16.sql │ │ ├── 17.sql │ │ ├── 18.sql │ │ ├── 19.sql │ │ ├── 2.sql │ │ ├── 20.sql │ │ ├── 21.sql │ │ ├── 22.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ ├── 5.sql │ │ ├── 6.sql │ │ ├── 7.sql │ │ ├── 8.sql │ │ └── 9.sql └── postgres │ ├── create_indexes.sql │ ├── create_tables.sql │ ├── foreign_keys.sql │ ├── load_data.sql │ ├── main.sh │ ├── primary_keys.sql │ └── queries │ ├── 1.explain.sql │ ├── 1.sql │ ├── 10.explain.sql │ ├── 10.sql │ ├── 11.explain.sql │ ├── 11.sql │ ├── 12.explain.sql │ ├── 12.sql │ ├── 13.explain.sql │ ├── 13.sql │ ├── 14.explain.sql │ ├── 14.sql │ ├── 15.explain.sql │ ├── 15.sql │ ├── 16.explain.sql │ ├── 16.sql │ ├── 17.explain.sql │ ├── 17.sql │ ├── 18.explain.sql │ ├── 18.sql │ ├── 19.explain.sql │ ├── 19.sql │ ├── 2.explain.sql │ ├── 2.sql │ ├── 20.explain.sql │ ├── 20.sql │ ├── 21.explain.sql │ ├── 21.sql │ ├── 22.explain.sql │ ├── 22.sql │ ├── 3.explain.sql │ ├── 3.sql │ ├── 4.explain.sql │ ├── 4.sql │ ├── 5.explain.sql │ ├── 5.sql │ ├── 6.explain.sql │ ├── 6.sql │ ├── 7.explain.sql │ ├── 7.sql │ ├── 8.explain.sql │ ├── 8.sql │ ├── 9.explain.sql │ └── 9.sql └── ycsb ├── do_eval.sh ├── rocksdb-options.ini └── workloads ├── workloada-190 ├── workloadb-190 ├── workloadc-190 └── workloadd-190 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/README.md -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/README.md -------------------------------------------------------------------------------- /common/abort_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/abort_eval.sh -------------------------------------------------------------------------------- /common/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/conf/my.cnf -------------------------------------------------------------------------------- /common/conf/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/conf/postgresql.conf -------------------------------------------------------------------------------- /common/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/config -------------------------------------------------------------------------------- /common/drop_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/drop_cache.sh -------------------------------------------------------------------------------- /common/eval_nvmev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/eval_nvmev.sh -------------------------------------------------------------------------------- /common/init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/init_db.sh -------------------------------------------------------------------------------- /common/init_nvmev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/init_nvmev.sh -------------------------------------------------------------------------------- /common/prep_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/prep_db.sh -------------------------------------------------------------------------------- /common/run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/run_eval.sh -------------------------------------------------------------------------------- /common/set_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/set_perf.py -------------------------------------------------------------------------------- /common/start_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/start_db.sh -------------------------------------------------------------------------------- /common/stat_cpu_utilization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/stat_cpu_utilization.sh -------------------------------------------------------------------------------- /common/stat_io_utilization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/stat_io_utilization.sh -------------------------------------------------------------------------------- /common/stat_mem_utilization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/stat_mem_utilization.sh -------------------------------------------------------------------------------- /common/stat_nvmev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/stat_nvmev.sh -------------------------------------------------------------------------------- /common/unbind_nvme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/common/unbind_nvme.sh -------------------------------------------------------------------------------- /filebench/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/do_eval.sh -------------------------------------------------------------------------------- /filebench/varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/varmail.f -------------------------------------------------------------------------------- /filebench/webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/webserver.f -------------------------------------------------------------------------------- /filebench/workloads/compflow_demo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/compflow_demo.f -------------------------------------------------------------------------------- /filebench/workloads/copyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/copyfiles.f -------------------------------------------------------------------------------- /filebench/workloads/createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/createfiles.f -------------------------------------------------------------------------------- /filebench/workloads/cvar_example.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/cvar_example.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_create.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_create.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_createfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_createfiles.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_createrand.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_createrand.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_delete.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_delete.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_rread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_rread.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_rwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_rwrite.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_rwritedsync.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_rwritedsync.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_rwritefsync.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_rwritefsync.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_seqread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_seqread.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_seqwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_seqwrite.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_seqwriterand.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_seqwriterand.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_seqwriterandvargam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_seqwriterandvargam.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_seqwriterandvartab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_seqwriterandvartab.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_statfile.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_statfile.f -------------------------------------------------------------------------------- /filebench/workloads/filemicro_writefsync.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/filemicro_writefsync.f -------------------------------------------------------------------------------- /filebench/workloads/fileserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/fileserver.f -------------------------------------------------------------------------------- /filebench/workloads/fivestreamread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/fivestreamread.f -------------------------------------------------------------------------------- /filebench/workloads/fivestreamreaddirect.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/fivestreamreaddirect.f -------------------------------------------------------------------------------- /filebench/workloads/fivestreamwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/fivestreamwrite.f -------------------------------------------------------------------------------- /filebench/workloads/fivestreamwritedirect.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/fivestreamwritedirect.f -------------------------------------------------------------------------------- /filebench/workloads/listdirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/listdirs.f -------------------------------------------------------------------------------- /filebench/workloads/makedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/makedirs.f -------------------------------------------------------------------------------- /filebench/workloads/mongo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/mongo.f -------------------------------------------------------------------------------- /filebench/workloads/netsfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/netsfs.f -------------------------------------------------------------------------------- /filebench/workloads/networkfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/networkfs.f -------------------------------------------------------------------------------- /filebench/workloads/oltp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/oltp.f -------------------------------------------------------------------------------- /filebench/workloads/openfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/openfiles.f -------------------------------------------------------------------------------- /filebench/workloads/randomfileaccess.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/randomfileaccess.f -------------------------------------------------------------------------------- /filebench/workloads/randomread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/randomread.f -------------------------------------------------------------------------------- /filebench/workloads/randomrw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/randomrw.f -------------------------------------------------------------------------------- /filebench/workloads/randomwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/randomwrite.f -------------------------------------------------------------------------------- /filebench/workloads/ratelimcopyfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/ratelimcopyfiles.f -------------------------------------------------------------------------------- /filebench/workloads/removedirs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/removedirs.f -------------------------------------------------------------------------------- /filebench/workloads/singlestreamread.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/singlestreamread.f -------------------------------------------------------------------------------- /filebench/workloads/singlestreamreaddirect.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/singlestreamreaddirect.f -------------------------------------------------------------------------------- /filebench/workloads/singlestreamwrite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/singlestreamwrite.f -------------------------------------------------------------------------------- /filebench/workloads/singlestreamwritedirect.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/singlestreamwritedirect.f -------------------------------------------------------------------------------- /filebench/workloads/tpcso.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/tpcso.f -------------------------------------------------------------------------------- /filebench/workloads/varmail.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/varmail.f -------------------------------------------------------------------------------- /filebench/workloads/videoserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/videoserver.f -------------------------------------------------------------------------------- /filebench/workloads/webproxy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/webproxy.f -------------------------------------------------------------------------------- /filebench/workloads/webserver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/filebench/workloads/webserver.f -------------------------------------------------------------------------------- /fio/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/do_eval.sh -------------------------------------------------------------------------------- /fio/workloads/rand-read-aio.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/rand-read-aio.fio -------------------------------------------------------------------------------- /fio/workloads/rand-read.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/rand-read.fio -------------------------------------------------------------------------------- /fio/workloads/rand-write-aio.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/rand-write-aio.fio -------------------------------------------------------------------------------- /fio/workloads/rand-write.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/rand-write.fio -------------------------------------------------------------------------------- /fio/workloads/seq-read-1m.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-read-1m.fio -------------------------------------------------------------------------------- /fio/workloads/seq-read-aio-1m.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-read-aio-1m.fio -------------------------------------------------------------------------------- /fio/workloads/seq-read-aio.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-read-aio.fio -------------------------------------------------------------------------------- /fio/workloads/seq-read.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-read.fio -------------------------------------------------------------------------------- /fio/workloads/seq-write-1m.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-write-1m.fio -------------------------------------------------------------------------------- /fio/workloads/seq-write-aio-1m.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-write-aio-1m.fio -------------------------------------------------------------------------------- /fio/workloads/seq-write-aio.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-write-aio.fio -------------------------------------------------------------------------------- /fio/workloads/seq-write.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/fio/workloads/seq-write.fio -------------------------------------------------------------------------------- /linkbench/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/linkbench/do_eval.sh -------------------------------------------------------------------------------- /rocksdb/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/rocksdb/do_eval.sh -------------------------------------------------------------------------------- /sysbench/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/sysbench/do_eval.sh -------------------------------------------------------------------------------- /tpch/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /tpch/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/do_eval.sh -------------------------------------------------------------------------------- /tpch/generate_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/generate_data.sh -------------------------------------------------------------------------------- /tpch/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/README.md -------------------------------------------------------------------------------- /tpch/mariadb/create_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/create_indexes.sql -------------------------------------------------------------------------------- /tpch/mariadb/create_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/create_keys.sql -------------------------------------------------------------------------------- /tpch/mariadb/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/create_tables.sql -------------------------------------------------------------------------------- /tpch/mariadb/load_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/load_data.sql -------------------------------------------------------------------------------- /tpch/mariadb/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/main.sh -------------------------------------------------------------------------------- /tpch/mariadb/queries/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/1.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/10.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/11.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/12.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/13.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/14.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/15.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/16.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/17.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/18.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/19.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/2.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/20.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/21.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/22.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/3.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/4.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/5.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/6.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/7.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/8.sql -------------------------------------------------------------------------------- /tpch/mariadb/queries/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/mariadb/queries/9.sql -------------------------------------------------------------------------------- /tpch/postgres/create_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/create_indexes.sql -------------------------------------------------------------------------------- /tpch/postgres/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/create_tables.sql -------------------------------------------------------------------------------- /tpch/postgres/foreign_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/foreign_keys.sql -------------------------------------------------------------------------------- /tpch/postgres/load_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/load_data.sql -------------------------------------------------------------------------------- /tpch/postgres/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/main.sh -------------------------------------------------------------------------------- /tpch/postgres/primary_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/primary_keys.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/1.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/1.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/1.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/10.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/10.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/10.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/11.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/11.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/11.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/12.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/12.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/12.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/13.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/13.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/13.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/14.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/14.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/14.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/15.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/15.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/15.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/16.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/16.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/16.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/17.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/17.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/17.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/18.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/18.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/18.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/19.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/19.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/19.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/2.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/2.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/2.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/20.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/20.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/20.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/21.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/21.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/21.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/22.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/22.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/22.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/3.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/3.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/3.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/4.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/4.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/4.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/5.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/5.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/5.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/6.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/6.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/6.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/7.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/7.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/7.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/8.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/8.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/8.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/9.explain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/9.explain.sql -------------------------------------------------------------------------------- /tpch/postgres/queries/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/tpch/postgres/queries/9.sql -------------------------------------------------------------------------------- /ycsb/do_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/do_eval.sh -------------------------------------------------------------------------------- /ycsb/rocksdb-options.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/rocksdb-options.ini -------------------------------------------------------------------------------- /ycsb/workloads/workloada-190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/workloads/workloada-190 -------------------------------------------------------------------------------- /ycsb/workloads/workloadb-190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/workloads/workloadb-190 -------------------------------------------------------------------------------- /ycsb/workloads/workloadc-190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/workloads/workloadc-190 -------------------------------------------------------------------------------- /ycsb/workloads/workloadd-190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snu-csl/nvmev-evaluation/HEAD/ycsb/workloads/workloadd-190 --------------------------------------------------------------------------------