This message was deleted.
# general
s
This message was deleted.
b
The gist of this is that by default we write a checkpoint for every resource that gets updated. This means we know exactly what’s going on at the time. With the skip checkpoint env var set to true, we just write once when everything is done so you don’t get the tracking that you would otherwise.
c
Yup, I understand that part. Then what does it mean that self-managed backends "_typically store a singular Pulumi state file._"? Since I'm using S3 bucket backend, then
PULUMI_EXPERIMENTAL=1 PULUMI_SKIP_CHECKPOINTS=true
should not make a difference for me. But it does. Big time. Hours vs. minutes kind of difference. Why?
b
Because we’re updating that file multiple times (per checkpoint) during the update as opposed to once
c
Then the self-managed backend is written multiple times (per checkpoint), and the statement in the docs "_typically store a singular Pulumi state file._" is misleading, right?
b
No, we’re writing to the same single file multiple times
c
Ah, OK, that makes sense. Thanks!