Here is what I have done so far: We are using Simba Google BigQuery JDBC driver (version 41_1.2.0.1) in Teiid WildFly server to connect to bigequery. We are using below connection URL. jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443;OAuthType=2;ProjectId=xyz
Here is what I am looking for: We need to connect to specific dataset using connectionURL and fetch metadata only of that dataset.
To achieve above I have also tried to use DefaultDataset parameter that is available and even after using it in Connection URL, Driver is fetching metadata of all datasets available inside mentioned project.
Problem with above: This really slows down the process of deploying VBD via Teiid. I think this is mainly due to multiple datasets as when I try to connect to a project with only one dataset, the same us done just in seconds.
Thanks