What is the recommended way to provide Bigquery access to end users?
We have a multitenant application for appengine where each company has its own namespace in Datastore. We can ingest data from these individual namespaces into BigQuery and run various reports.
We would like to let our users to be able to run queries in their respective BigQuery projects. What is the best way to achieve this?
Possible options:
- user sends query to appengine, which passes it to his BigQuery project and returns reply
- user sends query to BigQuery directly. The question here, how is the best to faciliate this?
- some other way?