| /* |
| * 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.connector.hbase.sink; |
| |
| import org.apache.flink.connector.hbase.util.HBaseSerde; |
| import org.apache.flink.connector.hbase.util.HBaseTableSchema; |
| import org.apache.flink.table.data.RowData; |
| import org.apache.flink.types.RowKind; |
| |
| import org.apache.hadoop.hbase.client.Mutation; |
| |
| /** |
| * An implementation of {@link HBaseMutationConverter} which converts {@link RowData} into {@link |
| * Mutation}. |
| */ |
| public class RowDataToMutationConverter implements HBaseMutationConverter<RowData> { |
| private static final long serialVersionUID = 1L; |
| |
| private final HBaseTableSchema schema; |
| private final String nullStringLiteral; |
| private transient HBaseSerde serde; |
| |
| public RowDataToMutationConverter(HBaseTableSchema schema, final String nullStringLiteral) { |
| this.schema = schema; |
| this.nullStringLiteral = nullStringLiteral; |
| } |
| |
| @Override |
| public void open() { |
| this.serde = new HBaseSerde(schema, nullStringLiteral); |
| } |
| |
| @Override |
| public Mutation convertToMutation(RowData record) { |
| RowKind kind = record.getRowKind(); |
| if (kind == RowKind.INSERT || kind == RowKind.UPDATE_AFTER) { |
| return serde.createPutMutation(record); |
| } else { |
| return serde.createDeleteMutation(record); |
| } |
| } |
| } |