활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
As given in all the documentation, the solution to TarMK corruption is to run the 'check' run-mode on oak-run jar and revert the repository to the last known good revision by making changes to journal.log.
But doing this would wipe out some of the recent data from the repository. Is there a way to know what data or content has been erased by reverting to an earlier revision? Also what would be the best way to get this data back?
Thanks.
해결되었습니다! 솔루션으로 이동.
When you determine the latest good revision, you can find the approximate date and time of that revision:
Offline Compaction fails with SegmentNotFoundException & IllegalArgumentException step 4.
Next, you can query your JCR by date of creation and modification. For example, for cq:Pages you can use a query similar to:
/jcr:root/content//element(*,cq:Page)[(jcr:content/@cq:lastModified >= xs:dateTime('2015-11-03T04:00:00.000-05:00') and
jcr:content/@cq:lastModified <= xs:dateTime('2015-11-03T20:00:00.000-05:00')) or (jcr:content/@jcr:created >= xs:dateTime('2015-11-03T04:00:00.000-05:00')
and jcr:content/@jcr:created <= xs:dateTime('2015-11-03T20:00:00.000-05:00')) ]
The result can be packaged via Query Packager
That is the best option to backup the content that will be wiped up by reverting to the latest good revision.
조회 수
답글
좋아요 수
There is another way to find the corrupted nodes and remove them manually. Check the "B. Remove corrupted nodes manually." at [1]
[1] Offline Compaction fails with SegmentNotFoundException & IllegalArgumentException
조회 수
답글
좋아요 수
When you determine the latest good revision, you can find the approximate date and time of that revision:
Offline Compaction fails with SegmentNotFoundException & IllegalArgumentException step 4.
Next, you can query your JCR by date of creation and modification. For example, for cq:Pages you can use a query similar to:
/jcr:root/content//element(*,cq:Page)[(jcr:content/@cq:lastModified >= xs:dateTime('2015-11-03T04:00:00.000-05:00') and
jcr:content/@cq:lastModified <= xs:dateTime('2015-11-03T20:00:00.000-05:00')) or (jcr:content/@jcr:created >= xs:dateTime('2015-11-03T04:00:00.000-05:00')
and jcr:content/@jcr:created <= xs:dateTime('2015-11-03T20:00:00.000-05:00')) ]
The result can be packaged via Query Packager
That is the best option to backup the content that will be wiped up by reverting to the latest good revision.
조회 수
답글
좋아요 수
This helps a lot thanks.
조회 수
답글
좋아요 수
Thanks. In this case (approach B) how do you find which data is lost and what'd be the best way to restore that?
조회 수
답글
좋아요 수
When you run the groovy script, It will list the paths that have been corrupted.
You can then delete those paths using the groovy script and create a package of these nodes from other instances.
조회 수
답글
좋아요 수