Daniel Seybold
Daniel Seybold
Can you please share the commands that you used? Sounds like you have not yet executed the query execution which will perform the reads, see https://github.com/timescale/tsbs#benchmarking-query-execution-performance And be aware that...
I did a quick check on the provided details but I could not spot any issue but in general I suggest longer a longer runtime (i.e. bigger number of queries)...
Hi @2310652493 did you run the `load` command before running the `run` command? Looks like no records to update or read are found in the database, so you might have...
Looks like the Cassandra instance is overloaded and can not process the INSERT load. You can increase the retry counter, reduce the number of threads or increase the Cassandra resources...
Hi @anandht2fid the version `0.17.0` does not support the SRV style connection. You can either build the YCSB latest `0.18.0-SNAPSHOT` manually or use the IP based connection string with 0.17.0.
I am not sure what the state of the async driver. The last update on the YCSB code base for the async driver was already 4 ago. And it looks...
Well, you are using `YCSB Client 0.17.0` and as pointed out here https://github.com/brianfrankcooper/YCSB/issues/1681#issuecomment-1637493284 you need to build the current `master` and use the resulting snapshot. We run a lot of...
@anandht2fid not sure how you try to build the 0.18.0-snapshot but these commands will work: ```bash git clone https://github.com/brianfrankcooper/YCSB.git cd YCSB/ && mvn clean package -Dcheckstyle.skip -DskipTests ```
Thanks for your reply @busbey > How are you confirming that the load phase was successful? This is confirmed by the result file [result.txt](https://github.com/brianfrankcooper/YCSB/files/8991681/result.txt) and I also checked the MongoDB...