summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2019-01-16 21:38:00 +0100
committerGitHub <noreply@github.com>2019-01-16 21:38:00 +0100
commit0c55782dcd8acd3116b9f1e5673d4ded132416c4 (patch)
tree09d96dd8a2e8bf3654ee1f8de126e774e8c8caa2
parent7260f3ef080bd755bae8441b992526b2ac1cbc39 (diff)
parent6da67f89d977cd54ace89b36c31e4e7e329eb059 (diff)
Merge pull request #8178 from vespa-engine/ollivir/use-group-instead-of-row
Use 'group' instead of 'row' in log message MERGEOK
-rw-r--r--searchcore/src/vespa/searchcore/fdispatch/search/fnet_dataset.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/fdispatch/search/fnet_dataset.cpp b/searchcore/src/vespa/searchcore/fdispatch/search/fnet_dataset.cpp
index ecb68d3e63c..c80cb32de65 100644
--- a/searchcore/src/vespa/searchcore/fdispatch/search/fnet_dataset.cpp
+++ b/searchcore/src/vespa/searchcore/fdispatch/search/fnet_dataset.cpp
@@ -118,7 +118,7 @@ FastS_FNET_DataSet::isGoodRow(uint32_t rowId)
isBad = true;
if (!wasBad) {
_failedRowsBitmask |= rowBit;
- LOG(warning, "Not enough active docs in row %d (only %lu docs, average is %g)",
+ LOG(warning, "Not enough active docs in group %d (only %lu docs, average is %g)",
rowId, candDocs, restAvg);
}
}
@@ -131,13 +131,13 @@ FastS_FNET_DataSet::isGoodRow(uint32_t rowId)
isBad = true;
if (!wasBad) {
_failedRowsBitmask |= rowBit;
- LOG(warning, "Coverage of row %d is only %ld/%ld (requires %ld)",
+ LOG(warning, "Coverage of group %d is only %ld/%ld (requires %ld)",
rowId, nodesUp, configuredParts, configuredParts-nodesAllowedDown);
}
}
if (wasBad && !isBad) {
_failedRowsBitmask &= ~rowBit;
- LOG(info, "Row %d is now good again (%lu/%g active docs, coverage %ld/%ld)",
+ LOG(info, "Group %d is now good again (%lu/%g active docs, coverage %ld/%ld)",
rowId, candDocs, restAvg, nodesUp, configuredParts);
}
return !isBad;