memgraph/tests/macro_benchmark/groups/pokec/run.json
Mislav Bradac f91aa7b8fe Add medium sized pokec scenario
Summary: Add window size to plot throughput

Reviewers: florijan

Reviewed By: florijan

Differential Revision: https://phabricator.memgraph.io/D828
2017-09-25 13:20:08 +02:00

27 lines
666 B
JSON

{
"independent_label": "User",
"read_probability": 0.5,
"queries" : [
{
"query": "MATCH (n :User {id : $id})-[]-(m) RETURN AVG(n.age + m.age)",
"params" : [
{
"name" : "id",
"low" : 1,
"high" : 10000
}
]
},
{
"query": "MATCH (n :User {id : $id})-[]-(m)-[]-(k) RETURN AVG(n.age + m.age + k.age)",
"params" : [
{
"name" : "id",
"low" : 1,
"high" : 10000
}
]
}
]
}