-
- Downloads
Add ddl persistence support for mysql (#23443)
* Add ddl persistence support for mysql Since mysql does not have the concept of a (non-select) statement timeout, it is necessary to use core.async to monitor the create table as select statement manually. While mariadb does support a general statement timeout, this will work for both vendors. There are some race conditions here but in the context of persistence, this is ok. Mainly, the timeout could hit right as the create table finishes. If that happens, the statement will not be killed (because it was closed when finished), the table will be created, but the function will throw a timeout exception. In the context of persistence, this is ok since persisted-info will remain inactive and the next refresh will drop the table and try again. The other aspect to consider is that mysql doesn't rollback ddl changes. So we have to manually keep track of what was done when testing the db and undo the steps on failure. This isn't perfect, as the undo itself could throw an exception, thus leaving the schema or test table in place, that should only happen if a role has a create table but not a delete table grant. In any event, if a our schema or test table sticks around, they could be removed manually by a dba, or ignored without harm. * Handle integrating mysql, and make sure exceptions are logged * Add tests for execute-with-timeout * Fix linters * Switch to async/thread because reflection hints are lost by a/go and it's better not to do io in go-blocks * Fix test
Showing
- src/metabase/driver/ddl/mysql.clj 142 additions, 0 deletionssrc/metabase/driver/ddl/mysql.clj
- src/metabase/driver/ddl/postgres.clj 16 additions, 53 deletionssrc/metabase/driver/ddl/postgres.clj
- src/metabase/driver/ddl/sql.clj 54 additions, 0 deletionssrc/metabase/driver/ddl/sql.clj
- src/metabase/driver/mysql.clj 9 additions, 0 deletionssrc/metabase/driver/mysql.clj
- test/metabase/driver/mysql_test.clj 11 additions, 0 deletionstest/metabase/driver/mysql_test.clj
src/metabase/driver/ddl/mysql.clj
0 → 100644
src/metabase/driver/ddl/sql.clj
0 → 100644
Please register or sign in to comment