memgraph/tests/distributed/card_fraud/config.json
Matej Ferencevic 7e945c6667 Integrate distributed card fraud test with Apollo
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1247
2018-02-28 11:09:18 +01:00

21 lines
389 B
JSON

{
"indexes" : ["Card.id", "Pos.id", "Transaction.fraud_reported"],
"nodes" : [
{
"count_per_worker" : 10000,
"label" : "Card"
},
{
"count_per_worker" : 1000,
"label" : "Pos"
},
{
"count_per_worker" : 50000,
"label" : "Transaction"
}
],
"compromised_pos_probability" : 0.2,
"fraud_reported_probability" : 0.1,
"hop_probability" : 0.1
}