Search in sources :

Example 6 with TrackedInputStream

use of org.apache.cassandra.io.util.TrackedInputStream in project cassandra by apache.

the class StreamReader method read.

/**
     * @param channel where this reads data from
     * @return SSTable transferred
     * @throws IOException if reading the remote sstable fails. Will throw an RTE if local write fails.
     */
// channel needs to remain open, streams on top of it can't be closed
@SuppressWarnings("resource")
public SSTableMultiWriter read(ReadableByteChannel channel) throws IOException {
    long totalSize = totalSize();
    ColumnFamilyStore cfs = ColumnFamilyStore.getIfExists(tableId);
    if (cfs == null) {
        // schema was dropped during streaming
        throw new IOException("CF " + tableId + " was dropped during streaming");
    }
    logger.debug("[Stream #{}] Start receiving file #{} from {}, repairedAt = {}, size = {}, ks = '{}', table = '{}', pendingRepair = '{}'.", session.planId(), fileSeqNum, session.peer, repairedAt, totalSize, cfs.keyspace.getName(), cfs.getTableName(), session.getPendingRepair());
    TrackedInputStream in = new TrackedInputStream(new LZFInputStream(Channels.newInputStream(channel)));
    StreamDeserializer deserializer = new StreamDeserializer(cfs.metadata(), in, inputVersion, getHeader(cfs.metadata()));
    SSTableMultiWriter writer = null;
    try {
        writer = createWriter(cfs, totalSize, repairedAt, session.getPendingRepair(), format);
        while (in.getBytesRead() < totalSize) {
            writePartition(deserializer, writer);
            // TODO move this to BytesReadTracker
            session.progress(writer.getFilename(), ProgressInfo.Direction.IN, in.getBytesRead(), totalSize);
        }
        logger.debug("[Stream #{}] Finished receiving file #{} from {} readBytes = {}, totalSize = {}", session.planId(), fileSeqNum, session.peer, FBUtilities.prettyPrintMemory(in.getBytesRead()), FBUtilities.prettyPrintMemory(totalSize));
        return writer;
    } catch (Throwable e) {
        logger.warn("[Stream {}] Error while reading partition {} from stream on ks='{}' and table='{}'.", session.planId(), deserializer.partitionKey(), cfs.keyspace.getName(), cfs.getTableName(), e);
        if (writer != null) {
            writer.abort(e);
        }
        throw Throwables.propagate(e);
    }
}
Also used : TrackedInputStream(org.apache.cassandra.io.util.TrackedInputStream) LZFInputStream(com.ning.compress.lzf.LZFInputStream) SSTableMultiWriter(org.apache.cassandra.io.sstable.SSTableMultiWriter)

Aggregations

TrackedInputStream (org.apache.cassandra.io.util.TrackedInputStream)6 ByteArrayInputStream (java.io.ByteArrayInputStream)4 BytesReadTracker (org.apache.cassandra.io.util.BytesReadTracker)4 DataInputPlus (org.apache.cassandra.io.util.DataInputPlus)4 TrackedDataInputPlus (org.apache.cassandra.io.util.TrackedDataInputPlus)4 ByteArrayOutputStream (java.io.ByteArrayOutputStream)2 DataOutputStream (java.io.DataOutputStream)2 SSTableMultiWriter (org.apache.cassandra.io.sstable.SSTableMultiWriter)2 LZFInputStream (com.ning.compress.lzf.LZFInputStream)1 DataInputStream (java.io.DataInputStream)1 IOException (java.io.IOException)1 ColumnFamilyStore (org.apache.cassandra.db.ColumnFamilyStore)1