Since the release of 1.10.0, I noticed in our test suite that it nows executes around 2x slower.
Prior to 1.10.0, it took around 19 min to complete all the acceptance testing:

After 1.10.0, now it took roughly twice as long:

I assume this is related to the introduction of Int32
type since OpenTofu does not have it, the elapsed time has not changed (yet).
Is the Terraform SDK team aware of this performance degradation?
There are many steps in the GitHub workflow but the main test step used to take ~15 min:
Afterward, it took ~32 min:
Hi @alexhung
, can you provide more detail of the two tests you’re using in these comparisons? (GH action link, Terraform versions, etc.)
I assume this is related to the introduction of Int32
type since OpenTofu does not have it, the elapsed time has not changed (yet).
The Int32
framework type is just a wrapper on the Terraform type number
, there haven’t been any new types introduced to Terraform, so if the framework upgrade were the root cause of performance issues I’d expect to see similar results regardless of the client executing the test.
Did the version of Terraform change between test A and B? If so, I’d recommend opening a GH issue to discuss that with the Terraform core team.