You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, every time the ATP rule group executes, it generates a complete CSV containing all eligible products. It does not take into account whether a product has been modified since the last execution or whether the rules have changed since the last run. This results in the CSV being generated with the same data repeatedly, even when there are no changes.
To address this, consider the following approach:
If the rule group has been modified (e.g., new rules are added, existing rules are updated, or archived) since the last successful execution, process all products.
If the rule group has not been modified, only fetch products that have been updated since the last successful rule group execution. Use the updatedDatetime from the Product Solr document for this purpose.
The text was updated successfully, but these errors were encountered:
Currently, every time the ATP rule group executes, it generates a complete CSV containing all eligible products. It does not take into account whether a product has been modified since the last execution or whether the rules have changed since the last run. This results in the CSV being generated with the same data repeatedly, even when there are no changes.
To address this, consider the following approach:
If the rule group has been modified (e.g., new rules are added, existing rules are updated, or archived) since the last successful execution, process all products.
If the rule group has not been modified, only fetch products that have been updated since the last successful rule group execution. Use the updatedDatetime from the Product Solr document for this purpose.
The text was updated successfully, but these errors were encountered: