Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.6.x'
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed May 20, 2024
2 parents 7004b1b + 8c00c17 commit b7a7073
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dali/base/dasds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8846,7 +8846,7 @@ bool CDeltaWriter::save(std::queue<Owned<CTransactionItem>> &todo)
}
catch (IException *e)
{
LOG(MCoperatorWarning, unknownJob, e, "save: failed to touch delta in progress file");
LOG(MCoperatorWarning, e, "save: failed to touch delta in progress file");
e->Release();
}
// here if exception only
Expand Down Expand Up @@ -8909,14 +8909,14 @@ bool CDeltaWriter::save(std::queue<Owned<CTransactionItem>> &todo)
}
catch (IException *e)
{
LOG(MCoperatorWarning, unknownJob, e, "save: failure whilst committing deltas to disk! Remedial action must be taken");
LOG(MCoperatorWarning, e, "save: failure whilst committing deltas to disk! Remedial action must be taken");
e->Release();
// this is really an attempt at disaster recovery at this point
forceBlockingSave = true;
}
if (forceBlockingSave)
{
LOG(MCoperatorWarning, unknownJob, "Due to earlier failures, attempting forced/blocking save of Dali store");
LOG(MCoperatorWarning, "Due to earlier failures, attempting forced/blocking save of Dali store");
while (todo.size())
todo.pop();
SDSManager->saveStore(nullptr, false, false);
Expand Down
5 changes: 5 additions & 0 deletions helm/hpcc/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,11 @@
"type": "integer",
"default": 0
},
"blockedRandomIOKB": {
"description": "Optimal block size for efficient random access reading from this plane. Implementations will use if they can",
"type": "integer",
"default": 0
},
"compressLogicalFiles" : {
"description": "Compress all logical file outputs on this plane.",
"type": "boolean",
Expand Down

0 comments on commit b7a7073

Please sign in to comment.