You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently @matthelm observed an unexpected behaviour when creating new resources.
The problem was caused when the transaction isolation in Materialize was set to serializable causing the read function to intermittently fail right after a create statement is executed.
The suggested fix is to explicitly run SET transaction_isolation = 'strict serializable' whenever we create a new connection in Terraform.
The text was updated successfully, but these errors were encountered:
Feature request
Recently @matthelm observed an unexpected behaviour when creating new resources.
The problem was caused when the transaction isolation in Materialize was set to
serializable
causing the read function to intermittently fail right after a create statement is executed.The suggested fix is to explicitly run
SET transaction_isolation = 'strict serializable'
whenever we create a new connection in Terraform.The text was updated successfully, but these errors were encountered: