debian-mirror-gitlab/doc/administration/redis/troubleshooting.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

175 lines
5.3 KiB
Markdown
Raw Normal View History

2020-07-28 23:09:34 +05:30
---
type: reference
2022-07-23 23:45:48 +05:30
stage: Systems
2020-07-28 23:09:34 +05:30
group: Distribution
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2020-07-28 23:09:34 +05:30
---
2021-04-29 21:17:54 +05:30
# Troubleshooting Redis **(FREE SELF)**
2020-07-28 23:09:34 +05:30
2022-08-13 15:12:31 +05:30
There are a lot of moving parts that must be taken care carefully
2020-07-28 23:09:34 +05:30
in order for the HA setup to work as expected.
Before proceeding with the troubleshooting below, check your firewall rules:
- Redis machines
- Accept TCP connection in `6379`
- Connect to the other Redis machines via TCP in `6379`
- Sentinel machines
- Accept TCP connection in `26379`
- Connect to other Sentinel machines via TCP in `26379`
- Connect to the Redis machines via TCP in `6379`
2022-01-26 12:08:38 +05:30
## Basic Redis activity check
Start Redis troubleshooting with a basic Redis activity check:
1. Open a terminal on your GitLab server.
1. Run `gitlab-redis-cli --stat` and observe the output while it runs.
2023-01-13 00:05:48 +05:30
1. Go to your GitLab UI and browse to a handful of pages. Any page works, such as
group or project overviews, issues, or files in repositories.
2022-01-26 12:08:38 +05:30
1. Check the `stat` output again and verify that the values for `keys`, `clients`,
`requests`, and `connections` increases as you browse. If the numbers go up,
basic Redis functionality is working and GitLab can connect to it.
2020-07-28 23:09:34 +05:30
## Troubleshooting Redis replication
You can check if everything is correct by connecting to each server using
`redis-cli` application, and sending the `info replication` command as below.
```shell
/opt/gitlab/embedded/bin/redis-cli -h <redis-host-or-ip> -a '<redis-password>' info replication
```
2022-08-13 15:12:31 +05:30
When connected to a `Primary` Redis, you see the number of connected
2020-07-28 23:09:34 +05:30
`replicas`, and a list of each with connection details:
```plaintext
# Replication
role:master
connected_replicas:1
replica0:ip=10.133.5.21,port=6379,state=online,offset=208037514,lag=1
master_repl_offset:208037658
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:206989083
repl_backlog_histlen:1048576
```
2022-08-13 15:12:31 +05:30
When it's a `replica`, you see details of the primary connection and if
2020-07-28 23:09:34 +05:30
its `up` or `down`:
```plaintext
# Replication
role:replica
master_host:10.133.1.58
master_port:6379
master_link_status:up
master_last_io_seconds_ago:1
master_sync_in_progress:0
replica_repl_offset:208096498
replica_priority:100
replica_read_only:1
connected_replicas:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0
```
## Troubleshooting Sentinel
If you get an error like: `Redis::CannotConnectError: No sentinels available.`,
there may be something wrong with your configuration files or it can be related
to [this issue](https://github.com/redis/redis-rb/issues/531).
You must make sure you are defining the same value in `redis['master_name']`
2021-11-11 11:23:49 +05:30
and `redis['master_password']` as you defined for your sentinel node.
2020-07-28 23:09:34 +05:30
The way the Redis connector `redis-rb` works with sentinel is a bit
non-intuitive. We try to hide the complexity in omnibus, but it still requires
a few extra configurations.
---
To make sure your configuration is correct:
1. SSH into your GitLab application server
1. Enter the Rails console:
```shell
# For Omnibus installations
sudo gitlab-rails console
# For source installations
sudo -u git rails console -e production
```
1. Run in the console:
```ruby
redis = Redis.new(Gitlab::Redis::SharedState.params)
redis.info
```
2023-06-20 00:43:36 +05:30
Keep this screen open, and proceed to trigger a failover as described below.
2020-07-28 23:09:34 +05:30
2023-06-20 00:43:36 +05:30
1. To trigger a failover on the primary Redis, SSH into the Redis server and run:
2020-07-28 23:09:34 +05:30
```shell
# port must match your primary redis port, and the sleep time must be a few seconds bigger than defined one
redis-cli -h localhost -p 6379 DEBUG sleep 20
```
2023-06-20 00:43:36 +05:30
WARNING:
2023-07-09 08:55:56 +05:30
This action affects services, and takes the instance down for up to 20 seconds. If successful,
2023-06-20 00:43:36 +05:30
it should recover after that.
2020-07-28 23:09:34 +05:30
1. Then back in the Rails console from the first step, run:
```ruby
redis.info
```
You should see a different port after a few seconds delay
(the failover/reconnect time).
## Troubleshooting a non-bundled Redis with an installation from source
If you get an error in GitLab like `Redis::CannotConnectError: No sentinels available.`,
there may be something wrong with your configuration files or it can be related
to [this upstream issue](https://github.com/redis/redis-rb/issues/531).
You must make sure that `resque.yml` and `sentinel.conf` are configured correctly,
2022-08-13 15:12:31 +05:30
otherwise `redis-rb` does not work properly.
2020-07-28 23:09:34 +05:30
The `master-group-name` (`gitlab-redis`) defined in (`sentinel.conf`)
**must** be used as the hostname in GitLab (`resque.yml`):
```conf
# sentinel.conf:
sentinel monitor gitlab-redis 10.0.0.1 6379 2
sentinel down-after-milliseconds gitlab-redis 10000
sentinel config-epoch gitlab-redis 0
sentinel leader-epoch gitlab-redis 0
```
```yaml
# resque.yaml
production:
url: redis://:myredispassword@gitlab-redis/
sentinels:
-
host: 10.0.0.1
2021-01-03 14:25:43 +05:30
port: 26379 # point to sentinel, not to redis port
2020-07-28 23:09:34 +05:30
-
host: 10.0.0.2
2021-01-03 14:25:43 +05:30
port: 26379 # point to sentinel, not to redis port
2020-07-28 23:09:34 +05:30
-
host: 10.0.0.3
2021-01-03 14:25:43 +05:30
port: 26379 # point to sentinel, not to redis port
2020-07-28 23:09:34 +05:30
```
2022-08-27 11:52:29 +05:30
When in doubt, read the [Redis Sentinel](https://redis.io/docs/manual/sentinel/) documentation.