Skip to content

Commit

Permalink
[doc] oltpbench has one page doc in wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
at15 committed Jan 13, 2018
1 parent 18ca01e commit 7a68073
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ results
*~

# maven output
target
target

# IDEA
.idea
*.iml
2 changes: 2 additions & 0 deletions doc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ojdbc14.jar
.account.txt
19 changes: 18 additions & 1 deletion doc/dev-setup.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Development Environment Setup

There is a one page official wiki https://github.com/oltpbenchmark/oltpbench/wiki

## Usage

.travis.yml could be a start point ...

wonder where is the distributed test described in the paper, ssh into server and collect metrics etc.

## DB

Just use docker at first, might have very bad result using default configuration,
but easy to test if things are correct locally.

## IDE

IDEA is the best choice, but due to some jars are not public accessable, it is not working properly.
IDEA is the best choice, but due to some jars are not public available, it is not working properly.

- mark `tests` directory as test source root, it is not using standard naming

### Oracle

Expand All @@ -16,3 +26,10 @@ IDEA is the best choice, but due to some jars are not public accessable, it is n
- 10.2.0.1.0
- http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-10201-088211.html
- and you need Oracle account to download it
- `mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=lib/ojdbc14-10.2.jar -DgeneratePom=true`
- `mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc14.jar -DgeneratePom=true`

````bash
[INFO] Installing /home/at15/workspace/src/github.com/benchhub/oltpbench/doc/ojdbc14.jar to /home/at15/.m2/repository/com/oracle/ojdbc14/10.2.0.1.0/ojdbc14-10.2.0.1.0.jar
[INFO] Installing /tmp/mvninstall7312583839796949925.pom to /home/at15/.m2/repository/com/oracle/ojdbc14/10.2.0.1.0/ojdbc14-10.2.0.1.0.pom
````

0 comments on commit 7a68073

Please sign in to comment.