package org.apache.cassandra.hadoop; /* * * 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. * */ import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Arrays; import org.apache.hadoop.io.Writable; import org.apache.hadoop.mapreduce.InputSplit; public class ColumnFamilySplit extends InputSplit implements Writable { private String startToken; private String endToken; private String[] dataNodes; public ColumnFamilySplit(String startToken, String endToken, String[] dataNodes) { assert startToken != null; assert endToken != null; this.startToken = startToken; this.endToken = endToken; this.dataNodes = dataNodes; } public String getStartToken() { return startToken; } public String getEndToken() { return endToken; } // getLength and getLocations satisfy the InputSplit abstraction public long getLength() { // only used for sorting splits. we don't have the capability, yet. return Long.MAX_VALUE; } public String[] getLocations() { return dataNodes; } // This should only be used by KeyspaceSplit.read(); protected ColumnFamilySplit() {} // These three methods are for serializing and deserializing // KeyspaceSplits as needed by the Writable interface. public void write(DataOutput out) throws IOException { out.writeUTF(startToken); out.writeUTF(endToken); out.writeInt(dataNodes.length); for (String endpoint : dataNodes) { out.writeUTF(endpoint); } } public void readFields(DataInput in) throws IOException { startToken = in.readUTF(); endToken = in.readUTF(); int numOfEndpoints = in.readInt(); dataNodes = new String[numOfEndpoints]; for(int i = 0; i < numOfEndpoints; i++) { dataNodes[i] = in.readUTF(); } } @Override public String toString() { return "ColumnFamilySplit{" + "startToken='" + startToken + '\'' + ", endToken='" + endToken + '\'' + ", dataNodes=" + (dataNodes == null ? null : Arrays.asList(dataNodes)) + '}'; } public static ColumnFamilySplit read(DataInput in) throws IOException { ColumnFamilySplit w = new ColumnFamilySplit(); w.readFields(in); return w; } }