|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.crunch.impl.mem.collect.MemCollection<Pair<K,V>> org.apache.crunch.impl.mem.collect.MemTable<K,V>
public class MemTable<K,V>
Constructor Summary | |
---|---|
MemTable(Iterable<Pair<K,V>> collect)
|
|
MemTable(Iterable<Pair<K,V>> collect,
PTableType<K,V> ptype,
String name)
|
Method Summary | ||
---|---|---|
PTable<K,V> |
bottom(int count)
Returns a PTable made up of the pairs in this PTable with the smallest value field. |
|
|
cogroup(PTable<K,U> other)
Co-group operation with the given table on common keys. |
|
PTable<K,Collection<V>> |
collectValues()
Aggregate all of the values with the same key into a single key-value pair in the returned PTable. |
|
PType<K> |
getKeyType()
Returns the PType of the key. |
|
PTableType<K,V> |
getPTableType()
Returns the PTableType of this PTable . |
|
PType<V> |
getValueType()
Returns the PType of the value. |
|
PGroupedTable<K,V> |
groupByKey()
Performs a grouping operation on the keys of this table. |
|
PGroupedTable<K,V> |
groupByKey(GroupingOptions options)
Performs a grouping operation on the keys of this table, using the additional GroupingOptions to control how the grouping is executed. |
|
PGroupedTable<K,V> |
groupByKey(int numPartitions)
Performs a grouping operation on the keys of this table, using the given number of partitions. |
|
|
join(PTable<K,U> other)
Perform an inner join on this table and the one passed in as an argument on their common keys. |
|
PCollection<K> |
keys()
Returns a PCollection made up of the keys in this PTable. |
|
Map<K,V> |
materializeToMap()
Returns a Map |
|
PTable<K,V> |
top(int count)
Returns a PTable made up of the pairs in this PTable with the largest value field. |
|
PTable<K,V> |
union(PTable<K,V>... others)
Returns a PTable instance that acts as the union of this
PTable and the input PTable s. |
|
PCollection<V> |
values()
Returns a PCollection made up of the values in this PTable. |
|
PTable<K,V> |
write(Target target)
Write the contents of this PCollection to the given Target ,
using the storage format specified by the target. |
Methods inherited from class org.apache.crunch.impl.mem.collect.MemCollection |
---|
by, by, count, filter, filter, getCollection, getName, getPipeline, getPType, getSize, getTypeFamily, materialize, max, min, parallelDo, parallelDo, parallelDo, parallelDo, sample, sample, sort, toString, union |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.crunch.PCollection |
---|
by, by, count, filter, filter, getName, getPipeline, getPType, getSize, getTypeFamily, materialize, max, min, parallelDo, parallelDo, parallelDo, parallelDo, sample, sample, sort, union |
Constructor Detail |
---|
public MemTable(Iterable<Pair<K,V>> collect)
public MemTable(Iterable<Pair<K,V>> collect, PTableType<K,V> ptype, String name)
Method Detail |
---|
public PTable<K,V> union(PTable<K,V>... others)
PTable
PTable
instance that acts as the union of this
PTable
and the input PTable
s.
union
in interface PTable<K,V>
public PGroupedTable<K,V> groupByKey()
PTable
groupByKey
in interface PTable<K,V>
PGroupedTable
instance that represents the groupingpublic PGroupedTable<K,V> groupByKey(int numPartitions)
PTable
groupByKey
in interface PTable<K,V>
numPartitions
- The number of partitions for the data.
PGroupedTable
instance that represents this groupingpublic PGroupedTable<K,V> groupByKey(GroupingOptions options)
PTable
GroupingOptions
to control how the grouping is executed.
groupByKey
in interface PTable<K,V>
options
- The grouping options to use
PGroupedTable
instance that represents the groupingpublic PTable<K,V> write(Target target)
PCollection
PCollection
to the given Target
,
using the storage format specified by the target.
write
in interface PCollection<Pair<K,V>>
write
in interface PTable<K,V>
write
in class MemCollection<Pair<K,V>>
target
- The target to write topublic PTableType<K,V> getPTableType()
PTable
PTableType
of this PTable
.
getPTableType
in interface PTable<K,V>
public PType<K> getKeyType()
PTable
PType
of the key.
getKeyType
in interface PTable<K,V>
public PType<V> getValueType()
PTable
PType
of the value.
getValueType
in interface PTable<K,V>
public PTable<K,V> top(int count)
PTable
top
in interface PTable<K,V>
count
- The number of pairs to returnpublic PTable<K,V> bottom(int count)
PTable
bottom
in interface PTable<K,V>
count
- The number of pairs to returnpublic PTable<K,Collection<V>> collectValues()
PTable
collectValues
in interface PTable<K,V>
public <U> PTable<K,Pair<V,U>> join(PTable<K,U> other)
PTable
join
in interface PTable<K,V>
public <U> PTable<K,Pair<Collection<V>,Collection<U>>> cogroup(PTable<K,U> other)
PTable
cogroup
in interface PTable<K,V>
public PCollection<K> keys()
PTable
PCollection
made up of the keys in this PTable.
keys
in interface PTable<K,V>
public PCollection<V> values()
PTable
PCollection
made up of the values in this PTable.
values
in interface PTable<K,V>
public Map<K,V> materializeToMap()
PTable
Note: The contents of the returned map may not be exactly the same as this PTable, as a PTable is a multi-map (i.e. can contain multiple values for a single key).
materializeToMap
in interface PTable<K,V>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |