1
0
Fork 0

Added comments to keys

This commit is contained in:
Simon Grätzer 2017-02-14 13:38:58 +01:00
parent f2bae38ed6
commit 3f0b01023d
2 changed files with 32 additions and 2 deletions

View File

@ -48,7 +48,8 @@ std::string const Utils::startRecoveryPath = "startRecovery";
std::string const Utils::continueRecoveryPath = "continueRecovery";
std::string const Utils::finishedRecoveryPath = "finishedRecovery";
std::string const Utils::finalizeRecoveryPath = "finalizeRecovery";
std::string const Utils::aqlResultsPath = "collectAQL";
std::string const Utils::storeCheckpointPath = "storeCheckpoint";
std::string const Utils::aqlResultsPath = "aqlResult";
std::string const Utils::executionNumberKey = "exn";
std::string const Utils::algorithmKey = "algorithm";

View File

@ -53,7 +53,7 @@ class Utils {
static std::string const continueRecoveryPath;
static std::string const finishedRecoveryPath;
static std::string const finalizeRecoveryPath;
//static std::string const storeCheckpointDataPath;
static std::string const storeCheckpointPath;
static std::string const aqlResultsPath;
static std::string const executionNumberKey;
@ -67,18 +67,47 @@ class Utils {
static std::string const asyncModeKey;
static std::string const lazyLoadingKey;
/// Current global superstep
static std::string const globalSuperstepKey;
/// Communicate number of loaded vertices to conductor
static std::string const vertexCountKey;
/// Communicate number of loaded edges to conductor
static std::string const edgeCountKey;
/// Shard id, part of message header
static std::string const shardIdKey;
/// holds messages
static std::string const messagesKey;
/// sender cluster id
static std::string const senderKey;
/// Recovery method name
static std::string const recoveryMethodKey;
/// Tells workers to store the result into the collections
/// otherwise dicard results
static std::string const storeResultsKey;
/// Holds aggregated values
static std::string const aggregatorValuesKey;
/// Communicates the # of active vertices to the conductor
static std::string const activeCountKey;
/// Used to track number of messages received during the last
/// superstep, by the worker (bookkeeping)
static std::string const receivedCountKey;
/// Used to track number of messages send during the last
/// superstep (bookkeeping)
static std::string const sendCountKey;
/// Used to communicate to enter the next phase
/// only send by the conductor
static std::string const enterNextGSSKey;
static std::string const compensate;