cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Compare and Align taking lot of time

smitakasinath
Super Contributor

Hello,

 

We are using MEGA V1R2 CP07. While moving 25 objects between repositories, Compare and align is taking a lot of time.

Has anybody faced this issue earlier? Could you please help?

7 Replies

Hello

 

HOPEX V1R2-V1R3 CP9 is stable

 

You can install hotfix 9.02 to benefit from additional fixes

2 of the fixes are regarding robustness

  • 46773 Exception in Java call to APIs
  • 47065 Errors related to management of java memory

You can download the hotfix in this page

http://community.mega.com/t5/Downloads-Updates/HOPEX-V1R2-V1R3-Download-amp-Updates/ta-p/8313

Installation procedure is here

http://community.mega.com/t5/custom/page/page-id/mega-kb-solution?sid=501570000012vGHAAY

 

 

Jerome

ColruytTeam
Honored Contributor

Hi Jerome,

We are working with V1R2 CP6, and now we are planning to move to CP8 with same version V1R2 in next month early days.

We are also facing slow compare and allign issue(even though the transered objects are deleted).

 Is the patch CP9 stable? Please suggest us the better patch to install.

 

Regards,

Venkatesh

(Colruyt Team)

Colruyt Team

TCheung
New Contributor

we had the same issue as well for V1 R2 CP6

 

I found that if I export the objects into a file and dd a merge/align then, it's alot faster.   Not sure if that helps. 

 

thanks

Hello

 

Note changes in recent CP

  • HOPEX V1R2 CP5.0
    Enable to remove merge objects with OpenCompareTool (CR 44231)
  • HOPEX V1R2-V1R3 CP9.0
    Ignore merge objects during compare and align in interactive mode (CR 45749)

See KB http://community.mega.com/t5/custom/page/page-id/mega-kb-solution?sid=50120000000mqPeAAI

Jerome


Explore perimeter -> Goto Metatool -> select compare and align -> open properties -> goto Text propertypage-> n drop down option select _settings there you can see Metaclass to exclude there insert put _Transferobjects.

But we also decided to cleanup _TransferObjects, so we have deleted all of them before 3months.
After deletion we observed quick response .

Regards,
Sashi.

'MegaContext(Fields,Types)
option explicit

dim oRoot
dim obj
Dim strName
Dim date1
date1 = #13/11/2014#

oRoot = megaDB

print GetCollection("_TransferredObject").Count

for each obj in GetCollection("_TransferredObject")

print obj.GetProp("_HexaIdAbs") & ";" & obj.GetProp("Name") & ";" & obj.GetProp("Creation Date")

If DateValue(obj.GetProp("Creation Date")) < DateValue(date1) Then

  print obj.GetProp("_HexaIdAbs") & ";" & obj.GetProp("Name") & ";" & obj.GetProp("Creation Date")
   
  obj.Delete

  'exit for
 
 end if


next
 

Colruyt Team

Hello Sashi,

Thanks a lot for your reply !

In our case compare and align is performed manually between 2 repositories during a content release. Given this to be the case, how do we exclude them from the log file?

 

Regards,

Smita

ColruytTeam
Honored Contributor

Hello ,

We also faced this issue , when we CP upgraded from 6 to 10 .

We found   _transferobjects are also being exported into log file. If this is same case with you then try to get rid of them..


Regards,
Sashi

Colruyt Team