Is it correct that pulumi is storing a stack trace...
# python
d
Is it correct that pulumi is storing a stack trace in state referencing files from my environment unrelated to the actual project source code? https://gist.github.com/antdking/3a8a6cef67270a7b8d9379c9f7d2fb63
Seems excessive, and will cause a lot of churn when working with multiple people
b
We do. We've been doing this for quite a while now (I want to say since 2023?) - in all our customers, I can't say that it's caused any issues with state changes and we have some very large customers with very large state files and very large numbers of employees all updating. We have concurrency built in so that would solve a lot of those kinds of problems
d
I knew about the main source location for tracing resource definitions. It's that the stack trace has reference to the stack outside of the project code's scope seems odd
b
For example, lines 33-35 in your gist link above?
d
Yes, lines 9 through 38
b
That is a good point - let me ask internally
👍 1