Working with the bundled PgBouncer service

Working with the bundled PgBouncer service

由于它的高可用性堆栈的一部分,GitLab Premium 包含的捆绑版本可以通过管理/etc/gitlab/gitlab.rb . PgBouncer 用于在故障转移方案中在服务器之间无缝迁移数据库连接. 此外,它可以用于非 HA 设置中以建立连接池,从而加快响​​应时间,同时减少资源使用.

在高可用性设置中,建议为每个数据库节点分别运行一个 PgBouncer 节点,并使用一个内部负载均衡器(TCP)相应地为其服务.

该内容已移至新位置 .

  1. 使用命令gitlab-ctl pg-password-md5 pgbouncer生成 PGBOUNCER_USER_PASSWORD_HASH

  2. 使用命令gitlab-ctl pg-password-md5 gitlab . 稍后我们还需要输入纯文本 SQL_USER_PASSWORD

  3. 在数据库节点上,确保在/etc/gitlab/gitlab.rb设置了以下/etc/gitlab/gitlab.rb

  4. Run gitlab-ctl reconfigure

  5. 在运行 PgBouncer 的节点上,确保在/etc/gitlab/gitlab.rb设置了以下/etc/gitlab/gitlab.rb

    1. pgbouncer['enable'] = true
    2. pgbouncer['databases'] = {
    3. gitlabhq_production: {
    4. host: 'DATABASE_HOST',
    5. password: 'PGBOUNCER_USER_PASSWORD_HASH'
    6. }
    7. }
  6. Run gitlab-ctl reconfigure

  7. 在运行 Puma 的节点上,确保在/etc/gitlab/gitlab.rb设置了以下/etc/gitlab/gitlab.rb

  8. Run gitlab-ctl reconfigure

  9. 此时,您的实例应通过 PgBouncer 连接到数据库. 如果遇到问题,请参阅” 部分

在 GitLab 12.0 中引入 .

If you enable Monitoring, it must be enabled on all PgBouncer servers.

    1. # Enable service discovery for Prometheus
    2. consul['enable'] = true
    3. # Replace placeholders
    4. # Y.Y.Y.Y consul1.gitlab.example.com Z.Z.Z.Z
    5. # with the addresses of the Consul server nodes
    6. consul['configuration'] = {
    7. retry_join: %w(Y.Y.Y.Y consul1.gitlab.example.com Z.Z.Z.Z),
    8. }
    9. # Set the network addresses that the exporters will listen on
    10. node_exporter['listen_address'] = '0.0.0.0:9100'
    11. pgbouncer_exporter['listen_address'] = '0.0.0.0:9188'
  1. 运行sudo gitlab-ctl reconfigure来编译配置.

Administrative console

作为 Omnibus GitLab 的一部分,我们提供了一个gitlab-ctl pgb-console命令,以自动连接到 PgBouncer 管理控制台. 请参阅PgBouncer 文档以获取有关如何与控制台进行交互的详细说明.

要开始会话,请运行

将提示您输入的密码是 PGBOUNCER_USER_PASSWORD

要获取有关实例的一些基本信息,请运行

  1. pgbouncer=# show databases; show clients; show servers;
  2. name | host | port | database | force_user | pool_size | reserve_pool | pool_mode | max_connections | current_connections
  3. ---------------------+-----------+------+---------------------+------------+-----------+--------------+-----------+-----------------+---------------------
  4. gitlabhq_production | 127.0.0.1 | 5432 | gitlabhq_production | | 100 | 5 | | 0 | 1
  5. pgbouncer | | 6432 | pgbouncer | pgbouncer | 2 | 0 | statement | 0 | 0
  6. type | user | database | state | addr | port | local_addr | local_port | connect_time | request_time | ptr | link
  7. | remote_pid | tls
  8. ------+-----------+---------------------+--------+-----------+-------+------------+------------+---------------------+---------------------+-----------+------
  9. +------------+-----
  10. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44590 | 127.0.0.1 | 6432 | 2018-04-24 22:13:10 | 2018-04-24 22:17:10 | 0x12444c0 |
  11. | 0 |
  12. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44592 | 127.0.0.1 | 6432 | 2018-04-24 22:13:10 | 2018-04-24 22:17:10 | 0x12447c0 |
  13. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44594 | 127.0.0.1 | 6432 | 2018-04-24 22:13:10 | 2018-04-24 22:17:10 | 0x1244940 |
  14. | 0 |
  15. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44706 | 127.0.0.1 | 6432 | 2018-04-24 22:14:22 | 2018-04-24 22:16:31 | 0x1244ac0 |
  16. | 0 |
  17. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44708 | 127.0.0.1 | 6432 | 2018-04-24 22:14:22 | 2018-04-24 22:15:15 | 0x1244c40 |
  18. | 0 |
  19. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44794 | 127.0.0.1 | 6432 | 2018-04-24 22:15:15 | 2018-04-24 22:15:15 | 0x1244dc0 |
  20. | 0 |
  21. C | gitlab | gitlabhq_production | active | 127.0.0.1 | 44798 | 127.0.0.1 | 6432 | 2018-04-24 22:15:15 | 2018-04-24 22:16:31 | 0x1244f40 |
  22. | 0 |
  23. C | pgbouncer | pgbouncer | active | 127.0.0.1 | 44660 | 127.0.0.1 | 6432 | 2018-04-24 22:13:51 | 2018-04-24 22:17:12 | 0x1244640 |
  24. | 0 |
  25. (8 rows)
  26. type | user | database | state | addr | port | local_addr | local_port | connect_time | request_time | ptr | link | rem
  27. ote_pid | tls
  28. ------+--------+---------------------+-------+-----------+------+------------+------------+---------------------+---------------------+-----------+------+----
  29. --------+-----
  30. S | gitlab | gitlabhq_production | idle | 127.0.0.1 | 5432 | 127.0.0.1 | 35646 | 2018-04-24 22:15:15 | 2018-04-24 22:17:10 | 0x124dca0 | |
  31. (1 row)

如果您遇到通过 PgBouncer 连接的任何问题,则首先检查的始终是日志:

另外,您可以在检查show databases的输出. 在输出中,您期望在gitlabhq_production数据库的host字段中看到值. 此外, current_connections应该大于 1.

请参阅Geo 文档中建议的修复程序.