vamsi krishna
vamsi krishna

Reputation: 81

Can I use a Google Cloud Storage endpoint for BigQuery?

I would like to know if it is possible to configure an endpoint(API Endpoint) to Google Cloud Storage for Google BigQuery. For eg: when creating a google cloud storage client with the API endpoint

client_options = {"api_endpoint": url} storage_client = storage.Client(client_options=client_options)

I have looked at it everywhere in the documentation I could not find it. Is this even possible?

The idea is to use the endpoint to get to Google Cloud Storage for all the BigQuery queries.

Thanks and best regards Krishna

Upvotes: 0

Views: 246

Answers (1)

Gourav B
Gourav B

Reputation: 972

As mentioned by @guillaume blaquiere,

BigQuery can only read file from Cloud Storage. External links (at least URL which aren't GS://) aren't allowed.

This is also evident in the link shared by @Prabir

Upvotes: 1

Related Questions