blob: 120d5c52b3fab6af4e625215f8384bb1214ca82b [file] [log] [blame]
/*
* 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.flink.streaming.connectors.kudu;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.streaming.api.functions.sink.RichSinkFunction;
import org.apache.flink.streaming.connectors.kudu.connector.KuduConnector;
import org.apache.flink.streaming.connectors.kudu.connector.KuduRow;
import org.apache.flink.streaming.connectors.kudu.connector.KuduTableInfo;
import org.apache.flink.util.Preconditions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
public class KuduSink<OUT extends KuduRow> extends RichSinkFunction<OUT> {
private static final Logger LOG = LoggerFactory.getLogger(KuduOutputFormat.class);
private String kuduMasters;
private KuduTableInfo tableInfo;
private KuduConnector.Consistency consistency;
private KuduConnector.WriteMode writeMode;
private transient KuduConnector tableContext;
public KuduSink(String kuduMasters, KuduTableInfo tableInfo) {
Preconditions.checkNotNull(kuduMasters,"kuduMasters could not be null");
this.kuduMasters = kuduMasters;
Preconditions.checkNotNull(tableInfo,"tableInfo could not be null");
this.tableInfo = tableInfo;
this.consistency = KuduConnector.Consistency.STRONG;
this.writeMode = KuduConnector.WriteMode.UPSERT;
}
public KuduSink<OUT> withEventualConsistency() {
this.consistency = KuduConnector.Consistency.EVENTUAL;
return this;
}
public KuduSink<OUT> withStrongConsistency() {
this.consistency = KuduConnector.Consistency.STRONG;
return this;
}
public KuduSink<OUT> withUpsertWriteMode() {
this.writeMode = KuduConnector.WriteMode.UPSERT;
return this;
}
public KuduSink<OUT> withInsertWriteMode() {
this.writeMode = KuduConnector.WriteMode.INSERT;
return this;
}
public KuduSink<OUT> withUpdateWriteMode() {
this.writeMode = KuduConnector.WriteMode.UPDATE;
return this;
}
@Override
public void open(Configuration parameters) throws IOException {
startTableContext();
}
private void startTableContext() throws IOException {
if (tableContext != null) return;
tableContext = new KuduConnector(kuduMasters, tableInfo);
}
@Override
public void invoke(OUT kuduRow) throws Exception {
try {
tableContext.writeRow(kuduRow, consistency, writeMode);
} catch (Exception e) {
throw new IOException(e.getLocalizedMessage(), e);
}
}
@Override
public void close() throws Exception {
if (this.tableContext == null) return;
try {
this.tableContext.close();
} catch (Exception e) {
throw new IOException(e.getLocalizedMessage(), e);
}
}
}