Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes all "$" signs at the start of the code lines #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ The workloads here have drivers compatible with the above and emulate a number o

Download yb-sample-apps JAR
```
$ wget https://github.com/yugabyte/yb-sample-apps/releases/download/1.3.9/yb-sample-apps.jar
wget https://github.com/yugabyte/yb-sample-apps/releases/download/1.3.9/yb-sample-apps.jar
```

For help, simply run the following:

```
$ java -jar yb-sample-apps.jar --help
java -jar yb-sample-apps.jar --help
```
You should see the set of workloads available in the app.

To get details on running any app, just pass the app name as a parameter to the `--help` flag:
```
$ java -jar yb-sample-apps.jar --help CassandraKeyValue
java -jar yb-sample-apps.jar --help CassandraKeyValue
1 [main] INFO com.yugabyte.sample.Main - Starting sample app...
Usage and options for workload CassandraKeyValue in YugabyteDB Sample Apps.

Expand Down Expand Up @@ -58,18 +58,18 @@ You need the following to build:

To build, simply run the following:
```
$ mvn -DskipTests -DskipDockerBuild package
mvn -DskipTests -DskipDockerBuild package
```

You can find the executable one-jar at the following location:
```
$ ls target/yb-sample-apps.jar
ls target/yb-sample-apps.jar
target/yb-sample-apps.jar
```

To docker image with the package, simply run the following:
```
$ mvn package
mvn package
```

## Supported Workloads
Expand Down