-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add BigLakeConfiguration Property in StandardTableDefinition.ja…
…va (#2916) * Added BigLakeConfiguration in standard table defenition * feat: Add BigLakeConfiguration Property in StandardTableDefinition.java * feat: Update copyright dates to 2023 * feat: Removed bigstore and gs:/ from docs * feat: Renamed Biglake to BigLake * feat: Adding difference entry to resolve clirr error * feat: Refactored formatting to comply with project rules * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
b82692a
commit 1d660fa
Showing
5 changed files
with
234 additions
and
0 deletions.
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
120 changes: 120 additions & 0 deletions
120
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigLakeConfiguration.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,120 @@ | ||
/* | ||
* Copyright 2023 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.google.cloud.bigquery; | ||
|
||
import com.google.auto.value.AutoValue; | ||
import java.io.Serializable; | ||
|
||
@AutoValue | ||
public abstract class BigLakeConfiguration implements Serializable { | ||
|
||
private static final long serialVersionUID = -5951589238459622025L; | ||
|
||
/** | ||
* Credential reference for accessing external storage system. Normalized as | ||
* project_id.location_id.connection_id. | ||
* | ||
* @return value or {@code null} for none | ||
*/ | ||
public abstract String getConnectionId(); | ||
|
||
/** | ||
* Open source file format that the table data is stored in. Currently only PARQUET is supported. | ||
* | ||
* @return value or {@code null} for none | ||
*/ | ||
public abstract String getFileFormat(); | ||
|
||
/** | ||
* Fully qualified location prefix of the external folder where data is stored. Starts with | ||
* "gs://" ends with "/". Does not contain "*". | ||
* | ||
* @return value or {@code null} for none | ||
*/ | ||
public abstract String getStorageUri(); | ||
|
||
/** | ||
* Open source file format that the table data is stored in. Currently only PARQUET is supported. | ||
* | ||
* @return value or {@code null} for none | ||
*/ | ||
public abstract String getTableFormat(); | ||
|
||
public static Builder newBuilder() { | ||
return new AutoValue_BigLakeConfiguration.Builder(); | ||
} | ||
|
||
public abstract Builder toBuilder(); | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
/** | ||
* [Required] Required and immutable. Credential reference for accessing external storage | ||
* system. Normalized as project_id.location_id.connection_id. | ||
* | ||
* @param connectionId connectionId or {@code null} for none | ||
*/ | ||
public abstract Builder setConnectionId(String connectionId); | ||
|
||
/** | ||
* [Required] Required and immutable. Open source file format that the table data is stored in. | ||
* Currently only PARQUET is supported. | ||
* | ||
* @param fileFormat fileFormat or {@code null} for none | ||
*/ | ||
public abstract Builder setFileFormat(String fileFormat); | ||
|
||
/** | ||
* [Required] Required and immutable. Fully qualified location prefix of the external folder | ||
* where data is stored. Starts with "gs://" and ends with "/". Does not contain "*". | ||
* | ||
* @param storageUri storageUri or {@code null} for none | ||
*/ | ||
public abstract Builder setStorageUri(String storageUri); | ||
|
||
/** | ||
* [Required] Required and immutable. Open source file format that the table data is stored in. | ||
* Currently only PARQUET is supported. | ||
* | ||
* @param tableFormat tableFormat or {@code null} for none | ||
*/ | ||
public abstract Builder setTableFormat(String tableFormat); | ||
|
||
public abstract BigLakeConfiguration build(); | ||
} | ||
|
||
com.google.api.services.bigquery.model.BigLakeConfiguration toPb() { | ||
com.google.api.services.bigquery.model.BigLakeConfiguration biglakeConfiguration = | ||
new com.google.api.services.bigquery.model.BigLakeConfiguration(); | ||
biglakeConfiguration.setConnectionId(getConnectionId()); | ||
biglakeConfiguration.setFileFormat(getFileFormat()); | ||
biglakeConfiguration.setStorageUri(getStorageUri()); | ||
biglakeConfiguration.setTableFormat(getTableFormat()); | ||
|
||
return biglakeConfiguration; | ||
} | ||
|
||
static BigLakeConfiguration fromPb( | ||
com.google.api.services.bigquery.model.BigLakeConfiguration biglakeConfigurationPb) { | ||
return newBuilder() | ||
.setConnectionId(biglakeConfigurationPb.getConnectionId()) | ||
.setFileFormat(biglakeConfigurationPb.getFileFormat()) | ||
.setStorageUri(biglakeConfigurationPb.getStorageUri()) | ||
.setTableFormat(biglakeConfigurationPb.getTableFormat()) | ||
.build(); | ||
} | ||
} |
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
80 changes: 80 additions & 0 deletions
80
google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/BigLakeConfigurationTest.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,80 @@ | ||
/* | ||
* Copyright 2023 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.google.cloud.bigquery; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import org.junit.Test; | ||
|
||
public class BigLakeConfigurationTest { | ||
|
||
private static final String STORAGE_URI = "gs://storage-uri"; | ||
private static final String FILE_FORMAT = "PARQUET"; | ||
private static final String TABLE_FORMAT = "ICEBERG"; | ||
private static final String CONNECTION_ID = "us.test-connection"; | ||
|
||
private static final BigLakeConfiguration BIG_LAKE_CONFIGURATION = | ||
BigLakeConfiguration.newBuilder() | ||
.setStorageUri(STORAGE_URI) | ||
.setFileFormat(FILE_FORMAT) | ||
.setTableFormat(TABLE_FORMAT) | ||
.setConnectionId(CONNECTION_ID) | ||
.build(); | ||
private static final com.google.api.services.bigquery.model.BigLakeConfiguration | ||
BIG_LAKE_CONFIGURATION_PB = | ||
new com.google.api.services.bigquery.model.BigLakeConfiguration() | ||
.setStorageUri(STORAGE_URI) | ||
.setFileFormat(FILE_FORMAT) | ||
.setTableFormat(TABLE_FORMAT) | ||
.setConnectionId(CONNECTION_ID); | ||
|
||
@Test | ||
public void testToBuilder() { | ||
assertEquals(STORAGE_URI, BIG_LAKE_CONFIGURATION.getStorageUri()); | ||
assertEquals(FILE_FORMAT, BIG_LAKE_CONFIGURATION.getFileFormat()); | ||
assertEquals(TABLE_FORMAT, BIG_LAKE_CONFIGURATION.getTableFormat()); | ||
assertEquals(CONNECTION_ID, BIG_LAKE_CONFIGURATION.getConnectionId()); | ||
} | ||
|
||
@Test | ||
public void testToPb() { | ||
assertBigLakeConfiguration(BIG_LAKE_CONFIGURATION_PB, BIG_LAKE_CONFIGURATION.toPb()); | ||
} | ||
|
||
@Test | ||
public void testFromPb() { | ||
assertBigLakeConfiguration( | ||
BIG_LAKE_CONFIGURATION, BigLakeConfiguration.fromPb(BIG_LAKE_CONFIGURATION_PB)); | ||
} | ||
|
||
private static void assertBigLakeConfiguration( | ||
BigLakeConfiguration expected, BigLakeConfiguration actual) { | ||
assertEquals(expected.getConnectionId(), actual.getConnectionId()); | ||
assertEquals(expected.getTableFormat(), actual.getTableFormat()); | ||
assertEquals(expected.getStorageUri(), actual.getStorageUri()); | ||
assertEquals(expected.getFileFormat(), actual.getFileFormat()); | ||
} | ||
|
||
private static void assertBigLakeConfiguration( | ||
com.google.api.services.bigquery.model.BigLakeConfiguration expected, | ||
com.google.api.services.bigquery.model.BigLakeConfiguration actual) { | ||
assertEquals(expected.getConnectionId(), actual.getConnectionId()); | ||
assertEquals(expected.getTableFormat(), actual.getTableFormat()); | ||
assertEquals(expected.getStorageUri(), actual.getStorageUri()); | ||
assertEquals(expected.getFileFormat(), actual.getFileFormat()); | ||
} | ||
} |
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