How to connect to a running bigtable emulator from java
问题 I am trying to use the bigtable emulator from gcloud beta emulators. I launch the emulator, grab the hostname (localhost) and port (in this instance 8885) gcloud beta emulators bigtable start Executing: /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/platform/bigtable-emulator/cbtemulator --host=localhost --port=8885 I am trying to connect to the emulator from a java test client, here is what I provide: Configuration conf = BigtableConfiguration.configure(projectId, instanceId);