Analytics Reorder Suggestions Delta

Update reorder suggestions based on recent inventory changes

Overview

This task incrementally updates product reorder suggestions based on inventory changes since the last run. Unlike the full reorder suggestions task, this only processes products with changed inventory, making it efficient for frequent execution.

Identifier

PropertyValue
Implementation TypeAnalyticsReorderSuggestionsDeltaScheduledTask
GroupAnalytics
TypeDelta

When to Use

Enable this task when you need:

  • Near real-time reorder suggestion updates
  • Quick response to inventory changes
  • Efficient incremental suggestion updates
  • Complement to daily full recalculation

Configuration Properties

This task has no configurable properties.


Behavior

What It Does

  1. Identifies products with inventory changes since the last run
  2. Recalculates reorder suggestions only for affected products
  3. Updates the suggestions index with new calculations
  4. Reports the count of updated suggestions

Prerequisites

  • The full reorder suggestions task should run periodically to establish baseline data
  • Inventory tracking must be active

Side Effects

  • Updates existing reorder suggestions for products with inventory changes
  • More efficient than full recalculation but may miss some edge cases

Example Configuration

{
    "ImplementationType": "AnalyticsReorderSuggestionsDeltaScheduledTask",
    "Schedule": "*/30 * * * *",
    "IsDisabled": false
}

Run every 30 minutes (*/30 * * * *) to keep reorder suggestions current with inventory movements. Combine with a daily full recalculation for best results.


On this page