What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Greetings, Does anyone know how `oms:check-timeouts` can affect Storage Redis memory usage? Is there

UKA0KSZMY
UKA0KSZMY Posts: 5 πŸ§‘πŸ»β€πŸš€ - Cadet

Greetings,
Does anyone know how oms:check-timeouts can affect Storage Redis memory usage? Is there any chance that somehow it uses Storage Redis for temporary storing some data and drops it after it is executed?

Comments

  • UKEP86J66
    UKEP86J66 Posts: 208 πŸ§‘πŸ»β€πŸš€ - Cadet

    The timeout data is in postgres, so I would not expect anything directly. However if a timeout is triggered and moves from a reserved state to a state without the reservation flag then availability will get recalculated which will trigger pub/sync and update redis storage.

  • UKEP86J66
    UKEP86J66 Posts: 208 πŸ§‘πŸ»β€πŸš€ - Cadet

    It could be significant if you have many orders and they are bundle products, which then have to update multiple product availability entries (we have noticed this in the past)

  • UKA0KSZMY
    UKA0KSZMY Posts: 5 πŸ§‘πŸ»β€πŸš€ - Cadet

    But isn't it updating redis storage using the touch tables, so basically it is not direct relation over the client, right?

  • UKEP86J66
    UKEP86J66 Posts: 208 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited November 2020

    Yes true, it would not update in the check-timeouts process but instead in the process that runs your Zed->Yves sync

  • UKA0KSZMY
    UKA0KSZMY Posts: 5 πŸ§‘πŸ»β€πŸš€ - Cadet

    Okay, thanks πŸ‘