> For the complete documentation index, see [llms.txt](https://docs.solutioo.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.solutioo.de/shopware/shopware6_en_us/automation-and-schedules/recommended-job-queue-setups.md).

# Recommended Job Queue Setups

The following examples show proven setups for the Job Queue. Adjust the intervals to match your order volume.

{% tabs %}
{% tab title="Order retrieval" %}

* **Purpose:** download new orders and create them as sales orders in BC.
* **Interval:** every 15–30 minutes.
* **Note:** downloads incrementally starting from the last auto-increment.
  {% endtab %}

{% tab title="Inventory" %}

* **Purpose:** keep inventory levels up to date.
* **Interval:** several times a day (for example, hourly).
* **Note:** only items with an inventory change.
  {% endtab %}

{% tab title="Prices" %}

* **Purpose:** transfer changed prices.
* **Interval:** daily, ideally at night.
* **Note:** updates existing prices via PATCH (no duplicates).
  {% endtab %}

{% tab title="Items" %}

* **Purpose:** upload new and changed items.
* **Interval:** daily (open data only).
* **Note:** run large catalogs outside business hours.
  {% endtab %}
  {% endtabs %}

{% hint style="warning" %}
Stagger the start times so that several large runs do not start at the same time. This keeps the system load even.
{% endhint %}

For setup basics, see [Job Queue Entries](/shopware/shopware6_en_us/automation-and-schedules/job-queue-entries.md). For error handling, see [Error Handling in Automatic Processes](/shopware/shopware6_en_us/automation-and-schedules/error-handling-in-automatic-processes.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.solutioo.de/shopware/shopware6_en_us/automation-and-schedules/recommended-job-queue-setups.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
