This project has retired. For details please refer to its Attic page.
Uses of Class org.apache.crunch.lib.Sort.ColumnOrder (Apache Crunch 0.10.0 API)

Uses of Class
org.apache.crunch.lib.Sort.ColumnOrder

Packages that use Sort.ColumnOrder
org.apache.crunch.lib Joining, sorting, aggregating, and other commonly used functionality. 
org.apache.crunch.lib.sort   
 

Uses of Sort.ColumnOrder in org.apache.crunch.lib
 

Methods in org.apache.crunch.lib that return Sort.ColumnOrder
static Sort.ColumnOrder Sort.ColumnOrder.by(int column, Sort.Order order)
           
 

Methods in org.apache.crunch.lib with parameters of type Sort.ColumnOrder
static
<U,V> PCollection<Pair<U,V>>
Sort.sortPairs(PCollection<Pair<U,V>> collection, Sort.ColumnOrder... columnOrders)
          Sorts the PCollection of Pairs using the specified column ordering.
static
<V1,V2,V3,V4>
PCollection<Tuple4<V1,V2,V3,V4>>
Sort.sortQuads(PCollection<Tuple4<V1,V2,V3,V4>> collection, Sort.ColumnOrder... columnOrders)
          Sorts the PCollection of Tuple4s using the specified column ordering.
static
<V1,V2,V3> PCollection<Tuple3<V1,V2,V3>>
Sort.sortTriples(PCollection<Tuple3<V1,V2,V3>> collection, Sort.ColumnOrder... columnOrders)
          Sorts the PCollection of Tuple3s using the specified column ordering.
static
<T extends Tuple>
PCollection<T>
Sort.sortTuples(PCollection<T> collection, int numReducers, Sort.ColumnOrder... columnOrders)
          Sorts the PCollection of TupleNs using the specified column ordering and a client-specified number of reducers.
static
<T extends Tuple>
PCollection<T>
Sort.sortTuples(PCollection<T> collection, Sort.ColumnOrder... columnOrders)
          Sorts the PCollection of tuples using the specified column ordering.
 

Uses of Sort.ColumnOrder in org.apache.crunch.lib.sort
 

Methods in org.apache.crunch.lib.sort with parameters of type Sort.ColumnOrder
static void TupleWritableComparator.configureOrdering(org.apache.hadoop.conf.Configuration conf, WritableType[] types, Sort.ColumnOrder[] columnOrders)
           
static
<S> org.apache.avro.Schema
SortFns.createOrderedTupleSchema(PType<S> ptype, Sort.ColumnOrder[] orders)
          Constructs an Avro schema for the given PType<S> that respects the given column orderings.
 

Constructors in org.apache.crunch.lib.sort with parameters of type Sort.ColumnOrder
SortFns.KeyExtraction(PType<V> ptype, Sort.ColumnOrder[] columnOrder)
           
 



Copyright © 2014 The Apache Software Foundation. All Rights Reserved.