NebulaStream
0.6.213
NebulaStream is a data and application management framework for the internet of things
|
Physical sink that receives a tuple buffer, extracts statistics, and writes these statistics to the statisticStore. More...
#include <StatisticSink.hpp>
Public Member Functions | |
StatisticSink (const SinkFormatPtr &sinkFormat, const Runtime::NodeEnginePtr &nodeEngine, uint32_t numOfProducers, SharedQueryId sharedQueryId, DecomposedQueryId decomposedQueryId, DecomposedQueryPlanVersion decomposedQueryVersion, uint64_t numberOfOrigins, StatisticStorePtr statisticStore, StatisticFormatPtr statisticSinkFormat) | |
void | setup () override |
virtual method to setup sink @Note this method will be overwritten by derived classes More... | |
void | shutdown () override |
virtual method to shutdown sink @Note this method will be overwritten by derived classes More... | |
bool | writeData (Runtime::TupleBuffer &inputBuffer, Runtime::WorkerContext &workerContext) override |
method to write a TupleBuffer More... | |
std::string | toString () const override |
virtual function to get a string describing the particular sink @Note this function is overwritten by the particular data sink More... | |
SinkMediumTypes | getSinkMediumType () override |
method to return the type of medium More... | |
![]() | |
SinkMedium (SinkFormatPtr sinkFormat, Runtime::NodeEnginePtr nodeEngine, uint32_t numOfProducers, SharedQueryId sharedQueryId, DecomposedQueryId decomposedQueryId, DecomposedQueryPlanVersion decomposedQueryVersion) | |
public constructor for data sink More... | |
SinkMedium (SinkFormatPtr sinkFormat, Runtime::NodeEnginePtr nodeEngine, uint32_t numOfProducers, SharedQueryId sharedQueryId, DecomposedQueryId decomposedQueryId, DecomposedQueryPlanVersion decomposedQueryVersion, uint64_t numberOfOrigins) | |
public constructor for data sink More... | |
SharedQueryId | getSharedQueryId () const |
get the id of the owning plan More... | |
DecomposedQueryId | getParentPlanId () const |
get the subplan id of the owning plan More... | |
DecomposedQueryPlanVersion | getParentPlanVersion () const |
get the subplan version of the owning plan More... | |
uint64_t | getNumberOfWrittenOutBuffers () |
debug function for testing to get number of written buffers More... | |
uint64_t | getNumberOfWrittenOutTuples () |
debug function for testing to get number of written tuples More... | |
SchemaPtr | getSchemaPtr () const |
method to return the current schema of the sink More... | |
std::string | getSinkFormat () |
method to get the format as string More... | |
void | reconfigure (Runtime::ReconfigurationMessage &message, Runtime::WorkerContext &context) override |
void | postReconfigurationCallback (Runtime::ReconfigurationMessage &message) override |
OperatorId | getOperatorId () const |
Get operator id. More... | |
void | setMigrationFlag () |
Sets that sink is used for state migration. More... | |
bool | isForMigration () const |
Check whether this sink is used for state migration. More... | |
![]() | |
~Reconfigurable () NES_NOEXCEPT(false) override=default | |
![]() | |
~virtual_enable_shared_from_this () NES_NOEXCEPT(isNoexceptDestructible) override=default | |
std::shared_ptr< T1 > | shared_from_this () |
std::weak_ptr< T1 > | weak_from_this () |
![]() | |
virtual | ~virtual_enable_shared_from_this_base () NES_NOEXCEPT(isNoexceptDestructible)=default |
Additional Inherited Members | |
![]() | |
SinkFormatPtr | sinkFormat |
bool | schemaWritten |
Runtime::NodeEnginePtr | nodeEngine |
std::atomic< uint32_t > | activeProducers |
termination machinery More... | |
SharedQueryId | sharedQueryId |
DecomposedQueryId | decomposedQueryId |
DecomposedQueryPlanVersion | decomposedQueryVersion |
uint64_t | numberOfOrigins |
uint64_t | sentBuffer {0} |
uint64_t | sentTuples {0} |
std::recursive_mutex | writeMutex |
bool | migration {false} |
Physical sink that receives a tuple buffer, extracts statistics, and writes these statistics to the statisticStore.
NES::Statistic::StatisticSink::StatisticSink | ( | const SinkFormatPtr & | sinkFormat, |
const Runtime::NodeEnginePtr & | nodeEngine, | ||
uint32_t | numOfProducers, | ||
SharedQueryId | sharedQueryId, | ||
DecomposedQueryId | decomposedQueryId, | ||
DecomposedQueryPlanVersion | decomposedQueryVersion, | ||
uint64_t | numberOfOrigins, | ||
StatisticStorePtr | statisticStore, | ||
StatisticFormatPtr | statisticSinkFormat | ||
) |
|
overridevirtual |
method to return the type of medium
Implements NES::SinkMedium.
References NES::STATISTIC_SINK.
|
overridevirtual |
virtual method to setup sink @Note this method will be overwritten by derived classes
Implements NES::SinkMedium.
|
overridevirtual |
virtual method to shutdown sink @Note this method will be overwritten by derived classes
Implements NES::SinkMedium.
|
overridevirtual |
virtual function to get a string describing the particular sink @Note this function is overwritten by the particular data sink
Implements NES::SinkMedium.
|
overridevirtual |
method to write a TupleBuffer
a | tuple buffers pointer |
Implements NES::SinkMedium.
References NES_DEBUG.