Skip to content

Commit

Permalink
Add missing dataset property to example (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Jun 13, 2024
1 parent 74d004a commit 93a4d8e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/configuration/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ YAML is recommended and all examples will be presented as YAML.
The following example shows a basic configuration for a benchmark suite as an introduction.

```yaml
dataset:
- name: "sp2b" # for documentation purposes

connections:
- name: "fuseki"
endpoint: "http://localhost:3030/sparql"
dataset: "sp2b"

tasks:
- type: "stresstest" # stresstest the endpoint
Expand Down Expand Up @@ -43,6 +47,7 @@ storages:
This configuration defines a benchmark suite that stresstests a triplestore with two workers.

The triplestore is named `fuseki` and is located at `http://localhost:3030/sparql`.
The dataset, that is used for the benchmark, is named `sp2b`.
During the stresstest the workers will send SPARQL queries
that are located in the file `./example/suite/queries.txt` to the triplestore.
They will stop after they have executed all queries once, which is defined by the `completionTarget`-property.
Expand Down

0 comments on commit 93a4d8e

Please sign in to comment.