apache / doris

Apache Doris is an easy-to-use, high performance and unified analytics database.
https://doris.apache.org
Apache License 2.0
12.66k stars 3.27k forks source link

[Bug] be使用ipv6地址,进行ssb压测时,全部挂掉 #40391

Closed xleoken closed 1 month ago

xleoken commented 2 months ago

Search before asking

Version

  1. version, 测试过2.1.5 3.0.1 版本

  2. hosts 配置信息

    3409:8d20:1833:da29::19 DORIS-CMCC-001
    3409:8d20:1833:da29::11 DORIS-CMCC-002
  3. 添加 BE,也有配置 enable_fqdn_mode = true

    ALTER SYSTEM ADD BACKEND "DORIS-CMCC-001:9050";
    ALTER SYSTEM ADD BACKEND "DORIS-CMCC-002:9050";
  4. 执行 ssb 压测, https://doris.apache.org/docs/benchmark/ssb

在执行过程中,后端BE会挂掉

  1. 日志

fe-001.log.tar.gz

be-001.log.tar.gz

be-002.log.tar.gz

How to Reproduce?

No response

Anything Else?

No response

Are you willing to submit PR?

Code of Conduct

yuanyuan8983 commented 1 month ago

Hello, if it is convenient to add my wechat, we will have a look together, my wechat signal is: Liyy_222_8993

yuanyuan8983 commented 1 month ago

Explain the above questions: brpc does not support ipv6 hostname resolution, resulting in connection initialization failure, nullptr is returned. Calling get_client without checking nullptr results in coredump. This PR fixes the nullptr check : https://github.com/apache/doris/pull/40074

xleoken commented 1 month ago

Explain the above questions: brpc does not support ipv6 hostname resolution, resulting in connection initialization failure, nullptr is returned. Calling get_client without checking nullptr results in coredump. This PR fixes the nullptr check : #40074

好的,等新版发布之后,我验证一下