Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: cluster空指针 #152

Open
1 of 2 tasks
jackj-ohn1 opened this issue Aug 21, 2024 · 6 comments
Open
1 of 2 tasks

[Bug]: cluster空指针 #152

jackj-ohn1 opened this issue Aug 21, 2024 · 6 comments

Comments

@jackj-ohn1
Copy link

What happened?

连接ClickHouse集群上的某个节点后,执行基本的查询操作报错。

Affects Versions

commit:279b6ac6dc

What are you seeing the problem on?

Flink-Table-Api (SQL)

How to reproduce

No response

Relevant log output

Caused by: java.lang.NullPointerException
	at org.apache.flink.connector.clickhouse.util.ClickHouseJdbcUtil.getDistributedEngineFull(ClickHouseJdbcUtil.java:70)
	at org.apache.flink.connector.clickhouse.internal.AbstractClickHouseInputFormat$Builder.build(AbstractClickHouseInputFormat.java:208)
进入查看后发现是:
 String engineFull = rs.getString("engine_full").replaceAll("'|\\s", "");
                    Matcher matcher = DISTRIBUTED_TABLE_ENGINE_PATTERN.matcher(engineFull);
                    String cluster;
                    if (matcher.find()) {
                        cluster = matcher.group("cluster");
                        String database = matcher.group("database");
                        String table = matcher.group("table");
                        String shardingKey = matcher.group("shardingKey");
                        DistributedEngineFull var13 = DistributedEngineFull.of(cluster, database, table, ClickHouseUtil.parseShardingKey(shardingKey), (String)null);
                        return var13;
                    }

                    cluster = null;
                    return cluster;这里的cluster被赋值为null,但手动执行查询语句获得的结果是没有问题的SELECT engine_full FROM system.tables WHERE database = ? AND name = ?

Anything else

No response

Are you willing to submit a PR?

  • Yes I am willing to submit a PR!

Code of Conduct

  • I agree to follow this project's Code of Conduct
@qingfei1994
Copy link
Contributor

试一下用最新的master分支跑一遍?
如果还是不行,发一下SELECT engine_full FROM system.tables WHERE database = ? AND name = ?的输出结果

@itinycheng
Copy link
Owner

@jackj-ohn1

报错说是第70行空指针,看下是不是url配置的问题,connection为空导致的,代码截图:
image

@czy006
Copy link
Collaborator

czy006 commented Aug 27, 2024

cc @qingfei1994

@lucklymore
Copy link

@jackj-ohn1

报错说是第70行空指针,看下是不是url配置的问题,connection为空导致的,代码截图: image

@itinycheng 大佬,master分支下,这里url地址必须是完整得jdbc:clickhouse://x.x.x.x:8123地址,前头必须带jdbc,否则会导致url地址判断错误,返回connetion为空,导致报错
另外尝试jdbc:clickhouse://host1:8123,host2:8123,host3:8123集群模式,实际上也只创建了与第一个host地址得连接,未使用多个连接串,请求也只往第一个发

@itinycheng
Copy link
Owner

itinycheng commented Dec 10, 2024

@jackj-ohn1
报错说是第70行空指针,看下是不是url配置的问题,connection为空导致的,代码截图: image

@itinycheng 大佬,master分支下,这里url地址必须是完整得jdbc:clickhouse://x.x.x.x:8123地址,前头必须带jdbc,否则会导致url地址判断错误,返回connetion为空,导致报错 另外尝试jdbc:clickhouse://host1:8123,host2:8123,host3:8123集群模式,实际上也只创建了与第一个host地址得连接,未使用多个连接串,请求也只往第一个发

@lucklymore Master分支改Url pattern了,flink option配置的url会直接传递给clickhouse-jdbc,配置多个host应该是随机连一个available的,这样有一定容错性吧;Master的readme等一些地方还没修改,最近一直没时间管;

@lucklymore
Copy link

@jackj-ohn1
报错说是第70行空指针,看下是不是url配置的问题,connection为空导致的,代码截图: image

@itinycheng 大佬,master分支下,这里url地址必须是完整得jdbc:clickhouse://x.x.x.x:8123地址,前头必须带jdbc,否则会导致url地址判断错误,返回connetion为空,导致报错 另外尝试jdbc:clickhouse://host1:8123,host2:8123,host3:8123集群模式,实际上也只创建了与第一个host地址得连接,未使用多个连接串,请求也只往第一个发

@lucklymore Master分支改Url pattern了,flink option配置的url会直接传递给clickhouse-jdbc,配置多个host应该是随机连一个available的,这样有一定容错性吧;Master的readme等一些地方还没修改,最近一直没时间管;

@itinycheng 好的大佬,我多翻翻代码,配置多个host应该是随机连一个available的,这个有一定容错性,但是负载均衡这块目前达不到,flink转发请求只有一个机器,吞吐有限,翻了下clickhouse java jdbc项目,看了下部分loadbalance的issue,url可以传入clickhouse jdbc参数,auto_discovery;load_balancing_policy 在尝试这部分参数的效果

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants