I couldn't find example how to set this `<db URL>`. I'm guessing that this should be JDBC connection string? Also how can I specify user and password? ``` $ docker run --rm cockroachdb/loadgen-tpcc -h Usage of tpcc: tpcc <db URL> -check Run consistency checks. ... ``` I tried like that, but it doesn't work. ``` $ docker run --rm \ --network roach_roach-net \ cockroachdb/loadgen-tpcc \ jdbc:postgresql://roach1:26257 \ -drop \ -load \ -v \ -ops-stats \ -tolerate-errors _time______opName__ops/s(inst)__ops/s(cum)__p50(ms)__p95(ms)__p99(ms)_pMax(ms) 1s newOrder 0.0 0.0 0.0 0.0 0.0 0.0 2s newOrder 0.0 0.0 0.0 0.0 0.0 0.0 3s newOrder 0.0 0.0 0.0 0.0 0.0 0.0 2018/03/20 21:04:41 error in payment: dial tcp 127.0.0.1:26257: getsockopt: connection refused ``` Thanks for any info :)
I couldn't find example how to set this
<db URL>. I'm guessing that this should be JDBC connection string? Also how can I specify user and password?I tried like that, but it doesn't work.
Thanks for any info :)