Cezary Miącz

Results 6 comments of Cezary Miącz

Please not that Saleor uses SQL sequence here: https://github.com/saleor/saleor/blob/d90be220d6b687d08153934a51354011a3cb5ca1/saleor/order/models.py#L93 It is not updated by Django loaddata command so It will have to be updated manually

As we are about to drop thumbnails, please make sure to skip thumbnail model when dumping the data

Live example. I've tried to restore 1,4GB json dump with 932318 objects. [objects.txt](https://github.com/saleor/saleor/files/10567041/objects.txt) Django loaddata command was unable to handle it due to memory consumption. I've splitted dump into smaller...

Another thing worth mentioning is that out of 932318 objects in live example ~83% (782263) belonged to core app (event payloads, deliveries and delivery attemtps). @maarcingebala Is it necessary to...

Replaced by https://github.com/saleor/saleor/pull/16217

> A proper fix for this should likely lock the transaction and the checkout object for the time needed to process this as we may be changing the payment status...