Spring批处理作业未在开发环境中启动
P粉517814372
P粉517814372 2023-09-06 10:01:50
0
1
565

我使用 spring spring-boot-starter-batch 2.7.9 并以 mysql DB 作为数据源。我有一个奇怪的问题,批处理作业在我的本地运行,但无法在开发环境(kubernetes)中启动,异常如下:

Exception while starting job
    org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [INSERT into BATCH_JOB_EXECUTION_PARAMS(JOB_EXECUTION_ID, KEY_NAME, TYPE_CD, STRING_VAL, DATE_VAL, LONG_VAL, DOUBLE_VAL, IDENTIFYING) values (?, ?, ?, ?, ?, ?, ?, ?)]; SQL state [HY000]; error code [3098]; The table does not comply with the requirements by an external plugin.; nested exception is java.sql.SQLException: The table does not comply with the requirements by an external plugin.

作业通过休息端 API 触发,该 API 提供两个作业参数:字符串和日期时间。

示例参数:

{
    "idType" : "ALL",
    "triggerTime": "2023-03-16T19:54:18.262Z" 
}

我的本​​地数据库和开发数据库之间的一个区别可能是复制因子。开发数据库配置了 3 个副本,而在本地我只有一个。这可能是这个异常的原因吗?我该如何解决这个问题? TIA。

P粉517814372
P粉517814372

全部回复(1)
P粉166675898

您需要自定义 Spring Batch 元表的定义,以便每个表都有一个主键。

默认情况下,MySQL 接受没有主键的表。但在任何使用 MySQL 复制的设置中,没有主键的表要么根本不起作用(如您的组复制情况),要么会导致日后的操作难题。

根本原因是 Spring Batch 架构的 DDL 包含的索引数量非常有限。这是故意的,因为索引的最佳方法在很大程度上取决于特定的用例: https://docs.spring.io/spring-batch/docs/4.3.8/reference/html/schema-appendix.html#recommendationsForIndexingMetaDataTables

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!