Closed stonewhitener closed 2 years ago
@y-sira I was not able to recreate your issue. I just tested with the Spanner Emulator and was able to successfully run ycsb
against the emulator following the steps here... https://github.com/cmu-db/benchbase/tree/main/docker/spanner-emulator
Have you had a chance to try that?
One thing i am noticing is that there may be a problem with the latest version of the spanner jdbc driver. We recently merged in the latest version 2.5.5
. I'm running into problems testing against the emulator with this version. If i revert the jdbc driver back to version 2.5.1
ycsb executes fine. If you are running the latest code from the main
branch you may want to change the pom.xml
file to point to while more research is done.
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-jdbc</artifactId>
<version>2.5.1</version>
</dependency>
If i revert the jdbc driver back to version
2.5.1
ycsb executes fine.
It works for me too.
I will share my experience on my real Spanner instance after further inspection. (This issue can be closed.)
this issue will ultimately be resolved when #97 is closed
I am trying to benchmark Cloud Spanner with YCSB, however, YCSB table creation never ends.
I have already checked that the credentials work well and the same table can be created using simple code like this.
I couldn't make any progress on this problem though I investigated the source code.