|
| 1 | +/* |
| 2 | + * Copyright 2020 Google LLC |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.example.bigquery; |
| 18 | + |
| 19 | +// [START bigquery_query_clustered_table] |
| 20 | +import com.google.cloud.bigquery.BigQuery; |
| 21 | +import com.google.cloud.bigquery.BigQueryException; |
| 22 | +import com.google.cloud.bigquery.BigQueryOptions; |
| 23 | +import com.google.cloud.bigquery.QueryJobConfiguration; |
| 24 | +import com.google.cloud.bigquery.TableResult; |
| 25 | + |
| 26 | +public class QueryClusteredTable { |
| 27 | + |
| 28 | + public static void runQueryClusteredTable() throws Exception { |
| 29 | + // TODO(developer): Replace these variables before running the sample. |
| 30 | + String projectId = "MY_PROJECT_ID"; |
| 31 | + String datasetName = "MY_DATASET_NAME"; |
| 32 | + String tableName = "MY_TABLE_NAME"; |
| 33 | + queryClusteredTable(projectId, datasetName, tableName); |
| 34 | + } |
| 35 | + |
| 36 | + public static void queryClusteredTable(String projectId, String datasetName, String tableName) { |
| 37 | + try { |
| 38 | + // Initialize client that will be used to send requests. This client only needs to be created |
| 39 | + // once, and can be reused for multiple requests. |
| 40 | + BigQuery bigquery = BigQueryOptions.getDefaultInstance().getService(); |
| 41 | + |
| 42 | + String sourceTable = "`" + projectId + "." + datasetName + "." + tableName + "`"; |
| 43 | + String query = |
| 44 | + "SELECT word, word_count\n" |
| 45 | + + "FROM " |
| 46 | + + sourceTable |
| 47 | + + "\n" |
| 48 | + // Optimize query performance by filtering the clustered columns in sort order |
| 49 | + + "WHERE corpus = 'romeoandjuliet'\n" |
| 50 | + + "AND word_count >= 1"; |
| 51 | + |
| 52 | + QueryJobConfiguration queryConfig = QueryJobConfiguration.newBuilder(query).build(); |
| 53 | + |
| 54 | + TableResult results = bigquery.query(queryConfig); |
| 55 | + |
| 56 | + results |
| 57 | + .iterateAll() |
| 58 | + .forEach(row -> row.forEach(val -> System.out.printf("%s,", val.toString()))); |
| 59 | + |
| 60 | + System.out.println("Query clustered table performed successfully."); |
| 61 | + } catch (BigQueryException | InterruptedException e) { |
| 62 | + System.out.println("Query not performed \n" + e.toString()); |
| 63 | + } |
| 64 | + } |
| 65 | +} |
| 66 | +// [END bigquery_query_clustered_table] |
0 commit comments