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

com.netflix.astyanax.util.ColumnarRecordWriter Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
/*******************************************************************************
 * Copyright 2011 Netflix
 * 
 * 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.netflix.astyanax.util;

import java.nio.ByteBuffer;
import java.util.Iterator;
import java.util.List;

import org.apache.cassandra.utils.Pair;

import com.netflix.astyanax.ColumnListMutation;
import com.netflix.astyanax.Keyspace;
import com.netflix.astyanax.MutationBatch;
import com.netflix.astyanax.SerializerPackage;
import com.netflix.astyanax.connectionpool.exceptions.ConnectionException;
import com.netflix.astyanax.model.ColumnFamily;
import com.netflix.astyanax.serializers.ByteBufferSerializer;
import com.netflix.astyanax.serializers.SerializerPackageImpl;
import com.netflix.astyanax.serializers.UnknownComparatorException;

/**
 * Writer rows where the first pair is the key and subsequent pairs are columns.
 * 
 * @author elandau
 * 
 */
public class ColumnarRecordWriter implements RecordWriter {

    private Keyspace keyspace;
    private SerializerPackage serializers;
    private ColumnFamily cf;
    private int batchSize = 1;
    private MutationBatch mutation;

    public ColumnarRecordWriter(Keyspace keyspace, String cfName) {
        this.keyspace = keyspace;
        this.cf = new ColumnFamily(cfName, ByteBufferSerializer.get(),
                ByteBufferSerializer.get());
        try {
            this.serializers = keyspace.getSerializerPackage(cfName, true);
        }
        catch (ConnectionException e) {
            this.serializers = SerializerPackageImpl.DEFAULT_SERIALIZER_PACKAGE;
        }
        catch (UnknownComparatorException e) {
            // We should never get this
        }
    }

    public ColumnarRecordWriter(Keyspace keyspace, String cfName, SerializerPackage serializers) {
        this.keyspace = keyspace;
        this.serializers = serializers;
        this.cf = new ColumnFamily(cfName, ByteBufferSerializer.get(),
                ByteBufferSerializer.get());
    }

    public ColumnarRecordWriter setBatchSize(int size) {
        this.batchSize = size;
        return this;
    }

    @Override
    public void start() throws ConnectionException {
        this.mutation = keyspace.prepareMutationBatch();
    }

    @Override
    public void write(List> record) {
        if (record.size() <= 1)
            return;

        // Key is first field
        Iterator> iter = record.iterator();
        ByteBuffer rowKey = this.serializers.keyAsByteBuffer(iter.next().right);

        // Build row mutation for all columns
        ColumnListMutation rowMutation = mutation.withRow(cf, rowKey);
        while (iter.hasNext()) {
            Pair pair = iter.next();
            try {
                rowMutation.putColumn(
                        this.serializers.columnAsByteBuffer(pair.left),
                        this.serializers.valueAsByteBuffer(pair.left, pair.right), null);
            }
            catch (Exception e) {
                throw new RuntimeException(e);
            }
        }

        // Execute a mutation
        if (batchSize == mutation.getRowCount()) {
            try {
                mutation.execute();
            }
            catch (ConnectionException e) {
                mutation.discardMutations();
                throw new RuntimeException(e);
            }
        }
    }

    @Override
    public void shutdown() {
        if (mutation.getRowCount() > 0) {
            try {
                mutation.execute();
            }
            catch (ConnectionException e) {
                mutation.discardMutations();
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy