zoukankan      html  css  js  c++  java
  • pgpool中定义的数据库节点及pgpool支持的复制模式

    /*
     * The first DB node id appears in pgpool.conf or the first "live" DB
     * node otherwise.
     */
    #define REAL_MASTER_NODE_ID (Req_info->master_node_id)

    /*
     * The primary node id in streaming replication mode. If not in the
     * mode or there's no primary node, this macro returns
     * REAL_MASTER_NODE_ID.
     */
    #define PRIMARY_NODE_ID (Req_info->primary_node_id >=0?
                             Req_info->primary_node_id:REAL_MASTER_NODE_ID)
    #define IS_PRIMARY_NODE_ID(node_id)    (node_id == PRIMARY_NODE_ID)

    /*
     * Real primary node id. If not in the mode or there's no primary
     * node, this macro returns -1.
     */
    #define REAL_PRIMARY_NODE_ID (Req_info->primary_node_id)

    /*
     * "Virtual" master node id. It's same as REAL_MASTER_NODE_ID if not
     * in load balance mode. If in load balance, it's the first load
     * balance node.
     */
    #define MASTER_NODE_ID (pool_virtual_master_db_node_id())
    #define IS_MASTER_NODE_ID(node_id) (MASTER_NODE_ID == (node_id))
    #define MASTER_CONNECTION(p) ((p)->slots[MASTER_NODE_ID])
    #define MASTER(p) MASTER_CONNECTION(p)->con

    #define REPLICATION (pool_config->replication_mode)
    #define MASTER_SLAVE (pool_config->master_slave_mode)
    #define STREAM (MASTER_SLAVE && pool_config->master_slave_sub_mode == STREAM_MODE)
    #define SLONY (MASTER_SLAVE && pool_config->master_slave_sub_mode == SLONY_MODE)
    #define DUAL_MODE (REPLICATION || MASTER_SLAVE)
    #define RAW_MODE (!REPLICATION && !MASTER_SLAVE)

  • 相关阅读:
    linux 重新设置mysql密码
    php 一些个 常用 函数
    nginx php错误日志开启
    linux crontab 定时执行任务(php)
    聚合短信接口-- php
    Commons Collections1分析
    spring之 注解ioc&依赖注入 & spring整合mybatis
    Spring之 IOC&依赖注入
    java之 Mybatis(二)
    java之 MyBatis(一)
  • 原文地址:https://www.cnblogs.com/songyuejie/p/7053673.html
Copyright © 2011-2022 走看看