This message was deleted.
# general
s
This message was deleted.
l
This is a known issue. Due to a lack of generics, we have to generate a very large number of types and functions in our Go SDKs. In v2.18.2 we rolled out an update that improved this by ~50%. I would make sure your pulumi Go SDK and provider SDKs are at the latest versions. One thing that might help is using a
go install
based workflow. By default, pulumi invokes your program with
go run main.go
but you can set the
options.binary
property in your pulumi.yaml to point to a precompiled binary. This way you can run a
go install
to do an incremental build and then have
pulumi up
use the pre-built binary. https://www.pulumi.com/docs/intro/concepts/project/#pulumi-yaml
There is also a #CCWP5TJ5U channel that you can join for more Go discussion.
w
thank you so much! i'll start looking into it