最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Spark Java BigQuery - Stack Overflow

programmeradmin4浏览0评论

I have two GCP projects such as proj-A & proj-B. And, proj-A has a dataset under that there a view created (proj-A.proj_A_dataset.test_table).

I am trying to access this view from proj-B. proj-B has a ServiceAccount and this SA has provided with proj-B dataset "BigQuery Data Viewer" permissions already.

I am getting an error like Error creating destination table using the following query:< And the entire Query> Also, User does not have permission to query table. Access Denied

but access is granted. I am not getting the same error when I try with PySpark. Its only happening with Java. Looks like its trying to create a temp table in the proj-A dataset but only we have Bigdata viewer permissions.

How to resolve this error as this is happening only in Java BigQuery.

        exclude group: 'commons-io', module: 'commons-io'
        exclude group: 'com.google.guava', module: 'guava'
    }
    implementation '.apache.spark:spark-sql_2.12:3.4.3'
    implementation '.projectlombok:lombok:1.18.24'
    implementation 'com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.42.1'
                .appName(“test”)
                .getOrCreate();

        sparkSession.conf().set("viewsEnabled", "true");
        sparkSession.conf().set("materializationProject”,”proj-B”);
        sparkSession.conf().set("materializationDataset”,”test”_dataset);

        String projectId = “proj-A”;
        String dataset = “proj_A_dataset“;
        String table = "test_table";

        String bigQueryTable = projectId + "." + dataset + "." + table ;

        Dataset<Row> bigQueryData  = sparkSession.read().format("bigquery").option("table",bigQueryTable).load();

I even tried without materialization project options. but nothing seems working. Please help. Thanks

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论