Skip to content

Commit

Permalink
Add BigQuery snippets for Job.isDone() (#1250)
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast authored and mziccard committed Sep 16, 2016
1 parent 3c62510 commit 9a0e9de
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,8 @@ public static void main(String... args) throws InterruptedException {
firstRow.put("StringField", "value1");
secondRow.put("StringField", "value2");
// Create an insert request
InsertAllRequest insertRequest = InsertAllRequest.builder(tableId)
.addRow(firstRow)
.addRow(secondRow)
.build();
InsertAllRequest insertRequest =
InsertAllRequest.builder(tableId).addRow(firstRow).addRow(secondRow).build();
// Insert rows
InsertAllResponse insertResponse = bigquery.insertAll(insertRequest);
// Check if errors occurred
Expand All @@ -82,10 +80,11 @@ public static void main(String... args) throws InterruptedException {
}

// Create a query request
QueryRequest queryRequest = QueryRequest.builder("SELECT * FROM my_dataset_id.my_table_id")
.maxWaitTime(60000L)
.pageSize(1000L)
.build();
QueryRequest queryRequest =
QueryRequest.builder("SELECT * FROM my_dataset_id.my_table_id")
.maxWaitTime(60000L)
.pageSize(1000L)
.build();
// Request query to be executed and wait for results
QueryResponse queryResponse = bigquery.query(queryRequest);
while (!queryResponse.jobCompleted()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
* EDITING INSTRUCTIONS
* This file is referenced in Job's javadoc. Any change to this file should be reflected in
* Job's javadoc.
*/

package com.google.cloud.examples.bigquery.snippets;

import com.google.cloud.bigquery.Job;

public class JobSnippets {

private final Job job;

public JobSnippets(Job job) {
this.job = job;
}

/**
* Example of waiting for a job until it reports that it is done.
*/
// [TARGET isDone()]
public boolean isDone() {
try {
// [START isDone]
while (!job.isDone()) {
Thread.sleep(1000L);
}
// [END isDone]
} catch (InterruptedException e) {
return false;
}
return true;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.google.cloud.examples.bigquery.snippets;

import static org.junit.Assert.assertTrue;

import com.google.cloud.bigquery.BigQuery;
import com.google.cloud.bigquery.Job;
import com.google.cloud.bigquery.JobConfiguration;
import com.google.cloud.bigquery.JobInfo;
import com.google.cloud.bigquery.QueryJobConfiguration;
import com.google.cloud.bigquery.testing.RemoteBigQueryHelper;

import org.junit.BeforeClass;
import org.junit.Test;

public class ITJobSnippets {

private static BigQuery bigquery;

@BeforeClass
public static void beforeClass() {
bigquery = RemoteBigQueryHelper.create().options().service();
}

@Test
public void testIsDone() throws Exception {
JobConfiguration jobConfig =
QueryJobConfiguration.builder(
"SELECT corpus FROM `publicdata.samples.shakespeare` GROUP BY corpus;")
.useLegacySql(false)
.build();
JobInfo jobInfo = JobInfo.builder(jobConfig).build();
Job job = bigquery.create(jobInfo);
JobSnippets jobSnippets = new JobSnippets(job);
boolean result = jobSnippets.isDone();
assertTrue(result);
}
}

0 comments on commit 9a0e9de

Please sign in to comment.