org.apache.camel.component.google.bigquery.GoogleBigQueryEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-google-bigquery Show documentation
Show all versions of camel-google-bigquery Show documentation
Camel Component for Google Cloud Platform BigQuery
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.camel.component.google.bigquery;
import com.google.cloud.bigquery.BigQuery;
import org.apache.camel.Category;
import org.apache.camel.Consumer;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.spi.EndpointServiceLocation;
import org.apache.camel.spi.UriEndpoint;
import org.apache.camel.spi.UriParam;
import org.apache.camel.support.DefaultEndpoint;
import org.apache.camel.util.ObjectHelper;
import static org.apache.camel.component.google.bigquery.GoogleBigQueryConstants.SCHEME_BIGQUERY;
/**
* Google BigQuery data warehouse for analytics.
*
* BigQuery Endpoint Definition Represents a table within a BigQuery dataset Contains configuration details for a single
* table and the utility methods (such as check, create) to ease operations URI Parameters: * Logger ID - To ensure that
* logging is unified under Route Logger, the logger ID can be passed on via an endpoint URI parameter * Partitioned -
* to indicate that the table needs to be partitioned - every UTC day to be written into a timestamped separate table
* side effect: Australian operational day is always split between two UTC days, and, therefore, tables
*
* Another consideration is that exceptions are not handled within the class. They are expected to bubble up and be
* handled by Camel.
*/
@UriEndpoint(firstVersion = "2.20.0", scheme = SCHEME_BIGQUERY, title = "Google BigQuery",
syntax = "google-bigquery:projectId:datasetId:tableId",
category = { Category.CLOUD, Category.BIGDATA }, producerOnly = true, headersClass = GoogleBigQueryConstants.class)
public class GoogleBigQueryEndpoint extends DefaultEndpoint implements EndpointServiceLocation {
@UriParam
protected final GoogleBigQueryConfiguration configuration;
private BigQuery bigQuery;
protected GoogleBigQueryEndpoint(String endpointUri, GoogleBigQueryComponent component,
GoogleBigQueryConfiguration configuration) {
super(endpointUri, component);
this.configuration = configuration;
}
@Override
public Producer createProducer() throws Exception {
return new GoogleBigQueryProducer(bigQuery, this, configuration);
}
@Override
protected void doStart() throws Exception {
super.doStart();
GoogleBigQueryConnectionFactory connFactory = configuration.getConnectionFactory();
if (connFactory == null) {
connFactory = new GoogleBigQueryConnectionFactory()
.setCamelContext(getCamelContext())
.setServiceAccountKeyFile(configuration.getServiceAccountKey());
configuration.setConnectionFactory(connFactory);
}
bigQuery = connFactory.getDefaultClient();
}
@Override
public Consumer createConsumer(Processor processor) throws Exception {
throw new UnsupportedOperationException("Cannot consume from the BigQuery endpoint: " + getEndpointUri());
}
public GoogleBigQueryConfiguration getConfiguration() {
return configuration;
}
@Override
public GoogleBigQueryComponent getComponent() {
return (GoogleBigQueryComponent) super.getComponent();
}
@Override
public String getServiceUrl() {
if (ObjectHelper.isNotEmpty(configuration.getProjectId()) && ObjectHelper.isNotEmpty(configuration.getDatasetId())
&& ObjectHelper.isNotEmpty(configuration.getTableId())) {
return getServiceProtocol() + ":" + configuration.getProjectId() + ":" + configuration.getDatasetId() + ":"
+ configuration.getTableId();
}
return null;
}
@Override
public String getServiceProtocol() {
return "big-query";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy