CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
|
#include <merge_rdd.h>
Classes | |
class | Iterator |
Public Types | |
using | Base = BaseRdd< MergeRdd< R > > |
Public Member Functions | |
constexpr | MergeRdd (const R &prev) |
constexpr | MergeRdd (const MergeRdd &)=default |
MergeRdd & | operator= (const MergeRdd &)=default |
Public Member Functions inherited from cpark::BaseRdd< MergeRdd< R > > | |
BaseRdd (const BaseRdd< R > &prev, bool copy_id) | |
BaseRdd (const BaseRdd< R > &prev) | |
BaseRdd (ExecutionContext *context) | |
BaseRdd & | operator= (const BaseRdd< R > &prev) |
auto | begin () const |
auto | end () const |
ExecutionContext::RddId | id () const noexcept |
Public Attributes | |
friend | Base |
Additional Inherited Members | |
Protected Attributes inherited from cpark::BaseRdd< MergeRdd< R > > | |
ExecutionContext * | context_ |
ExecutionContext::RddId | rdd_id_ |
size_t | splits_num_ |
An Rdd holding the data merged from an old rdd by some function. This Rdd will result in only one large split contains all the element in previous Rdd's splits.
R | Type of the old Rdd. |
|
inlineconstexpr |
Main constructor of MergeRdd.
prev | Reference to previous Rdd of type R |