Expand my Community achievements bar.

SOLVED

Tar MK Corruption

Avatar

Level 5

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.

1 Accepted Solution

Avatar

Correct answer by
Employee

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.

View solution in original post

5 Replies

Avatar

Employee Advisor

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

Avatar

Correct answer by
Employee

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.

Avatar

Level 5

Thanks. In this case (approach B) how do you find which data is lost and what'd be the best way to restore that?

Avatar

Employee Advisor

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.