This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(samples): create and delete scheduled query (#225)
- Loading branch information
Praful Makani
committed
Jun 26, 2020
1 parent
87d834e
commit d2eb675
Showing
7 changed files
with
370 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
samples/snippets/src/main/java/com/example/bigquerydatatransfer/CreateScheduledQuery.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* 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.example.bigquerydatatransfer; | ||
|
||
// [START bigquerydatatransfer_create_scheduled_query] | ||
import com.google.api.gax.rpc.ApiException; | ||
import com.google.cloud.bigquery.datatransfer.v1.CreateTransferConfigRequest; | ||
import com.google.cloud.bigquery.datatransfer.v1.DataTransferServiceClient; | ||
import com.google.cloud.bigquery.datatransfer.v1.ProjectName; | ||
import com.google.cloud.bigquery.datatransfer.v1.TransferConfig; | ||
import com.google.protobuf.Struct; | ||
import com.google.protobuf.Value; | ||
|
||
import java.io.IOException; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
// Sample to create a scheduled query | ||
public class CreateScheduledQuery { | ||
|
||
public static void runCreateScheduledQuery() { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "MY_PROJECT_ID"; | ||
String datasetId = "MY_DATASET_ID"; | ||
String query = | ||
"SELECT CURRENT_TIMESTAMP() as current_time, @run_time as intended_run_time, @run_date as intended_run_date, 17 as some_integer"; | ||
Map<String, Value> params = new HashMap<>(); | ||
params.put("query", Value.newBuilder().setStringValue(query).build()); | ||
params.put( | ||
"destination_table_name_template", | ||
Value.newBuilder().setStringValue("my_destination_table_{run_date}").build()); | ||
params.put("write_disposition", Value.newBuilder().setStringValue("WRITE_TRUNCATE").build()); | ||
params.put("partitioning_field", Value.newBuilder().build()); | ||
TransferConfig transferConfig = | ||
TransferConfig.newBuilder() | ||
.setDestinationDatasetId(datasetId) | ||
.setDisplayName("Your Scheduled Query Name") | ||
.setDataSourceId("scheduled_query") | ||
.setParams(Struct.newBuilder().putAllFields(params).build()) | ||
.setSchedule("every 24 hours") | ||
.build(); | ||
createScheduledQuery(projectId, transferConfig); | ||
} | ||
|
||
public static void createScheduledQuery(String projectId, TransferConfig transferConfig) { | ||
try (DataTransferServiceClient dataTransferServiceClient = DataTransferServiceClient.create()) { | ||
ProjectName parent = ProjectName.of(projectId); | ||
CreateTransferConfigRequest request = | ||
CreateTransferConfigRequest.newBuilder() | ||
.setParent(parent.toString()) | ||
.setTransferConfig(transferConfig) | ||
.build(); | ||
TransferConfig config = dataTransferServiceClient.createTransferConfig(request); | ||
System.out.print("Scheduled query created successfully." + config.getName()); | ||
} catch (IOException | ApiException ex) { | ||
System.out.print("Scheduled query was not created." + ex.toString()); | ||
} | ||
} | ||
} | ||
// [END bigquerydatatransfer_create_scheduled_query] |
48 changes: 48 additions & 0 deletions
48
samples/snippets/src/main/java/com/example/bigquerydatatransfer/DeleteScheduledQuery.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* 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.example.bigquerydatatransfer; | ||
|
||
// [START bigquerydatatransfer_delete_scheduled_query] | ||
import com.google.api.gax.rpc.ApiException; | ||
import com.google.cloud.bigquery.datatransfer.v1.DataTransferServiceClient; | ||
import com.google.cloud.bigquery.datatransfer.v1.DeleteTransferConfigRequest; | ||
|
||
import java.io.IOException; | ||
|
||
// Sample to delete a scheduled query | ||
public class DeleteScheduledQuery { | ||
|
||
public static void runDeleteScheduledQuery() { | ||
// TODO(developer): Replace these variables before running the sample. | ||
// i.e projects/{project_id}/transferConfigs/{config_id}` or | ||
// `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}` | ||
String name = "MY_CONFIG_ID"; | ||
deleteScheduledQuery(name); | ||
} | ||
|
||
public static void deleteScheduledQuery(String name) { | ||
try (DataTransferServiceClient dataTransferServiceClient = DataTransferServiceClient.create()) { | ||
DeleteTransferConfigRequest request = | ||
DeleteTransferConfigRequest.newBuilder().setName(name).build(); | ||
dataTransferServiceClient.deleteTransferConfig(request); | ||
System.out.print("Scheduled query deleted successfully."); | ||
} catch (IOException | ApiException ex) { | ||
System.out.print("Scheduled query was not deleted." + ex.toString()); | ||
} | ||
} | ||
} | ||
// [END bigquerydatatransfer_delete_scheduled_query] |
112 changes: 112 additions & 0 deletions
112
samples/snippets/src/test/java/com/example/bigquerydatatransfer/CreateScheduledQueryIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* 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.example.bigquerydatatransfer; | ||
|
||
import com.google.cloud.bigquery.BigQuery; | ||
import com.google.cloud.bigquery.BigQueryOptions; | ||
import com.google.cloud.bigquery.DatasetInfo; | ||
import com.google.cloud.bigquery.datatransfer.v1.TransferConfig; | ||
import com.google.cloud.bigquery.datatransfer.v1.TransferState; | ||
import com.google.protobuf.Struct; | ||
import com.google.protobuf.Value; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.io.PrintStream; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
import static junit.framework.TestCase.assertNotNull; | ||
|
||
public class CreateScheduledQueryIT { | ||
|
||
private BigQuery bigquery; | ||
private ByteArrayOutputStream bout; | ||
private String name; | ||
private String displayName; | ||
private String datasetName; | ||
private PrintStream out; | ||
|
||
private static final String PROJECT_ID = requireEnvVar("GOOGLE_CLOUD_PROJECT"); | ||
|
||
private static String requireEnvVar(String varName) { | ||
String value = System.getenv(varName); | ||
assertNotNull( | ||
"Environment variable " + varName + " is required to perform these tests.", | ||
System.getenv(varName)); | ||
return value; | ||
} | ||
|
||
@BeforeClass | ||
public static void checkRequirements() { | ||
requireEnvVar("GOOGLE_CLOUD_PROJECT"); | ||
} | ||
|
||
@Before | ||
public void setUp() { | ||
displayName = "MY_SCHEDULE_NAME_TEST_" + UUID.randomUUID().toString().substring(0, 8); | ||
datasetName = "MY_DATASET_NAME_TEST_" + UUID.randomUUID().toString().substring(0, 8); | ||
// create a temporary dataset | ||
bigquery = BigQueryOptions.getDefaultInstance().getService(); | ||
bigquery.create(DatasetInfo.of(datasetName)); | ||
bout = new ByteArrayOutputStream(); | ||
out = new PrintStream(bout); | ||
System.setOut(out); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
// Clean up | ||
DeleteScheduledQuery.deleteScheduledQuery(name); | ||
// delete a temporary dataset | ||
bigquery.delete(datasetName, BigQuery.DatasetDeleteOption.deleteContents()); | ||
System.setOut(null); | ||
} | ||
|
||
@Test | ||
public void testCreateScheduledQuery() { | ||
String query = | ||
"SELECT CURRENT_TIMESTAMP() as current_time, @run_time as intended_run_time, @run_date as intended_run_date, 17 as some_integer"; | ||
String destinationTableName = | ||
"MY_DESTINATION_TABLE_" + UUID.randomUUID().toString().substring(0, 8) + "_{run_date}"; | ||
Map<String, Value> params = new HashMap<>(); | ||
params.put("query", Value.newBuilder().setStringValue(query).build()); | ||
params.put( | ||
"destination_table_name_template", | ||
Value.newBuilder().setStringValue(destinationTableName).build()); | ||
params.put("write_disposition", Value.newBuilder().setStringValue("WRITE_TRUNCATE").build()); | ||
params.put("partitioning_field", Value.newBuilder().setStringValue("").build()); | ||
TransferConfig transferConfig = | ||
TransferConfig.newBuilder() | ||
.setDestinationDatasetId(datasetName) | ||
.setDisplayName(displayName) | ||
.setDataSourceId("scheduled_query") | ||
.setParams(Struct.newBuilder().putAllFields(params).build()) | ||
.setSchedule("every 24 hours") | ||
.setState(TransferState.CANCELLED) | ||
.build(); | ||
CreateScheduledQuery.createScheduledQuery(PROJECT_ID, transferConfig); | ||
String result = bout.toString(); | ||
name = result.substring(result.indexOf(".") + 1); | ||
assertThat(result).contains("Scheduled query created successfully."); | ||
} | ||
} |
117 changes: 117 additions & 0 deletions
117
samples/snippets/src/test/java/com/example/bigquerydatatransfer/DeleteScheduledQueryIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* 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.example.bigquerydatatransfer; | ||
|
||
import com.google.cloud.bigquery.BigQuery; | ||
import com.google.cloud.bigquery.BigQueryOptions; | ||
import com.google.cloud.bigquery.DatasetInfo; | ||
import com.google.cloud.bigquery.datatransfer.v1.TransferConfig; | ||
import com.google.protobuf.Struct; | ||
import com.google.protobuf.Value; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.io.PrintStream; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
import static junit.framework.TestCase.assertNotNull; | ||
|
||
public class DeleteScheduledQueryIT { | ||
|
||
private BigQuery bigquery; | ||
private ByteArrayOutputStream bout; | ||
private String name; | ||
private String displayName; | ||
private String datasetName; | ||
private PrintStream out; | ||
|
||
private static final String PROJECT_ID = requireEnvVar("GOOGLE_CLOUD_PROJECT"); | ||
|
||
private static String requireEnvVar(String varName) { | ||
String value = System.getenv(varName); | ||
assertNotNull( | ||
"Environment variable " + varName + " is required to perform these tests.", | ||
System.getenv(varName)); | ||
return value; | ||
} | ||
|
||
@BeforeClass | ||
public static void checkRequirements() { | ||
requireEnvVar("GOOGLE_CLOUD_PROJECT"); | ||
} | ||
|
||
@Before | ||
public void setUp() { | ||
bout = new ByteArrayOutputStream(); | ||
out = new PrintStream(bout); | ||
System.setOut(out); | ||
|
||
displayName = "MY_SCHEDULE_NAME_TEST_" + UUID.randomUUID().toString().substring(0, 8); | ||
datasetName = "MY_DATASET_NAME_TEST_" + UUID.randomUUID().toString().substring(0, 8); | ||
// create a temporary dataset | ||
bigquery = BigQueryOptions.getDefaultInstance().getService(); | ||
bigquery.create(DatasetInfo.of(datasetName)); | ||
|
||
// create a scheduled query | ||
String query = | ||
"SELECT CURRENT_TIMESTAMP() as current_time, @run_time as intended_run_time, @run_date as intended_run_date, 17 as some_integer"; | ||
String destinationTableName = | ||
"MY_DESTINATION_TABLE_" + UUID.randomUUID().toString().substring(0, 8) + "_{run_date}"; | ||
Map<String, Value> params = new HashMap<>(); | ||
params.put("query", Value.newBuilder().setStringValue(query).build()); | ||
params.put( | ||
"destination_table_name_template", | ||
Value.newBuilder().setStringValue(destinationTableName).build()); | ||
params.put("write_disposition", Value.newBuilder().setStringValue("WRITE_TRUNCATE").build()); | ||
params.put("partitioning_field", Value.newBuilder().setStringValue("").build()); | ||
TransferConfig transferConfig = | ||
TransferConfig.newBuilder() | ||
.setDestinationDatasetId(datasetName) | ||
.setDisplayName(displayName) | ||
.setDataSourceId("scheduled_query") | ||
.setParams(Struct.newBuilder().putAllFields(params).build()) | ||
.setSchedule("every 24 hours") | ||
.build(); | ||
CreateScheduledQuery.createScheduledQuery(PROJECT_ID, transferConfig); | ||
String result = bout.toString(); | ||
name = result.substring(result.indexOf(".") + 1); | ||
|
||
bout = new ByteArrayOutputStream(); | ||
out = new PrintStream(bout); | ||
System.setOut(out); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
// delete a temporary dataset | ||
bigquery.delete(datasetName, BigQuery.DatasetDeleteOption.deleteContents()); | ||
System.setOut(null); | ||
} | ||
|
||
@Test | ||
public void testDeleteScheduledQuery() { | ||
// delete scheduled query that was just created | ||
DeleteScheduledQuery.deleteScheduledQuery(name); | ||
assertThat(bout.toString()).contains("Scheduled query deleted successfully."); | ||
} | ||
} |