All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.batch.connectors.cassandra.CassandraPojoInputFormat Maven / Gradle / Ivy

There is a newer version: 3.2.0-1.19
Show newest version
/*
 * 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.batch.connectors.cassandra;

import org.apache.flink.core.io.InputSplit;
import org.apache.flink.streaming.connectors.cassandra.ClusterBuilder;
import org.apache.flink.streaming.connectors.cassandra.MapperOptions;
import org.apache.flink.util.Preconditions;

import com.datastax.driver.mapping.Mapper;
import com.datastax.driver.mapping.MappingManager;
import com.datastax.driver.mapping.Result;

/**
 * InputFormat to read data from Apache Cassandra and generate a custom Cassandra annotated object.
 *
 * @param  type of inputClass
 */
public class CassandraPojoInputFormat extends CassandraInputFormatBase {

    private static final long serialVersionUID = 1992091320180905115L;

    private transient Result resultSet;
    private final MapperOptions mapperOptions;
    private final Class inputClass;

    public CassandraPojoInputFormat(String query, ClusterBuilder builder, Class inputClass) {
        this(query, builder, inputClass, null);
    }

    public CassandraPojoInputFormat(
            String query,
            ClusterBuilder builder,
            Class inputClass,
            MapperOptions mapperOptions) {
        super(query, builder);
        this.mapperOptions = mapperOptions;
        this.inputClass = Preconditions.checkNotNull(inputClass, "InputClass cannot be null");
    }

    @Override
    public void open(InputSplit split) {
        this.session = cluster.connect();
        MappingManager manager = new MappingManager(session);

        Mapper mapper = manager.mapper(inputClass);

        if (mapperOptions != null) {
            Mapper.Option[] optionsArray = mapperOptions.getMapperOptions();
            if (optionsArray != null) {
                mapper.setDefaultGetOptions(optionsArray);
            }
        }
        this.resultSet = mapper.map(session.execute(query));
    }

    @Override
    public boolean reachedEnd() {
        return resultSet.isExhausted();
    }

    @Override
    public OUT nextRecord(OUT reuse) {
        return resultSet.one();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy