nodejs-bigtable
nodejs-bigtable copied to clipboard
Table.create() is really slow when using the bigatble emulator
Environment details
- OS: any
- Node.js version: any
- npm version: any
@google-cloud/bigtableversion: 5.0.0google-gaxversion: 4.3.0
Steps to reproduce
- Call Table.create() while using the bigtable emulator
- This call will take around 300ms (very slow compared to before)
firebase-tools reported a similar issue at google-gax which they were able to solve by changing their config:
- https://github.com/googleapis/gax-nodejs/issues/1566
- https://github.com/firebase/firebase-tools/issues/6765
I'm not very familiar with this codebase but my guess is that this fix could work here as well. Otherwise I would suggest pinning the google-gax version to something like ~4.2.1.
Thank you!