Good afternoon people. I'm new here on the channe...
# ask-community
c
Good afternoon people. I'm new here on the channel :). Until yesterday my deploy was working. Today, out of nowhere, I'm having a problem building dagit/daemon containers related to the Dagster database. I'm using storage on an RDS Aurora database mysql 8.0.23
Copy code
sqlalchemy.exc.ArgumentError: Invalid value 'AUTOCOMMIT' for isolation_level. Valid isolation levels for 'mysql' are SERIALIZABLE, READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ
a
there's a lot of chatter elsewhere - but sqlalchemy released a major version update yesterday. dagster does not yet (release is pending) have a pin to prevent it using the new major version. if you add a dependency on sqlalchemy 1.4.45, things should start working again
y
Hi! We’re releasing a new version right now to address this issue.
c
Thank you very much, your response was very fast. I was already crazy trying to figure out this error. Thank you very much
m
sqlalchemy<2.0.0
is what we needed
p
The sqlalchemy pin has been added to the latest
1.1.14
release
🌈 1