启动分布式定时任务项目报错
GenerationTarget encountered exception accepting command : Error executing DDL "create table local_instance_log (id bigint not null auto_increment, instance_id bigint, log_content TEXT, log_level integer, log_time bigint, worker_address varchar(255), primary key (id)) type=MyISAM" via JDBC Statement
原因:MySQL 8.0 以上不支持MyISAM引擎
需要检查一下项目使用的数据库版本
SELECT VERSION();