├── .gitignore ├── .pydevproject ├── .readthedocs.yaml ├── Dockerfile ├── README.md ├── benchmarkctl.py ├── docs ├── BUILDING-AWS-EC2.md ├── BUILDING-ROCKY8.md ├── BUILDING.md ├── BenchmarkSQL.png ├── CHANGE-LOG.md ├── CONTRIBUTING.md ├── DOCKER.md ├── HOW-TO-RUN-Oracle.md ├── HOW-TO-RUN-Postgres.md ├── HOW-TO-RUN.md ├── LICENSE.txt ├── PROPERTIES.md ├── RELEASE.md ├── TPC-C_ERD.svg ├── TPCC.md ├── TUTORIAL-1.md ├── TimedDriver-1.svg ├── TimedDriver.md ├── index.md ├── screenshots │ └── tut1-bmsql-ui-1.png └── tutorial-1 │ └── screen-001.png ├── mkdocs.yml ├── podman-build.sh ├── podman-run.sh ├── pom.xml └── src ├── .gitignore └── main ├── java └── com │ └── github │ └── pgsqlio │ └── benchmarksql │ ├── application │ ├── AppGeneric.java │ ├── dummy │ │ └── AppOracleStoredProc.java │ ├── oracle │ │ └── AppOracleStoredProc.java │ └── postgres │ │ └── AppPostgreSQLStoredProc.java │ ├── jdbc │ └── ExecJDBC.java │ ├── jtpcc │ ├── jTPCC.java │ ├── jTPCCApplication.java │ ├── jTPCCConfig.java │ ├── jTPCCMonkey.java │ ├── jTPCCRandom.java │ ├── jTPCCResult.java │ ├── jTPCCSUT.java │ ├── jTPCCScheduler.java │ ├── jTPCCTData.java │ └── jTPCCTDataList.java │ ├── loader │ ├── LoadData.java │ ├── LoadDataWorker.java │ └── LoadJob.java │ └── oscollector │ └── OSCollector.java └── resources ├── .gitignore ├── FlaskService ├── benchmarksql.py ├── main.py ├── sample.last.properties └── templates │ └── main.html ├── benchmarkctl.py ├── checks ├── check_details.sql └── checks.sql ├── funcs.sh ├── generateReport.py ├── generateReport ├── __init__.py ├── bmsqlPlot.py ├── bmsqlResult.py ├── main.py └── templates │ ├── bmsql.css │ ├── img_cpu.html │ ├── img_disk_octets.html │ ├── img_disk_ops.html │ ├── img_interface_octets.html │ ├── img_interface_packets.html │ ├── img_latency.html │ ├── img_memory.html │ ├── img_nopm.html │ ├── inc_latency_explain.html │ ├── inc_nopm_explain.html │ ├── inc_summary_explain.html │ ├── inc_summary_table.html │ ├── report_extended.html │ └── report_simple.html ├── log4j2.xml ├── mcCollectdGraphite.py ├── mcCollectdMqtt.py ├── mcPrometheus.py ├── requirements.txt ├── runBenchmark.sh ├── runDatabaseBuild.sh ├── runDatabaseDestroy.sh ├── runLoader.sh ├── runSQL.sh ├── sample.firebird.properties ├── sample.mariadb.properties ├── sample.oracle.properties ├── sample.postgresql.properties ├── sample.transact-sql.properties ├── sql.babelfish └── tableCreates.sql ├── sql.common ├── buildFinish.sql ├── extraCommandsBeforeLoad.sql ├── foreignKeys.sql ├── indexCreates.sql ├── indexDrops.sql ├── storedProcedureCreates.sql ├── storedProcedureDrops.sql ├── tableCreates.sql ├── tableDrops.sql └── tableTruncates.sql ├── sql.mariadb ├── tableCreates.sql └── tableDrops.sql ├── sql.oracle ├── storedProcedureCreates.sql ├── storedProcedureDrops.sql └── tableCreates.sql ├── sql.postgres ├── buildFinish.sql ├── extraCommandsBeforeLoad.sql ├── storedProcedureCreates.sql ├── storedProcedureDrops.sql └── tableCopies.sql └── sql.transact-sql └── tableCreates.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/.gitignore -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/.pydevproject -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/README.md -------------------------------------------------------------------------------- /benchmarkctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/benchmarkctl.py -------------------------------------------------------------------------------- /docs/BUILDING-AWS-EC2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/BUILDING-AWS-EC2.md -------------------------------------------------------------------------------- /docs/BUILDING-ROCKY8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/BUILDING-ROCKY8.md -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/BenchmarkSQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/BenchmarkSQL.png -------------------------------------------------------------------------------- /docs/CHANGE-LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/CHANGE-LOG.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/DOCKER.md -------------------------------------------------------------------------------- /docs/HOW-TO-RUN-Oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/HOW-TO-RUN-Oracle.md -------------------------------------------------------------------------------- /docs/HOW-TO-RUN-Postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/HOW-TO-RUN-Postgres.md -------------------------------------------------------------------------------- /docs/HOW-TO-RUN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/HOW-TO-RUN.md -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/PROPERTIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/PROPERTIES.md -------------------------------------------------------------------------------- /docs/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/RELEASE.md -------------------------------------------------------------------------------- /docs/TPC-C_ERD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/TPC-C_ERD.svg -------------------------------------------------------------------------------- /docs/TPCC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/TPCC.md -------------------------------------------------------------------------------- /docs/TUTORIAL-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/TUTORIAL-1.md -------------------------------------------------------------------------------- /docs/TimedDriver-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/TimedDriver-1.svg -------------------------------------------------------------------------------- /docs/TimedDriver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/TimedDriver.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/screenshots/tut1-bmsql-ui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/screenshots/tut1-bmsql-ui-1.png -------------------------------------------------------------------------------- /docs/tutorial-1/screen-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/docs/tutorial-1/screen-001.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /podman-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | mvn || exit 1 4 | podman build -t benchmarksql:6.0-rc2 --http-proxy . 5 | -------------------------------------------------------------------------------- /podman-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/podman-run.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/pom.xml -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | appstemp 2 | -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/application/AppGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/application/AppGeneric.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/application/dummy/AppOracleStoredProc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/application/dummy/AppOracleStoredProc.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/application/oracle/AppOracleStoredProc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/application/oracle/AppOracleStoredProc.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/application/postgres/AppPostgreSQLStoredProc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/application/postgres/AppPostgreSQLStoredProc.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jdbc/ExecJDBC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jdbc/ExecJDBC.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCC.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCApplication.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCConfig.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCMonkey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCMonkey.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCRandom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCRandom.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCResult.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCSUT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCSUT.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCScheduler.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCTData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCTData.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCTDataList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCCTDataList.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadData.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadDataWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadDataWorker.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/loader/LoadJob.java -------------------------------------------------------------------------------- /src/main/java/com/github/pgsqlio/benchmarksql/oscollector/OSCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/java/com/github/pgsqlio/benchmarksql/oscollector/OSCollector.java -------------------------------------------------------------------------------- /src/main/resources/.gitignore: -------------------------------------------------------------------------------- 1 | my_* 2 | *.log 3 | .jTPCC_run_seq.dat 4 | -------------------------------------------------------------------------------- /src/main/resources/FlaskService/benchmarksql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/FlaskService/benchmarksql.py -------------------------------------------------------------------------------- /src/main/resources/FlaskService/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/FlaskService/main.py -------------------------------------------------------------------------------- /src/main/resources/FlaskService/sample.last.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/FlaskService/sample.last.properties -------------------------------------------------------------------------------- /src/main/resources/FlaskService/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/FlaskService/templates/main.html -------------------------------------------------------------------------------- /src/main/resources/benchmarkctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/benchmarkctl.py -------------------------------------------------------------------------------- /src/main/resources/checks/check_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/checks/check_details.sql -------------------------------------------------------------------------------- /src/main/resources/checks/checks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/checks/checks.sql -------------------------------------------------------------------------------- /src/main/resources/funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/funcs.sh -------------------------------------------------------------------------------- /src/main/resources/generateReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport.py -------------------------------------------------------------------------------- /src/main/resources/generateReport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/__init__.py -------------------------------------------------------------------------------- /src/main/resources/generateReport/bmsqlPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/bmsqlPlot.py -------------------------------------------------------------------------------- /src/main/resources/generateReport/bmsqlResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/bmsqlResult.py -------------------------------------------------------------------------------- /src/main/resources/generateReport/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/main.py -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/bmsql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/bmsql.css -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_cpu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_cpu.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_disk_octets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_disk_octets.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_disk_ops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_disk_ops.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_interface_octets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_interface_octets.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_interface_packets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_interface_packets.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_latency.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/img_memory.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/img_nopm.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/inc_latency_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/inc_latency_explain.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/inc_nopm_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/inc_nopm_explain.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/inc_summary_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/inc_summary_explain.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/inc_summary_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/inc_summary_table.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/report_extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/report_extended.html -------------------------------------------------------------------------------- /src/main/resources/generateReport/templates/report_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/generateReport/templates/report_simple.html -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/main/resources/mcCollectdGraphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/mcCollectdGraphite.py -------------------------------------------------------------------------------- /src/main/resources/mcCollectdMqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/mcCollectdMqtt.py -------------------------------------------------------------------------------- /src/main/resources/mcPrometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/mcPrometheus.py -------------------------------------------------------------------------------- /src/main/resources/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/requirements.txt -------------------------------------------------------------------------------- /src/main/resources/runBenchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/runBenchmark.sh -------------------------------------------------------------------------------- /src/main/resources/runDatabaseBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/runDatabaseBuild.sh -------------------------------------------------------------------------------- /src/main/resources/runDatabaseDestroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/runDatabaseDestroy.sh -------------------------------------------------------------------------------- /src/main/resources/runLoader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/runLoader.sh -------------------------------------------------------------------------------- /src/main/resources/runSQL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/runSQL.sh -------------------------------------------------------------------------------- /src/main/resources/sample.firebird.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sample.firebird.properties -------------------------------------------------------------------------------- /src/main/resources/sample.mariadb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sample.mariadb.properties -------------------------------------------------------------------------------- /src/main/resources/sample.oracle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sample.oracle.properties -------------------------------------------------------------------------------- /src/main/resources/sample.postgresql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sample.postgresql.properties -------------------------------------------------------------------------------- /src/main/resources/sample.transact-sql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sample.transact-sql.properties -------------------------------------------------------------------------------- /src/main/resources/sql.babelfish/tableCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.babelfish/tableCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/buildFinish.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/buildFinish.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/extraCommandsBeforeLoad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/extraCommandsBeforeLoad.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/foreignKeys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/foreignKeys.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/indexCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/indexCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/indexDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/indexDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/storedProcedureCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/storedProcedureCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/storedProcedureDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/storedProcedureDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/tableCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/tableCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/tableDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/tableDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.common/tableTruncates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.common/tableTruncates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.mariadb/tableCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.mariadb/tableCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.mariadb/tableDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.mariadb/tableDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.oracle/storedProcedureCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.oracle/storedProcedureCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.oracle/storedProcedureDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.oracle/storedProcedureDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.oracle/tableCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.oracle/tableCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.postgres/buildFinish.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.postgres/buildFinish.sql -------------------------------------------------------------------------------- /src/main/resources/sql.postgres/extraCommandsBeforeLoad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.postgres/extraCommandsBeforeLoad.sql -------------------------------------------------------------------------------- /src/main/resources/sql.postgres/storedProcedureCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.postgres/storedProcedureCreates.sql -------------------------------------------------------------------------------- /src/main/resources/sql.postgres/storedProcedureDrops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.postgres/storedProcedureDrops.sql -------------------------------------------------------------------------------- /src/main/resources/sql.postgres/tableCopies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.postgres/tableCopies.sql -------------------------------------------------------------------------------- /src/main/resources/sql.transact-sql/tableCreates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgsql-io/benchmarksql/HEAD/src/main/resources/sql.transact-sql/tableCreates.sql --------------------------------------------------------------------------------