Commit a338b267 authored by Aurel's avatar Aurel

do no recall reindeObject when object goes in archive except if

explicitly specified, thus we index everything at one time preventing
from retrieving same objects many times from different node


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17494 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 08a9ca78
...@@ -686,7 +686,8 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -686,7 +686,8 @@ class ZCatalog(Folder, Persistent, Implicit):
""" wrapper around catalog """ """ wrapper around catalog """
self.catalogObjectList([obj], sql_catalog_id=sql_catalog_id) self.catalogObjectList([obj], sql_catalog_id=sql_catalog_id)
def catalogObjectList(self, object_list, sql_catalog_id=None, disable_archive=0, **kw): def catalogObjectList(self, object_list, sql_catalog_id=None, disable_archive=0,
immediate_reindex_archive=1, **kw):
"""Catalog a list of objects. """Catalog a list of objects.
""" """
catalog = self.getSQLCatalog(sql_catalog_id) catalog = self.getSQLCatalog(sql_catalog_id)
...@@ -783,12 +784,7 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -783,12 +784,7 @@ class ZCatalog(Folder, Persistent, Implicit):
# if we reindex in current catalog, do not relaunch an activity for this # if we reindex in current catalog, do not relaunch an activity for this
continue continue
d = catalog_dict[catalog_id] d = catalog_dict[catalog_id]
# hot_reindexing is True when creating an object during a hot reindex, in this case, we don't want # build the wrapped object list
# to reindex it in destination catalog, it will be recorded an play only once
if not hot_reindexing and self.hot_reindexing_state != HOT_REINDEXING_DOUBLE_INDEXING_STATE and \
self.destination_sql_catalog_id == catalog_id:
destination_catalog = self.getSQLCatalog(self.destination_sql_catalog_id)
# wrap all objects
wrapped_object_list_2 = [] wrapped_object_list_2 = []
for obj in d['obj']: for obj in d['obj']:
try: try:
...@@ -799,8 +795,18 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -799,8 +795,18 @@ class ZCatalog(Folder, Persistent, Implicit):
LOG('WARNING ZSQLCatalog', 0, 'wrapObject failed on the object %r' % (obj,), error=sys.exc_info()) LOG('WARNING ZSQLCatalog', 0, 'wrapObject failed on the object %r' % (obj,), error=sys.exc_info())
failed_object_list.append(obj) failed_object_list.append(obj)
wrapped_object_list_2.append(wrap_obj) wrapped_object_list_2.append(wrap_obj)
# hot_reindexing is True when creating an object during a hot reindex, in this case, we don't want
# to reindex it in destination catalog, it will be recorded an play only once
if not hot_reindexing and self.hot_reindexing_state != HOT_REINDEXING_DOUBLE_INDEXING_STATE and \
self.destination_sql_catalog_id == catalog_id:
destination_catalog = self.getSQLCatalog(self.destination_sql_catalog_id)
# reindex objects in destination catalog # reindex objects in destination catalog
destination_catalog.catalogObjectList(wrapped_object_list_2, **kw) destination_catalog.catalogObjectList(wrapped_object_list_2, **kw)
else:
archive_catalog = self.getSQLCatalog(catalog_id)
if immediate_reindex_archive:
archive_catalog.catalogObjectList(wrapped_object_list_2, **kw)
else: else:
for obj in d['obj']: for obj in d['obj']:
obj._reindexObject(sql_catalog_id=catalog_id, activate_kw = \ obj._reindexObject(sql_catalog_id=catalog_id, activate_kw = \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment