openGauss無法使用域名搭建主從BUG修復(fù)

author:sufei
說明:組內(nèi)成員發(fā)現(xiàn)的opengauss相關(guān)bug記錄并提交官方


openguass版本 2.0.0
其他版本也發(fā)現(xiàn)該問題

現(xiàn)象說明

主從配置

主庫(kù)

postgres.conf

replconninfo1 = 'localhost=gauss-1-0.gauss-1-headless.gauss-test localport=5433  localservice=5434 remotehost=gauss-1-1.gauss-1-headless.gauss-test remoteport=5433  remoteservice=5434 '
listen_addresses = '*'
remote_read_mode = non_authentication

從庫(kù)

postgres.conf

replconninfo1 = 'localhost=gauss-1-1.gauss-1-headless.gauss-test localport=5433  localservice=5434 remotehost=gauss-1-0.gauss-1-headless.gauss-test remoteport=5433  remoteservice=5434 '
listen_addresses = '*'
remote_read_mode = non_authentication

hba配置,主從都一樣

host all    all    0.0.0.0/0   sha256

問題描述

最近在實(shí)現(xiàn)openGuass容器化集群部署時(shí)酝碳,使用statefulset部署openGauss高可用主從集群,由于 pod的IP不是固定的,需要使用域名搭建主從叫编。

在使用域名搭建主從時(shí),發(fā)現(xiàn)從庫(kù)無法同步主庫(kù)信息砌创,主要表現(xiàn)為

1蚕钦,當(dāng)創(chuàng)建新實(shí)例時(shí),從庫(kù)啟動(dòng)后連接主庫(kù)進(jìn)行全量備份時(shí)逻恐,提示無法連接數(shù)據(jù)庫(kù)

[teledb@gs-1 data]$ gs_ctl build -D $PGDATA -b full
[2022-03-21 16:35:27.745][340][][gs_ctl]: gs_ctl full build ,datadir is /home/teledb/gsdata/gsroot/data
[2022-03-21 16:35:27.746][340][][gs_ctl]: stop failed, killing gaussdb by force ...
[2022-03-21 16:35:27.746][340][][gs_ctl]: command [ps c -eo pid,euid,cmd | grep gaussdb | grep -v grep | awk '{if($2 == curuid && $1!="-n") print "/proc/"$1"/cwd"}' curuid=`id -u`| xargs ls -l | awk '{if ($NF=="/home/teledb/gsdata/gsroot/data")  print $(NF-2)}' | awk -F/ '{print $3 }' | xargs kill -9 >/dev/null 2>&1 ] path: [/home/teledb/gsdata/gsroot/data] 
[2022-03-21 16:35:47.872][340][datanode1][gs_ctl]: could not connect to server.

2,使用IP搭建主從后修改為域名峻黍,從庫(kù)以standy啟動(dòng)后复隆,數(shù)據(jù)庫(kù)狀態(tài)永遠(yuǎn)為 Need repair

[2022-03-21 16:29:25.454][353][][gs_ctl]: gs_ctl query 
datadir is /home/teledb/gsdata/gsroot/data 
 HA state:           
        local_role                     : Standy
        static_connections             : 0
        db_state                       : Need repair

查看從庫(kù)啟動(dòng)日志,數(shù)據(jù)目錄下 pg_log目錄,發(fā)現(xiàn)報(bào)錯(cuò)no pg_hba.conf entry for host 姆涩,

排查步驟

  1. 首先從庫(kù)啟動(dòng)日志, 在數(shù)據(jù)目錄下 pg_log目錄挽拂,發(fā)現(xiàn)報(bào)錯(cuò)no pg_hba.conf entry for host ,但是找不出任何問題
  2. 然后確認(rèn)使用IP搭建主從是否可行骨饿,發(fā)現(xiàn)使用IP能正常搭建主從亏栈,
  3. 然后確認(rèn)是不是容器化環(huán)境問題,在物理機(jī)器上配置域名宏赘,搭建主從绒北,并且驗(yàn)證PG試用域名搭建主從, 確認(rèn)域名配置成功置鼻,只是gauss無法使用域名搭建主從镇饮。
  4. 最后根據(jù)日志分析源碼,定位BUG

根因分析

根據(jù)日志定位到函數(shù)hba_getauthmethod

void hba_getauthmethod(hbaPort* port)
{
    /*
     * We may receive replication request from gs_basebackup, in this case, use check_hba
     * to verify. But if we run gs_basebackup at the machine in ReplConnInfo, we can't
     * distinguish whether this request is from a standby process or gs_basebackup...
     * In this case, we still need to use check_hba_replication for compatibility.
     */
#ifdef ENABLE_MULTIPLE_NODES
    if (IsDSorHaWalSender() ) {
#else        
    if (IsDSorHaWalSender() && is_node_internal_connection(port)) {
#endif        
        check_hba_replication(port);
    } else {
        check_hba(port);
    }
}

報(bào)錯(cuò)日志為函數(shù) check_hba調(diào)用報(bào)錯(cuò),但是連接請(qǐng)求 作為復(fù)制連接储藐,應(yīng)該走check_hba_replication 函數(shù)邏輯

所以這里的判斷函數(shù) IsDSorHaWalSender() && is_node_internal_connection(port) 應(yīng)該返回ture俱济,下面看下這兩個(gè)函數(shù)

bool IsDSorHaWalSender()
{
    return (dummyStandbyMode == true || (AM_WAL_SENDER && AM_WAL_DB_SENDER == false));
}
/*
 *  Check if the current connection is a node internal connection
 */
bool is_node_internal_connection(hbaPort* port)
{
    const SockAddr remote_addr = port->raddr;
    const SockAddr local_addr = port->laddr;
    char remote_host[NI_MAXHOST] = {0};
    char local_host[NI_MAXHOST] = {0};

    remote_host[0] = '\0';
    local_host[0] = '\0';

    (void)pg_getnameinfo_all(&remote_addr.addr,
        remote_addr.salen,
        remote_host,
        sizeof(remote_host),
        NULL,
        0,
        NI_NUMERICHOST | NI_NUMERICSERV);
    (void)pg_getnameinfo_all(
        &local_addr.addr, local_addr.salen, local_host, sizeof(local_host), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV);

    if (strlen(remote_host) == 0) {
        return false;
    }

    if (strcmp(remote_host, local_host) == 0) {
        ereport(DEBUG2, (errmsg("remote host is:%s and local host is:%s", remote_host, local_host)));
        return true;
    }

    for (int i = 1; i < MAX_REPLNODE_NUM; i++) {
        if (u_sess->attr.attr_storage.ReplConnInfoArr[i] && *(u_sess->attr.attr_storage.ReplConnInfoArr[i]) != '\0' &&
            strcasestr(u_sess->attr.attr_storage.ReplConnInfoArr[i], remote_host) != NULL) {
            ereport(DEBUG2, (errmsg("remote host is:%s in replconninfo %s",
                remote_host, u_sess->attr.attr_storage.ReplConnInfoArr[1])));
            return true;
        }
    }

    return false;
}

debug加入上述函數(shù)

Breakpoint 1, is_node_internal_connection (port=0x7fb9f0ad85b0) at hba.cpp:2010
2010    hba.cpp: No such file or directory.
(gdb) p *port
$1 = {sock = 118, noblock = false, proto = 196659, laddr = {addr = {ss_family = 2, __ss_padding = "\025\071\n\364\000\241", '\000' <repeats 111 times>, __ss_align = 0}, 
    salen = 16}, raddr = {addr = {ss_family = 2, __ss_padding = "\353(\n\364\000\242", '\000' <repeats 111 times>, __ss_align = 0}, salen = 16}, 
  remote_host = 0x7fb9ef7e6120 "gs-1.gs-headless.gauss-test.svc.cluster.local", remote_hostname = 0x7fb9ef7e6120 "gs-1.gs-headless.gauss-test.svc.cluster.local", 
  remote_hostname_resolv = 0, remote_port = 0x7fb9ef7e6188 "60200", libcomm_addrinfo = 0x0, gs_sock = {idx = 0, sid = 0, ver = 0, type = 0}, 
  canAcceptConnections = CAC_OK, database_name = 0x7fb9ef7e6218 "", user_name = 0x7fb9ef7e61d0 "teledb", cmdline_options = 0x7fb9ef7e6260 "-c remotetype=application", 
  guc_options = 0x7fb9ef7e6378, hba = 0x0, md5Salt = "\235\v\032$", SessionStartTime = 700193972013293, SessionVersionNum = 92298, default_keepalives_idle = 7200, 
  default_keepalives_interval = 75, default_keepalives_count = 9, keepalives_idle = 7200, keepalives_interval = 75, keepalives_count = 9, gss = 0x7fb9ef67ff98, ssl = 0x0, 
  peer = 0x0, peer_cn = 0x0, count = 0, token = "\000\000\000\000\000\000\000\000", is_logic_conn = false, msgLog = 0x0, krbsrvname = 0x0, gss_ctx = 0x0, gss_cred = 0x0, 
  gss_name = 0x0, gss_outbuf = {length = 0, value = 0x0}}
  
(gdb) p remote_host
$11 = "10.244.0.162", '\000' <repeats 1012 times>

可以發(fā)現(xiàn)remote_host 返回的是IP ,

域名在port->remote_host字段钙勃, 并且函數(shù)沒有進(jìn)行域名校驗(yàn)

所以函數(shù)is_node_internal_connection走到 strcasestr(u_sess->attr.attr_storage.ReplConnInfoArr[i], remote_host) != NULL) 時(shí)蛛碌,無法返回true,導(dǎo)致主從搭建失敗辖源。

