Removing verbose logging
This commit is contained in:
@@ -142,9 +142,6 @@ namespace daggy::daggyr {
|
|||||||
auto runID = request.param(":runID").as<DAGRunID>();
|
auto runID = request.param(":runID").as<DAGRunID>();
|
||||||
auto taskName = request.param(":taskName").as<std::string>();
|
auto taskName = request.param(":taskName").as<std::string>();
|
||||||
|
|
||||||
std::cout << "Received request for " << runID << " / " << taskName
|
|
||||||
<< std::endl;
|
|
||||||
|
|
||||||
Capacity resourcesUsed;
|
Capacity resourcesUsed;
|
||||||
Task task;
|
Task task;
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ namespace daggy {
|
|||||||
/*
|
/*
|
||||||
In cases where there are many tasks ready to execute,
|
In cases where there are many tasks ready to execute,
|
||||||
the blocking nature of executor_.execute(...) means
|
the blocking nature of executor_.execute(...) means
|
||||||
that tasks will get executed and the futures resolve,
|
that tasks will get executed and the futures resolved,
|
||||||
but we won't know until all pending tasks are enqueued.
|
but we won't know until all pending tasks are enqueued.
|
||||||
|
|
||||||
To avoid this, submit at most MAX_SUBMITS tasks before
|
To avoid this, submit at most MAX_SUBMITS tasks before
|
||||||
|
|||||||
Reference in New Issue
Block a user