André Gomes
André Gomes
I also have the same problem here but I am running VS2017 with non admin user. After opening a feature, I notice that VS2017 CPU consumption is 30% in average....
The output is as following when debug messages are enabled: ``` [bigquery-emulator] REST server listening at 0.0.0.0:9050 [bigquery-emulator] gRPC server listening at 0.0.0.0:9060 2024-06-10T13:36:01.108-0400 INFO server/middleware.go:63 POST /projects/sample_project_emulator/datasets {"query": "prettyPrint=false"}...
Hey @sewemark, I used a workaround both for local development and for CI purposes: ```bash BIGQUERY_PROJECT_ID=sample_project_emulator BIGQUERY_EMULATOR_PORT=19050 while true do /bin/bigquery-emulator \ --project=${BIGQUERY_PROJECT_ID} \ --port=${BIGQUERY_EMULATOR_PORT} \ --database=bigquery.db \ --log-level=debug &...