修復(fù)

在函數(shù)is_node_internal_connection走到 strcasestr(u_sess->attr.attr_storage.ReplConnInfoArr[i], remote_host) != NULL) 時(shí) 添加域名驗(yàn)證蔚携,比較域名是否在字符串ReplConnInfoArr中

修復(fù)還需考慮域名長(zhǎng)度問題,所以只比較第一個(gè)域名字段克饶,比如gauss-1.scv.local, 只比較第一個(gè)gauss-1酝蜒、修復(fù)函數(shù)如下

/*
 *  Check if the current connection is a node internal connection
 */
bool is_node_internal_connection(hbaPort* port)
{
    const SockAddr remote_addr = port->raddr;
    const SockAddr local_addr = port->laddr;
    char remote_host[NI_MAXHOST] = {0};
    char local_host[NI_MAXHOST] = {0};

    char remote_host_prefix[NI_MAXHOST] = {0};
    const char *delim = ".";

    remote_host[0] = '\0';
    local_host[0] = '\0';

    (void)pg_getnameinfo_all(&remote_addr.addr,
        remote_addr.salen,
        remote_host,
        sizeof(remote_host),
        NULL,
        0,
        NI_NUMERICHOST | NI_NUMERICSERV);
    (void)pg_getnameinfo_all(
        &local_addr.addr, local_addr.salen, local_host, sizeof(local_host), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV);

    if (strlen(remote_host) == 0) {
        return false;
    }

    if (strcmp(remote_host, local_host) == 0) {
        ereport(DEBUG2, (errmsg("remote host is:%s and local host is:%s", remote_host, local_host)));
        return true;
    }

    strcpy(remote_host_prefix,port->remote_host);

    for (int i = 1; i < MAX_REPLNODE_NUM; i++) {
        if (u_sess->attr.attr_storage.ReplConnInfoArr[i] && *(u_sess->attr.attr_storage.ReplConnInfoArr[i]) != '\0' &&
            (strcasestr(u_sess->attr.attr_storage.ReplConnInfoArr[i], remote_host) != NULL ||
             strcasestr(u_sess->attr.attr_storage.ReplConnInfoArr[i], strtok(remote_host_prefix, delim)) != NULL)) {
            ereport(DEBUG2, (errmsg("remote host is:%s in replconninfo %s",
                remote_host, u_sess->attr.attr_storage.ReplConnInfoArr[1])));
            return true;
        }
    }

    return false;
}

提交到社區(qū)

提交到opengauss最新master分支

提交記錄如下:https://gitee.com/opengauss/openGauss-server/pulls/1558

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市矾湃,隨后出現(xiàn)的幾起案子亡脑,更是在濱河造成了極大的恐慌,老刑警劉巖邀跃,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件霉咨,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡拍屑,警方通過查閱死者的電腦和手機(jī)途戒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來僵驰,“玉大人喷斋,你說我怎么就攤上這事∷廛睿” “怎么了继准?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)矮男。 經(jīng)常有香客問我,道長(zhǎng)室谚,這世上最難降的妖魔是什么毡鉴? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮秒赤,結(jié)果婚禮上猪瞬,老公的妹妹穿的比我還像新娘。我一直安慰自己入篮,他們只是感情好陈瘦,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著潮售,像睡著了一般痊项。 火紅的嫁衣襯著肌膚如雪锅风。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天鞍泉,我揣著相機(jī)與錄音皱埠,去河邊找鬼。 笑死咖驮,一個(gè)胖子當(dāng)著我的面吹牛边器,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播托修,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼忘巧,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了睦刃?” 一聲冷哼從身側(cè)響起砚嘴,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎眯勾,沒想到半個(gè)月后枣宫,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡吃环,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年也颤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片郁轻。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡翅娶,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出好唯,到底是詐尸還是另有隱情竭沫,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布骑篙,位于F島的核電站蜕提,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏靶端。R本人自食惡果不足惜谎势,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望杨名。 院中可真熱鬧脏榆,春花似錦、人聲如沸台谍。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至坞生,卻和暖如春仔役,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背恨胚。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工骂因, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人赃泡。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓寒波,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親升熊。 傳聞我的和親對(duì)象是個(gè)殘疾皇子俄烁,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容