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
--创建源表datagen_source
CREATE TABLE datagen_source(
id BIGINT,
name STRING
) WITH (
'connector' = 'datagen'
);
--创建结果表blackhole_sink
CREATE TABLE blackhole_sink(
id BIGINT,
name STRING
) WITH (
'connector' = 'blackhole'
);
--将源表数据插入到结果表
INSERT INTO blackhole_sink
SELECT
id ,
name
from datagen_source;
Search before asking
What happened
YARN Application 模式运行失败(YARN Session 模式可以运行)。
已在 dinky/extends/ 放置
mysql-connector-j-8.0.33.jar
,未找到的类是 com.mysql.jdbc.Driver,同时放置了mysql-connector-java-5.1.49.jar
。日志:
mgigEGg6.txt
What you expected to happen
正常运行
How to reproduce
使用 YARN Application 模式运行
Anything else
No response
Version
1.1.0
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: