[ 
https://issues.apache.org/jira/browse/IGNITE-10507?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16745163#comment-16745163
 ] 

Ivan Daschinskiy commented on IGNITE-10507:
-------------------------------------------

[~ivan.glukos] 
2) It's ok, 
{code:java}
 if (grpCtx == null || !grpCtx.persistenceEnabled()) {
                integrityCheckedIndexes.incrementAndGet();

                continue;
            }

            Future<T2<Integer, IndexIntegrityCheckIssue>> checkFut =
                    calcExecutor.submit(new Callable<T2<Integer, 
IndexIntegrityCheckIssue>>() {
                        @Override public T2<Integer, IndexIntegrityCheckIssue> 
call() throws Exception {
                            IndexIntegrityCheckIssue issue = 
integrityCheckIndexPartition(grpCtx);

                            return new T2<>(grpCtx.groupId(), issue);
                        }
                    });

            integrityCheckFutures.add(checkFut);
{code}

>From these code, you can see, that if grp is inmemory, we simply skip this 
>check.


> Control.sh add ability to check crc sums of stored pages
> --------------------------------------------------------
>
>                 Key: IGNITE-10507
>                 URL: https://issues.apache.org/jira/browse/IGNITE-10507
>             Project: Ignite
>          Issue Type: Improvement
>    Affects Versions: 2.6
>            Reporter: Sergey Antonov
>            Assignee: Sergey Antonov
>            Priority: Critical
>             Fix For: 2.8
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> We should have ability to check stored data on disk. Also we should return 
> all exceptions from all nodes, if they are occurred.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to