nizhikov commented on PR #12547:
URL: https://github.com/apache/ignite/pull/12547#issuecomment-3660101067
Overall looks good.
@DEADripER I wonder, do we support the case when one server node are
in-memory and other has pds enabled.
Seems we must just return node status for all cases and print it out like
that:
```
private static class CheckpointJob extends
VisorJob<CheckpointCommandArg, Void> {
...
@Override protected Void run(CheckpointCommandArg arg) throws
IgniteException {
if (!CU.isPersistenceEnabled(ignite.configuration()))
return ignite.localNode().id() + ": PDS disabled";
// checkpoint relate code.
....
if (arg.waitForFinish()) {
....
return ignite.localNode().id() + ": Checkpoint strarted";
}
return ignite.localNode().id() + ": Checkpoint finished";
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]