CPU utilization by sidekiq and redis during idle - lots of redis communication
<!--IssueSummary start-->
<details>
<summary>
Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards.
</summary>
- [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=339926)
</details>
<!--IssueSummary end-->
After investigating the CPU utilization of an idling installation, we found out that sidekiq is communicating continuously with redis even if no user or job is accessing/processing something at the moment.
```
%CPU %MEM TIME+ COMMAND
2.7 14.9 17:35.08 sidekiq 5.2.9 queues:authorized_project_update:authorized_project_update_...
1.0 0.2 7:12.59 /opt/gitlab/embedded/bin/redis-server 127.0.0.1:0
```
I used `strace -e trace=write,read -tt` to capture 6 random seconds from this communication.
```
08:25:50.028589 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.032043 write(40, "*-1\r\n", 5) = 5
08:25:50.032935 write(30, "*-1\r\n", 5) = 5
08:25:50.033723 write(28, "*-1\r\n", 5) = 5
08:25:50.034481 write(13, "*-1\r\n", 5) = 5
08:25:50.035187 write(41, "*-1\r\n", 5) = 5
08:25:50.035924 write(39, "*-1\r\n", 5) = 5
08:25:50.036642 write(56, "*-1\r\n", 5) = 5
08:25:50.037386 write(22, "*-1\r\n", 5) = 5
08:25:50.038045 write(46, "*-1\r\n", 5) = 5
08:25:50.038773 write(26, "*-1\r\n", 5) = 5
08:25:50.039464 write(20, "*-1\r\n", 5) = 5
08:25:50.040123 write(31, "*-1\r\n", 5) = 5
08:25:50.040817 write(45, "*-1\r\n", 5) = 5
08:25:50.041503 write(24, "*-1\r\n", 5) = 5
08:25:50.042180 write(60, "*-1\r\n", 5) = 5
08:25:50.043465 write(48, "*-1\r\n", 5) = 5
08:25:50.044186 write(49, "*-1\r\n", 5) = 5
08:25:50.044902 write(62, "*-1\r\n", 5) = 5
08:25:50.045606 write(63, "*-1\r\n", 5) = 5
08:25:50.046329 write(57, "*-1\r\n", 5) = 5
08:25:50.047036 write(42, "*-1\r\n", 5) = 5
08:25:50.047745 write(14, "*-1\r\n", 5) = 5
08:25:50.048429 write(50, "*-1\r\n", 5) = 5
08:25:50.049088 write(29, "*-1\r\n", 5) = 5
08:25:50.049788 write(44, "*-1\r\n", 5) = 5
08:25:50.050462 write(35, "*-1\r\n", 5) = 5
08:25:50.051121 write(38, "*-1\r\n", 5) = 5
08:25:50.051788 write(47, "*-1\r\n", 5) = 5
08:25:50.052461 write(37, "*-1\r\n", 5) = 5
08:25:50.053166 write(55, "*-1\r\n", 5) = 5
08:25:50.053829 write(17, "*-1\r\n", 5) = 5
08:25:50.054514 write(25, "*-1\r\n", 5) = 5
08:25:50.055210 write(23, "*-1\r\n", 5) = 5
08:25:50.055951 write(15, "*-1\r\n", 5) = 5
08:25:50.056600 write(64, "*-1\r\n", 5) = 5
08:25:50.057301 write(34, "*-1\r\n", 5) = 5
08:25:50.057963 write(9, "*-1\r\n", 5) = 5
08:25:50.059966 read(40, "*316\r\n$5\r\nbrpop\r\n$99\r\nresque:git"..., 16384) = 16384
08:25:50.060093 read(30, "*316\r\n$5\r\nbrpop\r\n$33\r\nresque:git"..., 16384) = 16384
08:25:50.060220 read(28, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:50.060342 read(13, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:50.060513 read(41, "*316\r\n$5\r\nbrpop\r\n$74\r\nresque:git"..., 16384) = 16384
08:25:50.060693 read(39, "*316\r\n$5\r\nbrpop\r\n$35\r\nresque:git"..., 16384) = 16384
08:25:50.060840 read(56, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:50.060987 read(22, "*316\r\n$5\r\nbrpop\r\n$40\r\nresque:git"..., 16384) = 16384
08:25:50.061134 read(46, "*316\r\n$5\r\nbrpop\r\n$67\r\nresque:git"..., 16384) = 16384
08:25:50.061274 read(26, "*316\r\n$5\r\nbrpop\r\n$42\r\nresque:git"..., 16384) = 16384
08:25:50.061409 read(20, "*316\r\n$5\r\nbrpop\r\n$49\r\nresque:git"..., 16384) = 16384
08:25:50.061555 read(31, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:50.061714 read(45, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:50.061867 read(24, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:50.062006 read(60, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:50.062130 read(48, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:50.062231 read(49, "*316\r\n$5\r\nbrpop\r\n$55\r\nresque:git"..., 16384) = 16384
08:25:50.062340 read(62, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:50.062445 read(63, "*316\r\n$5\r\nbrpop\r\n$57\r\nresque:git"..., 16384) = 16384
08:25:50.062541 read(57, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:50.062638 read(42, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:50.062734 read(14, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:50.062830 read(50, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:50.062926 read(29, "*316\r\n$5\r\nbrpop\r\n$56\r\nresque:git"..., 16384) = 16384
08:25:50.063021 read(44, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:50.063117 read(35, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:50.063214 read(38, "*316\r\n$5\r\nbrpop\r\n$67\r\nresque:git"..., 16384) = 16384
08:25:50.063306 read(47, "*316\r\n$5\r\nbrpop\r\n$57\r\nresque:git"..., 16384) = 16384
08:25:50.063400 read(37, "*316\r\n$5\r\nbrpop\r\n$68\r\nresque:git"..., 16384) = 16384
08:25:50.063494 read(55, "*316\r\n$5\r\nbrpop\r\n$46\r\nresque:git"..., 16384) = 16384
08:25:50.063584 read(17, "*316\r\n$5\r\nbrpop\r\n$28\r\nresque:git"..., 16384) = 16384
08:25:50.063679 read(25, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:50.063767 read(23, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:50.063857 read(15, "*316\r\n$5\r\nbrpop\r\n$67\r\nresque:git"..., 16384) = 16384
08:25:50.063946 read(64, "*316\r\n$5\r\nbrpop\r\n$36\r\nresque:git"..., 16384) = 16384
08:25:50.064035 read(34, "*316\r\n$5\r\nbrpop\r\n$42\r\nresque:git"..., 16384) = 16384
08:25:50.064121 read(9, "*316\r\n$5\r\nbrpop\r\n$28\r\nresque:git"..., 16384) = 16384
08:25:50.064362 read(40, "spatch\r\n$56\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:50.064777 read(30, ":gitlab:queue:github_importer:gi"..., 16384) = 3119
08:25:50.065109 read(28, "e:github_importer:github_import_"..., 16384) = 3119
08:25:50.065428 read(13, "resque:gitlab:queue:cronjob:part"..., 16384) = 3119
08:25:50.065749 read(41, "environment\r\n$68\r\nresque:gitlab:"..., 16384) = 3119
08:25:50.066054 read(39, "itlab:queue:jira_connect:jira_co"..., 16384) = 3119
08:25:50.066358 read(56, "ent_add_severity_system_note\r\n$5"..., 16384) = 3119
08:25:50.066662 read(22, "ory_storage\r\n$51\r\nresque:gitlab:"..., 16384) = 3119
08:25:50.066962 read(46, "b:queue:pipeline_background:ci_p"..., 16384) = 3119
08:25:50.067259 read(26, "project_update:authorized_projec"..., 16384) = 3119
08:25:50.067556 read(20, "tification\r\n$58\r\nresque:gitlab:q"..., 16384) = 3119
08:25:50.068029 read(31, "e_cron\r\n$48\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:50.068372 read(45, "\r\n$65\r\nresque:gitlab:queue:gcp_c"..., 16384) = 3119
08:25:50.068706 read(24, "e:cronjob:ssh_keys_expired_notif"..., 16384) = 3119
08:25:50.069055 read(60, "que:gitlab:queue:pipeline_proces"..., 16384) = 3119
08:25:50.069397 read(48, "$56\r\nresque:gitlab:queue:pipelin"..., 16384) = 3119
08:25:50.069724 read(49, "ct_create\r\n$70\r\nresque:gitlab:qu"..., 16384) = 3119
08:25:50.070024 read(62, "\r\n$55\r\nresque:gitlab:queue:gcp_c"..., 16384) = 3119
08:25:50.070321 read(63, "er\r\n$67\r\nresque:gitlab:queue:gcp"..., 16384) = 3119
08:25:50.070619 read(57, "cessing:build_success\r\n$70\r\nresq"..., 16384) = 3119
08:25:50.070919 read(42, "\n$70\r\nresque:gitlab:queue:jira_i"..., 16384) = 3119
08:25:50.071216 read(14, "p\r\n$47\r\nresque:gitlab:queue:gith"..., 16384) = 3119
08:25:50.071515 read(50, "60\r\nresque:gitlab:queue:cronjob:"..., 16384) = 3119
08:25:50.071809 read(29, "sque:gitlab:queue:gcp_cluster:cl"..., 16384) = 3119
08:25:50.072102 read(44, "_pipeline_bridge_status\r\n$49\r\nre"..., 16384) = 3119
08:25:50.072400 read(35, "ue:gitlab:queue:repository_check"..., 16384) = 3119
08:25:50.072694 read(38, "_user_range\r\n$63\r\nresque:gitlab:"..., 16384) = 3119
08:25:50.072990 read(47, ":gitlab:queue:cronjob:pages_doma"..., 16384) = 3119
08:25:50.073284 read(37, "sleep\r\n$66\r\nresque:gitlab:queue:"..., 16384) = 3119
08:25:50.073584 read(55, "esque:gitlab:queue:phabricator_i"..., 16384) = 3119
08:25:50.073881 read(17, ":pipeline_background:ci_pipeline"..., 16384) = 3119
08:25:50.074178 read(25, "ab:queue:github_importer:github_"..., 16384) = 3119
08:25:50.074483 read(23, "rter:github_import_import_diff_n"..., 16384) = 3119
08:25:50.074776 read(15, "extraction\r\n$67\r\nresque:gitlab:q"..., 16384) = 3119
08:25:50.075070 read(64, "ent_management_pager_duty_proces"..., 16384) = 3119
08:25:50.075365 read(34, "queue:cronjob:ci_delete_unit_tes"..., 16384) = 3119
08:25:50.075661 read(9, "nup\r\n$47\r\nresque:gitlab:queue:cr"..., 16384) = 3119
08:25:50.129900 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.130514 write(21, "*-1\r\n", 5) = 5
08:25:50.131412 read(21, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:50.131703 read(21, "sque:gitlab:queue:delete_user\r\n$"..., 16384) = 3119
08:25:50.231019 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.231841 write(53, "*-1\r\n", 5) = 5
08:25:50.232915 write(19, "*-1\r\n", 5) = 5
08:25:50.233626 write(58, "*-1\r\n", 5) = 5
08:25:50.234342 read(53, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:50.234539 read(19, "*316\r\n$5\r\nbrpop\r\n$100\r\nresque:gi"..., 16384) = 16384
08:25:50.234669 read(58, "*316\r\n$5\r\nbrpop\r\n$28\r\nresque:git"..., 16384) = 16384
08:25:50.234970 read(53, "nch\r\n$33\r\nresque:gitlab:queue:pr"..., 16384) = 3119
08:25:50.235396 read(19, "ule_migrate_external_diffs\r\n$48\r"..., 16384) = 3119
08:25:50.235753 read(58, ":gitlab:queue:default\r\n$51\r\nresq"..., 16384) = 3119
08:25:50.332050 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.433052 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.534231 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.635416 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.736609 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.836717 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:50.837678 write(43, "*-1\r\n", 5) = 5
08:25:50.838646 write(16, "*-1\r\n", 5) = 5
08:25:50.839428 write(8, "*-1\r\n", 5) = 5
08:25:50.840136 write(11, "*-1\r\n", 5) = 5
08:25:50.840855 write(18, "*-1\r\n", 5) = 5
08:25:50.841665 read(43, "*316\r\n$5\r\nbrpop\r\n$43\r\nresque:git"..., 16384) = 16384
08:25:50.841850 read(16, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:50.842031 read(8, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:50.842203 read(11, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:50.842373 read(18, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:50.842700 read(43, "e:remote_mirror_notification\r\n$4"..., 16384) = 3119
08:25:50.843167 read(16, "ab:queue:mailers\r\n$58\r\nresque:gi"..., 16384) = 3119
08:25:50.843548 read(8, "0\r\nresque:gitlab:queue:namespace"..., 16384) = 3119
08:25:50.843910 read(11, ":delete_user\r\n$70\r\nresque:gitlab"..., 16384) = 3119
08:25:50.844272 read(18, "ue:gitlab:queue:pages_remove\r\n$4"..., 16384) = 3119
08:25:50.938449 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.039757 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.040691 write(36, "*-1\r\n", 5) = 5
08:25:51.042048 write(12, "*-1\r\n", 5) = 5
08:25:51.042861 write(32, "*-1\r\n", 5) = 5
08:25:51.044042 write(10, "*-1\r\n", 5) = 5
08:25:51.044847 read(36, "*316\r\n$5\r\nbrpop\r\n$71\r\nresque:git"..., 16384) = 16384
08:25:51.045005 read(12, "*316\r\n$5\r\nbrpop\r\n$40\r\nresque:git"..., 16384) = 16384
08:25:51.045145 read(32, "*316\r\n$5\r\nbrpop\r\n$49\r\nresque:git"..., 16384) = 16384
08:25:51.045364 read(10, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:51.045667 read(36, "que:gitlab:queue:merge\r\n$39\r\nres"..., 16384) = 3119
08:25:51.046185 read(12, "t\r\n$50\r\nresque:gitlab:queue:self"..., 16384) = 3119
08:25:51.046565 read(32, "round:ci_ref_delete_unlock_artif"..., 16384) = 3119
08:25:51.046927 read(10, "ements\r\n$78\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:51.141385 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.242527 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.342809 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.443932 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.545213 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.646517 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.746651 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.847822 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:51.949080 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.050170 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.151255 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.155609 write(21, "*-1\r\n", 5) = 5
08:25:52.157696 write(64, "*-1\r\n", 5) = 5
08:25:52.158484 write(34, "*-1\r\n", 5) = 5
08:25:52.159193 write(9, "*-1\r\n", 5) = 5
08:25:52.159903 write(25, "*-1\r\n", 5) = 5
08:25:52.160613 write(23, "*-1\r\n", 5) = 5
08:25:52.161321 write(15, "*-1\r\n", 5) = 5
08:25:52.162019 write(17, "*-1\r\n", 5) = 5
08:25:52.162731 write(37, "*-1\r\n", 5) = 5
08:25:52.163482 write(55, "*-1\r\n", 5) = 5
08:25:52.164189 write(47, "*-1\r\n", 5) = 5
08:25:52.164861 write(44, "*-1\r\n", 5) = 5
08:25:52.165546 write(35, "*-1\r\n", 5) = 5
08:25:52.166243 write(38, "*-1\r\n", 5) = 5
08:25:52.167371 write(14, "*-1\r\n", 5) = 5
08:25:52.168402 write(50, "*-1\r\n", 5) = 5
08:25:52.169421 write(42, "*-1\r\n", 5) = 5
08:25:52.170516 write(29, "*-1\r\n", 5) = 5
08:25:52.171646 write(63, "*-1\r\n", 5) = 5
08:25:52.172672 write(57, "*-1\r\n", 5) = 5
08:25:52.173412 write(62, "*-1\r\n", 5) = 5
08:25:52.174250 write(49, "*-1\r\n", 5) = 5
08:25:52.175068 write(60, "*-1\r\n", 5) = 5
08:25:52.176170 write(48, "*-1\r\n", 5) = 5
08:25:52.176949 write(31, "*-1\r\n", 5) = 5
08:25:52.177713 write(24, "*-1\r\n", 5) = 5
08:25:52.178863 write(45, "*-1\r\n", 5) = 5
08:25:52.179642 write(20, "*-1\r\n", 5) = 5
08:25:52.180385 write(46, "*-1\r\n", 5) = 5
08:25:52.181116 write(26, "*-1\r\n", 5) = 5
08:25:52.182194 write(22, "*-1\r\n", 5) = 5
08:25:52.183201 write(39, "*-1\r\n", 5) = 5
08:25:52.184254 write(56, "*-1\r\n", 5) = 5
08:25:52.184992 write(28, "*-1\r\n", 5) = 5
08:25:52.185754 write(13, "*-1\r\n", 5) = 5
08:25:52.186523 write(41, "*-1\r\n", 5) = 5
08:25:52.187274 write(30, "*-1\r\n", 5) = 5
08:25:52.188018 write(40, "*-1\r\n", 5) = 5
08:25:52.188780 read(21, "*316\r\n$5\r\nbrpop\r\n$61\r\nresque:git"..., 16384) = 16384
08:25:52.188935 read(64, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:52.189155 read(34, "*316\r\n$5\r\nbrpop\r\n$61\r\nresque:git"..., 16384) = 16384
08:25:52.189349 read(9, "*316\r\n$5\r\nbrpop\r\n$68\r\nresque:git"..., 16384) = 16384
08:25:52.189530 read(25, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:52.189697 read(23, "*316\r\n$5\r\nbrpop\r\n$55\r\nresque:git"..., 16384) = 16384
08:25:52.189896 read(15, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:52.190057 read(17, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:52.190201 read(37, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:52.190367 read(55, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:52.190516 read(47, "*316\r\n$5\r\nbrpop\r\n$56\r\nresque:git"..., 16384) = 16384
08:25:52.190657 read(44, "*316\r\n$5\r\nbrpop\r\n$44\r\nresque:git"..., 16384) = 16384
08:25:52.190793 read(35, "*316\r\n$5\r\nbrpop\r\n$65\r\nresque:git"..., 16384) = 16384
08:25:52.190945 read(38, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:52.191094 read(14, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:52.191268 read(50, "*316\r\n$5\r\nbrpop\r\n$49\r\nresque:git"..., 16384) = 16384
08:25:52.191427 read(42, "*316\r\n$5\r\nbrpop\r\n$32\r\nresque:git"..., 16384) = 16384
08:25:52.191570 read(29, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:52.191711 read(63, "*316\r\n$5\r\nbrpop\r\n$55\r\nresque:git"..., 16384) = 16384
08:25:52.191840 read(57, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:52.191970 read(62, "*316\r\n$5\r\nbrpop\r\n$60\r\nresque:git"..., 16384) = 16384
08:25:52.192086 read(49, "*316\r\n$5\r\nbrpop\r\n$35\r\nresque:git"..., 16384) = 16384
08:25:52.192198 read(60, "*316\r\n$5\r\nbrpop\r\n$32\r\nresque:git"..., 16384) = 16384
08:25:52.192311 read(48, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:52.192423 read(31, "*316\r\n$5\r\nbrpop\r\n$91\r\nresque:git"..., 16384) = 16384
08:25:52.192541 read(24, "*316\r\n$5\r\nbrpop\r\n$52\r\nresque:git"..., 16384) = 16384
08:25:52.192655 read(45, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:52.192769 read(20, "*316\r\n$5\r\nbrpop\r\n$70\r\nresque:git"..., 16384) = 16384
08:25:52.192889 read(46, "*316\r\n$5\r\nbrpop\r\n$75\r\nresque:git"..., 16384) = 16384
08:25:52.193003 read(26, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:52.193116 read(22, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:52.193227 read(39, "*316\r\n$5\r\nbrpop\r\n$52\r\nresque:git"..., 16384) = 16384
08:25:52.193340 read(56, "*316\r\n$5\r\nbrpop\r\n$56\r\nresque:git"..., 16384) = 16384
08:25:52.193452 read(28, "*316\r\n$5\r\nbrpop\r\n$63\r\nresque:git"..., 16384) = 16384
08:25:52.193564 read(13, "*316\r\n$5\r\nbrpop\r\n$36\r\nresque:git"..., 16384) = 16384
08:25:52.193677 read(41, "*316\r\n$5\r\nbrpop\r\n$33\r\nresque:git"..., 16384) = 16384
08:25:52.193788 read(30, "*316\r\n$5\r\nbrpop\r\n$44\r\nresque:git"..., 16384) = 16384
08:25:52.193903 read(40, "*316\r\n$5\r\nbrpop\r\n$46\r\nresque:git"..., 16384) = 16384
08:25:52.194186 read(21, "e\r\n$56\r\nresque:gitlab:queue:pipe"..., 16384) = 3119
08:25:52.194654 read(64, "ue:gitlab:queue:pipeline_backgro"..., 16384) = 3119
08:25:52.195021 read(34, "ojects\r\n$70\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:52.195355 read(9, "s_profiles\r\n$53\r\nresque:gitlab:q"..., 16384) = 3119
08:25:52.195695 read(25, "gitlab:queue:pipeline_cache:expi"..., 16384) = 3119
08:25:52.196061 read(23, "ect_destroy\r\n$46\r\nresque:gitlab:"..., 16384) = 3119
08:25:52.196393 read(15, "create_note_diff_file\r\n$72\r\nresq"..., 16384) = 3119
08:25:52.196738 read(17, "t_notes\r\n$27\r\nresque:gitlab:queu"..., 16384) = 3119
08:25:52.197069 read(37, "r_repository:container_expiratio"..., 16384) = 3119
08:25:52.197384 read(55, "equest_cleanup_refs\r\n$61\r\nresque"..., 16384) = 3119
08:25:52.197693 read(47, "_usage_trends_count_job_trigger\r"..., 16384) = 3119
08:25:52.198113 read(44, "ithub_import_stage_import_reposi"..., 16384) = 3119
08:25:52.198521 read(35, "zed_keys\r\n$49\r\nresque:gitlab:que"..., 16384) = 3119
08:25:52.198899 read(38, "\r\n$59\r\nresque:gitlab:queue:repos"..., 16384) = 3119
08:25:52.199337 read(14, "ab:queue:github_importer:github_"..., 16384) = 3119
08:25:52.199716 read(50, "requests_delete_source_branch\r\n$"..., 16384) = 3119
08:25:52.200095 read(42, "njob:releases_manage_evidence\r\n$"..., 16384) = 3119
08:25:52.200468 read(29, "_pipeline_schedule\r\n$66\r\nresque:"..., 16384) = 3119
08:25:52.200840 read(63, "_create\r\n$32\r\nresque:gitlab:queu"..., 16384) = 3119
08:25:52.201200 read(57, "$44\r\nresque:gitlab:queue:cronjob"..., 16384) = 3119
08:25:52.201541 read(62, "\r\n$68\r\nresque:gitlab:queue:githu"..., 16384) = 3119
08:25:52.201890 read(49, "e_cross_project_pipeline\r\n$32\r\nr"..., 16384) = 3119
08:25:52.202237 read(60, "b:queue:auto_devops:auto_devops_"..., 16384) = 3119
08:25:52.202592 read(48, "64\r\nresque:gitlab:queue:gcp_clus"..., 16384) = 3119
08:25:52.202937 read(31, "ne\r\n$52\r\nresque:gitlab:queue:mer"..., 16384) = 3119
08:25:52.203377 read(24, "_statistics\r\n$51\r\nresque:gitlab:"..., 16384) = 3119
08:25:52.203764 read(45, ":gitlab:queue:github_importer:gi"..., 16384) = 3119
08:25:52.204140 read(20, "56\r\nresque:gitlab:queue:pipeline"..., 16384) = 3119
08:25:52.204540 read(46, "lert_worker_v2\r\n$70\r\nresque:gitl"..., 16384) = 3119
08:25:52.205015 read(26, ":project_export\r\n$45\r\nresque:git"..., 16384) = 3119
08:25:52.205415 read(22, "peline_default:pipeline_metrics\r"..., 16384) = 3119
08:25:52.205917 read(39, "repository:container_expiration_"..., 16384) = 3119
08:25:52.206370 read(56, "que:gitlab:queue:pipeline_defaul"..., 16384) = 3119
08:25:52.206815 read(28, "reate\r\n$59\r\nresque:gitlab:queue:"..., 16384) = 3119
08:25:52.207261 read(13, "_debian_process_changes\r\n$62\r\nre"..., 16384) = 3119
08:25:52.207703 read(41, "nd:ci_pipeline_artifacts_coverag"..., 16384) = 3119
08:25:52.208130 read(30, "github_import_stage_import_pull_"..., 16384) = 3119
08:25:52.208582 read(40, "a_connect_retry_request\r\n$49\r\nre"..., 16384) = 3119
08:25:52.251754 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.252593 write(58, "*-1\r\n", 5) = 5
08:25:52.253478 write(53, "*-1\r\n", 5) = 5
08:25:52.254387 write(19, "*-1\r\n", 5) = 5
08:25:52.255380 read(58, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:52.255552 read(53, "*316\r\n$5\r\nbrpop\r\n$54\r\nresque:git"..., 16384) = 16384
08:25:52.255698 read(19, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:52.256017 read(58, "ase_partition_management\r\n$39\r\nr"..., 16384) = 3119
08:25:52.256459 read(53, "ding_user_added\r\n$40\r\nresque:git"..., 16384) = 3119
08:25:52.256856 read(19, "58\r\nresque:gitlab:queue:approve_"..., 16384) = 3119
08:25:52.352872 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.453951 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.554976 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.656121 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.757366 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.793294 read(51, "*7\r\n$13\r\nzrangebyscore\r\n$19\r\nres"..., 16384) = 109
08:25:52.793708 write(51, "*0\r\n", 4) = 4
08:25:52.794003 read(51, "*7\r\n$13\r\nzrangebyscore\r\n$22\r\nres"..., 16384) = 112
08:25:52.794312 write(51, "*0\r\n", 4) = 4
08:25:52.794604 read(51, "*3\r\n$5\r\nsscan\r\n$23\r\nresque:gitla"..., 16384) = 52
08:25:52.794919 write(51, "*2\r\n$1\r\n0\r\n*1\r\n$20\r\ngit:659:aaef"..., 42) = 42
08:25:52.795195 read(51, "*3\r\n$4\r\nhget\r\n$34\r\nresque:gitlab"..., 16384) = 65
08:25:52.795492 write(51, "$23403\r\n", 8) = 8
08:25:52.795621 write(51, "{\"hostname\":\"git\",\"started_at\":1"..., 23405) = 23405
08:25:52.795974 read(51, "*2\r\n$5\r\nscard\r\n$23\r\nresque:gitla"..., 16384) = 45
08:25:52.796368 write(51, ":1\r\n", 4) = 4
08:25:52.858219 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:52.859233 write(11, "*-1\r\n", 5) = 5
08:25:52.860109 write(18, "*-1\r\n", 5) = 5
08:25:52.861367 write(16, "*-1\r\n", 5) = 5
08:25:52.862559 write(8, "*-1\r\n", 5) = 5
08:25:52.863297 write(43, "*-1\r\n", 5) = 5
08:25:52.864498 read(11, "*316\r\n$5\r\nbrpop\r\n$86\r\nresque:git"..., 16384) = 16384
08:25:52.864640 read(18, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:52.864783 read(16, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:52.864917 read(8, "*316\r\n$5\r\nbrpop\r\n$46\r\nresque:git"..., 16384) = 16384
08:25:52.865040 read(43, "*316\r\n$5\r\nbrpop\r\n$49\r\nresque:git"..., 16384) = 16384
08:25:52.865321 read(11, "referenced_lfs_objects\r\n$44\r\nres"..., 16384) = 3119
08:25:52.865742 read(18, "repository_update_remote_mirror\r"..., 16384) = 3119
08:25:52.866195 read(16, "\r\nresque:gitlab:queue:projects_p"..., 16384) = 3119
08:25:52.866628 read(8, "njob:expire_build_artifacts\r\n$69"..., 16384) = 3119
08:25:52.867036 read(43, "ira_import_stage_start_import\r\n$"..., 16384) = 3119
08:25:52.959298 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.060513 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.061636 write(10, "*-1\r\n", 5) = 5
08:25:53.062575 write(12, "*-1\r\n", 5) = 5
08:25:53.063355 write(32, "*-1\r\n", 5) = 5
08:25:53.064112 write(36, "*-1\r\n", 5) = 5
08:25:53.064951 read(10, "*316\r\n$5\r\nbrpop\r\n$54\r\nresque:git"..., 16384) = 16384
08:25:53.065165 read(12, "*316\r\n$5\r\nbrpop\r\n$39\r\nresque:git"..., 16384) = 16384
08:25:53.065358 read(32, "*316\r\n$5\r\nbrpop\r\n$64\r\nresque:git"..., 16384) = 16384
08:25:53.065542 read(36, "*316\r\n$5\r\nbrpop\r\n$45\r\nresque:git"..., 16384) = 16384
08:25:53.065854 read(10, "cronjob:environments_auto_stop_c"..., 16384) = 3119
08:25:53.066420 read(12, "e:experiments_record_conversion_"..., 16384) = 3119
08:25:53.066910 read(32, "ironments_canary_ingress_update\r"..., 16384) = 3119
08:25:53.067303 read(36, "ancing\r\n$44\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:53.161548 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.261635 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.362776 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.464162 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.565384 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.666639 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.767724 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.868764 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:53.969883 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.071098 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.172115 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.273190 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.276983 write(19, "*-1\r\n", 5) = 5
08:25:54.277886 write(58, "*-1\r\n", 5) = 5
08:25:54.278619 write(53, "*-1\r\n", 5) = 5
08:25:54.279282 write(30, "*-1\r\n", 5) = 5
08:25:54.280080 write(40, "*-1\r\n", 5) = 5
08:25:54.280803 write(28, "*-1\r\n", 5) = 5
08:25:54.281658 write(13, "*-1\r\n", 5) = 5
08:25:54.282427 write(41, "*-1\r\n", 5) = 5
08:25:54.283163 write(39, "*-1\r\n", 5) = 5
08:25:54.283919 write(56, "*-1\r\n", 5) = 5
08:25:54.284647 write(22, "*-1\r\n", 5) = 5
08:25:54.285764 write(26, "*-1\r\n", 5) = 5
08:25:54.286904 write(20, "*-1\r\n", 5) = 5
08:25:54.288016 write(46, "*-1\r\n", 5) = 5
08:25:54.288769 write(31, "*-1\r\n", 5) = 5
08:25:54.289491 write(24, "*-1\r\n", 5) = 5
08:25:54.290596 write(45, "*-1\r\n", 5) = 5
08:25:54.291711 write(49, "*-1\r\n", 5) = 5
08:25:54.292473 write(60, "*-1\r\n", 5) = 5
08:25:54.293580 write(48, "*-1\r\n", 5) = 5
08:25:54.294329 write(63, "*-1\r\n", 5) = 5
08:25:54.295463 write(57, "*-1\r\n", 5) = 5
08:25:54.296213 write(62, "*-1\r\n", 5) = 5
08:25:54.296930 write(42, "*-1\r\n", 5) = 5
08:25:54.297681 write(29, "*-1\r\n", 5) = 5
08:25:54.298419 write(14, "*-1\r\n", 5) = 5
08:25:54.299104 write(50, "*-1\r\n", 5) = 5
08:25:54.299805 write(38, "*-1\r\n", 5) = 5
08:25:54.300944 write(44, "*-1\r\n", 5) = 5
08:25:54.301709 write(35, "*-1\r\n", 5) = 5
08:25:54.302450 write(37, "*-1\r\n", 5) = 5
08:25:54.303181 write(55, "*-1\r\n", 5) = 5
08:25:54.304462 write(47, "*-1\r\n", 5) = 5
08:25:54.305573 write(23, "*-1\r\n", 5) = 5
08:25:54.306710 write(15, "*-1\r\n", 5) = 5
08:25:54.307794 write(17, "*-1\r\n", 5) = 5
08:25:54.308884 write(25, "*-1\r\n", 5) = 5
08:25:54.309754 write(34, "*-1\r\n", 5) = 5
08:25:54.310509 write(9, "*-1\r\n", 5) = 5
08:25:54.311192 write(64, "*-1\r\n", 5) = 5
08:25:54.311949 write(21, "*-1\r\n", 5) = 5
08:25:54.312778 read(19, "*316\r\n$5\r\nbrpop\r\n$43\r\nresque:git"..., 16384) = 16384
08:25:54.312934 read(58, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:54.313087 read(53, "*316\r\n$5\r\nbrpop\r\n$44\r\nresque:git"..., 16384) = 16384
08:25:54.313267 read(30, "*316\r\n$5\r\nbrpop\r\n$64\r\nresque:git"..., 16384) = 16384
08:25:54.313419 read(40, "*316\r\n$5\r\nbrpop\r\n$57\r\nresque:git"..., 16384) = 16384
08:25:54.313572 read(28, "*316\r\n$5\r\nbrpop\r\n$83\r\nresque:git"..., 16384) = 16384
08:25:54.313721 read(13, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:54.313894 read(41, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:54.314049 read(39, "*316\r\n$5\r\nbrpop\r\n$69\r\nresque:git"..., 16384) = 16384
08:25:54.314207 read(56, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:54.314354 read(22, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:54.314505 read(26, "*316\r\n$5\r\nbrpop\r\n$63\r\nresque:git"..., 16384) = 16384
08:25:54.314641 read(20, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:54.314788 read(46, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:54.314937 read(31, "*316\r\n$5\r\nbrpop\r\n$54\r\nresque:git"..., 16384) = 16384
08:25:54.315073 read(24, "*316\r\n$5\r\nbrpop\r\n$52\r\nresque:git"..., 16384) = 16384
08:25:54.315187 read(45, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:54.315283 read(49, "*316\r\n$5\r\nbrpop\r\n$25\r\nresque:git"..., 16384) = 16384
08:25:54.315376 read(60, "*316\r\n$5\r\nbrpop\r\n$36\r\nresque:git"..., 16384) = 16384
08:25:54.315468 read(48, "*316\r\n$5\r\nbrpop\r\n$101\r\nresque:gi"..., 16384) = 16384
08:25:54.315560 read(63, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:54.315663 read(57, "*316\r\n$5\r\nbrpop\r\n$65\r\nresque:git"..., 16384) = 16384
08:25:54.315762 read(62, "*316\r\n$5\r\nbrpop\r\n$84\r\nresque:git"..., 16384) = 16384
08:25:54.315856 read(42, "*316\r\n$5\r\nbrpop\r\n$44\r\nresque:git"..., 16384) = 16384
08:25:54.315948 read(29, "*316\r\n$5\r\nbrpop\r\n$80\r\nresque:git"..., 16384) = 16384
08:25:54.316039 read(14, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:54.316130 read(50, "*316\r\n$5\r\nbrpop\r\n$71\r\nresque:git"..., 16384) = 16384
08:25:54.316225 read(38, "*316\r\n$5\r\nbrpop\r\n$42\r\nresque:git"..., 16384) = 16384
08:25:54.316317 read(44, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:54.316408 read(35, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:54.316500 read(37, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:54.316598 read(55, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:54.316690 read(47, "*316\r\n$5\r\nbrpop\r\n$74\r\nresque:git"..., 16384) = 16384
08:25:54.316781 read(23, "*316\r\n$5\r\nbrpop\r\n$60\r\nresque:git"..., 16384) = 16384
08:25:54.316870 read(15, "*316\r\n$5\r\nbrpop\r\n$39\r\nresque:git"..., 16384) = 16384
08:25:54.316972 read(17, "*316\r\n$5\r\nbrpop\r\n$31\r\nresque:git"..., 16384) = 16384
08:25:54.317084 read(25, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:54.317270 read(34, "*316\r\n$5\r\nbrpop\r\n$41\r\nresque:git"..., 16384) = 16384
08:25:54.317431 read(9, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:54.317574 read(64, "*316\r\n$5\r\nbrpop\r\n$57\r\nresque:git"..., 16384) = 16384
08:25:54.317737 read(21, "*316\r\n$5\r\nbrpop\r\n$63\r\nresque:git"..., 16384) = 16384
08:25:54.318066 read(19, "ics\r\n$54\r\nresque:gitlab:queue:pi"..., 16384) = 3119
08:25:54.318628 read(58, "\nresque:gitlab:queue:namespaces_"..., 16384) = 3119
08:25:54.319075 read(53, "tainer_repository\r\n$79\r\nresque:g"..., 16384) = 3119
08:25:54.319508 read(30, "ckages_helm_extraction\r\n$62\r\nres"..., 16384) = 3119
08:25:54.319926 read(40, "e:gitlab:queue:external_service_"..., 16384) = 3119
08:25:54.320365 read(28, ":queue:pipeline_hooks:pipeline_h"..., 16384) = 3119
08:25:54.320815 read(13, "tlab:queue:merge\r\n$52\r\nresque:gi"..., 16384) = 3119
08:25:54.321257 read(41, "essing:ci_initial_pipeline_proce"..., 16384) = 3119
08:25:54.321702 read(39, "\nresque:gitlab:queue:environment"..., 16384) = 3119
08:25:54.322143 read(56, "sque:gitlab:queue:pipeline_backg"..., 16384) = 3119
08:25:54.322560 read(22, "b:admin_email\r\n$75\r\nresque:gitla"..., 16384) = 3119
08:25:54.323042 read(26, "container_repository\r\n$60\r\nresqu"..., 16384) = 3119
08:25:54.323458 read(20, "e_project_recalculate\r\n$65\r\nresq"..., 16384) = 3119
08:25:54.323845 read(46, "b:queue:pages_transfer\r\n$49\r\nres"..., 16384) = 3119
08:25:54.324224 read(31, "repository:delete_container_repo"..., 16384) = 3119
08:25:54.324599 read(24, "\r\n$51\r\nresque:gitlab:queue:cronj"..., 16384) = 3119
08:25:54.324931 read(45, "essing:update_head_pipeline_for_"..., 16384) = 3119
08:25:54.325339 read(49, "import_issue\r\n$58\r\nresque:gitlab"..., 16384) = 3119
08:25:54.325743 read(60, "it_for_cluster_creation\r\n$52\r\nre"..., 16384) = 3119
08:25:54.326107 read(48, "yment:deployments_update_environ"..., 16384) = 3119
08:25:54.326486 read(63, "issuable_export_csv\r\n$50\r\nresque"..., 16384) = 3119
08:25:54.326876 read(57, ":merge_requests_handle_assignees"..., 16384) = 3119
08:25:54.327225 read(62, "0\r\nresque:gitlab:queue:self_moni"..., 16384) = 3119
08:25:54.327571 read(42, "\r\n$47\r\nresque:gitlab:queue:detec"..., 16384) = 3119
08:25:54.327921 read(29, "lab:queue:namespaces_onboarding_"..., 16384) = 3119
08:25:54.328273 read(14, "ue:gitlab:queue:github_importer:"..., 16384) = 3119
08:25:54.328624 read(50, "estroyer_project_private\r\n$69\r\nr"..., 16384) = 3119
08:25:54.328971 read(38, ":pipeline_creation:run_pipeline_"..., 16384) = 3119
08:25:54.329316 read(44, "resque:gitlab:queue:gcp_cluster:"..., 16384) = 3119
08:25:54.329773 read(35, "age:object_storage_migrate_uploa"..., 16384) = 3119
08:25:54.330234 read(37, "_link\r\n$29\r\nresque:gitlab:queue:"..., 16384) = 3119
08:25:54.330635 read(55, "tlab:queue:cronjob:admin_email\r\n"..., 16384) = 3119
08:25:54.330993 read(47, "cleanup_service_account\r\n$76\r\nre"..., 16384) = 3119
08:25:54.331332 read(23, "queue:gcp_cluster:clusters_appli"..., 16384) = 3119
08:25:54.331753 read(15, "ove_expired_members\r\n$40\r\nresque"..., 16384) = 3119
08:25:54.332117 read(17, "nnect_sync_builds\r\n$41\r\nresque:g"..., 16384) = 3119
08:25:54.332541 read(25, "iner_repository\r\n$59\r\nresque:git"..., 16384) = 3119
08:25:54.332985 read(34, "ad_checksum\r\n$54\r\nresque:gitlab:"..., 16384) = 3119
08:25:54.333422 read(9, "lab:queue:self_monitoring_projec"..., 16384) = 3119
08:25:54.333777 read(64, "unlock_artifacts\r\n$44\r\nresque:gi"..., 16384) = 3119
08:25:54.334127 read(21, "itlab:queue:disallow_two_factor_"..., 16384) = 3119
08:25:54.374102 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.382288 read(51, "*1\r\n$5\r\nmulti\r\n*3\r\n$6\r\nincrby\r\n$"..., 16384) = 563
08:25:54.383205 write(51, "+OK\r\n+QUEUED\r\n+QUEUED\r\n+QUEUED\r\n"..., 123) = 123
08:25:54.383630 read(51, "*1\r\n$5\r\nmulti\r\n*3\r\n$4\r\nsadd\r\n$23"..., 16384) = 16384
08:25:54.383921 write(51, "+OK\r\n+QUEUED\r\n+QUEUED\r\n", 23) = 23
08:25:54.384111 read(51, "y\",\"github_importer:github_impor"..., 16384) = 7455
08:25:54.384708 write(51, "+QUEUED\r\n+QUEUED\r\n+QUEUED\r\n*5\r\n:"..., 53) = 53
08:25:54.475425 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.576713 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.677978 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.779173 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.880354 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:54.881308 write(43, "*-1\r\n", 5) = 5
08:25:54.882261 write(16, "*-1\r\n", 5) = 5
08:25:54.883110 write(8, "*-1\r\n", 5) = 5
08:25:54.883844 write(11, "*-1\r\n", 5) = 5
08:25:54.884545 write(18, "*-1\r\n", 5) = 5
08:25:54.885408 read(43, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:54.885550 read(16, "*316\r\n$5\r\nbrpop\r\n$76\r\nresque:git"..., 16384) = 16384
08:25:54.885705 read(8, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:54.885837 read(11, "*316\r\n$5\r\nbrpop\r\n$100\r\nresque:gi"..., 16384) = 16384
08:25:54.885972 read(18, "*316\r\n$5\r\nbrpop\r\n$41\r\nresque:git"..., 16384) = 16384
08:25:54.886250 read(43, "ocess_incident\r\n$50\r\nresque:gitl"..., 16384) = 3119
08:25:54.886756 read(16, "ce\r\n$64\r\nresque:gitlab:queue:gcp"..., 16384) = 3119
08:25:54.887189 read(8, "ble\r\n$35\r\nresque:gitlab:queue:au"..., 16384) = 3119
08:25:54.887558 read(11, ":ci_archive_traces_cron\r\n$49\r\nre"..., 16384) = 3119
08:25:54.887912 read(18, "ueue:pages_domain_verification\r\n"..., 16384) = 3119
08:25:54.980829 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.081933 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.082879 write(32, "*-1\r\n", 5) = 5
08:25:55.084283 write(36, "*-1\r\n", 5) = 5
08:25:55.085525 write(12, "*-1\r\n", 5) = 5
08:25:55.086734 write(10, "*-1\r\n", 5) = 5
08:25:55.087958 read(32, "*316\r\n$5\r\nbrpop\r\n$63\r\nresque:git"..., 16384) = 16384
08:25:55.088149 read(36, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:55.088341 read(12, "*316\r\n$5\r\nbrpop\r\n$65\r\nresque:git"..., 16384) = 16384
08:25:55.088531 read(10, "*316\r\n$5\r\nbrpop\r\n$48\r\nresque:git"..., 16384) = 16384
08:25:55.088827 read(32, "n\r\n$53\r\nresque:gitlab:queue:cron"..., 16384) = 3119
08:25:55.089254 read(36, "monitoring_project_create\r\n$55\r\n"..., 16384) = 3119
08:25:55.089604 read(12, "ue:design_management_new_version"..., 16384) = 3119
08:25:55.089947 read(10, "n\r\n$58\r\nresque:gitlab:queue:name"..., 16384) = 3119
08:25:55.183233 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.284471 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.386063 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.487411 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.588645 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.689934 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.791023 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.892389 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:55.993537 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.094920 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.196254 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.297431 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.398664 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.404197 write(21, "*-1\r\n", 5) = 5
08:25:56.405577 write(64, "*-1\r\n", 5) = 5
08:25:56.406755 write(34, "*-1\r\n", 5) = 5
08:25:56.407783 write(9, "*-1\r\n", 5) = 5
08:25:56.408836 write(25, "*-1\r\n", 5) = 5
08:25:56.409626 write(17, "*-1\r\n", 5) = 5
08:25:56.410343 write(23, "*-1\r\n", 5) = 5
08:25:56.411136 write(15, "*-1\r\n", 5) = 5
08:25:56.411879 write(47, "*-1\r\n", 5) = 5
08:25:56.412595 write(37, "*-1\r\n", 5) = 5
08:25:56.413319 write(55, "*-1\r\n", 5) = 5
08:25:56.414073 write(44, "*-1\r\n", 5) = 5
08:25:56.414802 write(35, "*-1\r\n", 5) = 5
08:25:56.415504 write(38, "*-1\r\n", 5) = 5
08:25:56.416253 write(14, "*-1\r\n", 5) = 5
08:25:56.416998 write(50, "*-1\r\n", 5) = 5
08:25:56.417669 write(29, "*-1\r\n", 5) = 5
08:25:56.418804 write(57, "*-1\r\n", 5) = 5
08:25:56.419619 write(62, "*-1\r\n", 5) = 5
08:25:56.420364 write(42, "*-1\r\n", 5) = 5
08:25:56.421156 write(63, "*-1\r\n", 5) = 5
08:25:56.421898 write(48, "*-1\r\n", 5) = 5
08:25:56.422657 write(49, "*-1\r\n", 5) = 5
08:25:56.423429 write(60, "*-1\r\n", 5) = 5
08:25:56.424509 write(45, "*-1\r\n", 5) = 5
08:25:56.425229 write(46, "*-1\r\n", 5) = 5
08:25:56.425988 write(31, "*-1\r\n", 5) = 5
08:25:56.426712 write(24, "*-1\r\n", 5) = 5
08:25:56.427426 write(20, "*-1\r\n", 5) = 5
08:25:56.428206 write(26, "*-1\r\n", 5) = 5
08:25:56.428935 write(22, "*-1\r\n", 5) = 5
08:25:56.430061 write(56, "*-1\r\n", 5) = 5
08:25:56.431203 write(39, "*-1\r\n", 5) = 5
08:25:56.432372 write(41, "*-1\r\n", 5) = 5
08:25:56.433458 write(28, "*-1\r\n", 5) = 5
08:25:56.434556 write(13, "*-1\r\n", 5) = 5
08:25:56.435674 write(40, "*-1\r\n", 5) = 5
08:25:56.436401 write(30, "*-1\r\n", 5) = 5
08:25:56.437587 write(53, "*-1\r\n", 5) = 5
08:25:56.438289 write(58, "*-1\r\n", 5) = 5
08:25:56.439003 write(19, "*-1\r\n", 5) = 5
08:25:56.440249 read(21, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:56.440408 read(64, "*316\r\n$5\r\nbrpop\r\n$43\r\nresque:git"..., 16384) = 16384
08:25:56.440588 read(34, "*316\r\n$5\r\nbrpop\r\n$34\r\nresque:git"..., 16384) = 16384
08:25:56.440767 read(9, "*316\r\n$5\r\nbrpop\r\n$30\r\nresque:git"..., 16384) = 16384
08:25:56.440950 read(25, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:56.441095 read(17, "*316\r\n$5\r\nbrpop\r\n$62\r\nresque:git"..., 16384) = 16384
08:25:56.441246 read(23, "*316\r\n$5\r\nbrpop\r\n$36\r\nresque:git"..., 16384) = 16384
08:25:56.441390 read(15, "*316\r\n$5\r\nbrpop\r\n$50\r\nresque:git"..., 16384) = 16384
08:25:56.441535 read(47, "*316\r\n$5\r\nbrpop\r\n$52\r\nresque:git"..., 16384) = 16384
08:25:56.441700 read(37, "*316\r\n$5\r\nbrpop\r\n$61\r\nresque:git"..., 16384) = 16384
08:25:56.441891 read(55, "*316\r\n$5\r\nbrpop\r\n$49\r\nresque:git"..., 16384) = 16384
08:25:56.442058 read(44, "*316\r\n$5\r\nbrpop\r\n$94\r\nresque:git"..., 16384) = 16384
08:25:56.442228 read(35, "*316\r\n$5\r\nbrpop\r\n$70\r\nresque:git"..., 16384) = 16384
08:25:56.442388 read(38, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:56.442580 read(14, "*316\r\n$5\r\nbrpop\r\n$94\r\nresque:git"..., 16384) = 16384
08:25:56.442738 read(50, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:56.442876 read(29, "*316\r\n$5\r\nbrpop\r\n$78\r\nresque:git"..., 16384) = 16384
08:25:56.443097 read(57, "*316\r\n$5\r\nbrpop\r\n$54\r\nresque:git"..., 16384) = 16384
08:25:56.443263 read(62, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:56.443426 read(42, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:56.443583 read(63, "*316\r\n$5\r\nbrpop\r\n$31\r\nresque:git"..., 16384) = 16384
08:25:56.443721 read(48, "*316\r\n$5\r\nbrpop\r\n$35\r\nresque:git"..., 16384) = 16384
08:25:56.443878 read(49, "*316\r\n$5\r\nbrpop\r\n$28\r\nresque:git"..., 16384) = 16384
08:25:56.444027 read(60, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:56.444174 read(45, "*316\r\n$5\r\nbrpop\r\n$65\r\nresque:git"..., 16384) = 16384
08:25:56.444333 read(46, "*316\r\n$5\r\nbrpop\r\n$51\r\nresque:git"..., 16384) = 16384
08:25:56.444489 read(31, "*316\r\n$5\r\nbrpop\r\n$60\r\nresque:git"..., 16384) = 16384
08:25:56.444636 read(24, "*316\r\n$5\r\nbrpop\r\n$37\r\nresque:git"..., 16384) = 16384
08:25:56.444764 read(20, "*316\r\n$5\r\nbrpop\r\n$36\r\nresque:git"..., 16384) = 16384
08:25:56.444894 read(26, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:56.445021 read(22, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:56.445146 read(56, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:56.445272 read(39, "*316\r\n$5\r\nbrpop\r\n$53\r\nresque:git"..., 16384) = 16384
08:25:56.445398 read(41, "*316\r\n$5\r\nbrpop\r\n$44\r\nresque:git"..., 16384) = 16384
08:25:56.445525 read(28, "*316\r\n$5\r\nbrpop\r\n$56\r\nresque:git"..., 16384) = 16384
08:25:56.445655 read(13, "*316\r\n$5\r\nbrpop\r\n$94\r\nresque:git"..., 16384) = 16384
08:25:56.445779 read(40, "*316\r\n$5\r\nbrpop\r\n$70\r\nresque:git"..., 16384) = 16384
08:25:56.445904 read(30, "*316\r\n$5\r\nbrpop\r\n$66\r\nresque:git"..., 16384) = 16384
08:25:56.446027 read(53, "*316\r\n$5\r\nbrpop\r\n$84\r\nresque:git"..., 16384) = 16384
08:25:56.446144 read(58, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:56.446273 read(19, "*316\r\n$5\r\nbrpop\r\n$67\r\nresque:git"..., 16384) = 16384
08:25:56.446575 read(21, "s\r\n$26\r\nresque:gitlab:queue:reba"..., 16384) = 3119
08:25:56.447114 read(64, "_update_repository_storage\r\n$97\r"..., 16384) = 3119
08:25:56.447557 read(34, "e_schedule\r\n$59\r\nresque:gitlab:q"..., 16384) = 3119
08:25:56.447982 read(9, "rt_issue\r\n$58\r\nresque:gitlab:que"..., 16384) = 3119
08:25:56.448512 read(25, "7\r\nresque:gitlab:queue:incident_"..., 16384) = 3119
08:25:56.448996 read(17, "t:incident_management_pager_duty"..., 16384) = 3119
08:25:56.449447 read(23, "rt\r\n$50\r\nresque:gitlab:queue:cro"..., 16384) = 3119
08:25:56.449841 read(15, "ue:project_destroy\r\n$53\r\nresque:"..., 16384) = 3119
08:25:56.450225 read(47, "b:queue:irker\r\n$53\r\nresque:gitla"..., 16384) = 3119
08:25:56.450610 read(37, "\r\nresque:gitlab:queue:cronjob:gi"..., 16384) = 3119
08:25:56.450988 read(55, "s_dashboard_schedule_annotations"..., 16384) = 3119
08:25:56.451358 read(44, "\r\n$34\r\nresque:gitlab:queue:proce"..., 16384) = 3119
08:25:56.451736 read(35, "cluster_upgrade_app\r\n$51\r\nresque"..., 16384) = 3119
08:25:56.452083 read(38, "action\r\n$54\r\nresque:gitlab:queue"..., 16384) = 3119
08:25:56.452454 read(14, "68\r\nresque:gitlab:queue:github_i"..., 16384) = 3119
08:25:56.452808 read(50, "d_schedule_annotations_prune\r\n$7"..., 16384) = 3119
08:25:56.453160 read(29, "e:gitlab:queue:update_project_st"..., 16384) = 3119
08:25:56.453510 read(57, "\r\nresque:gitlab:queue:cronjob:me"..., 16384) = 3119
08:25:56.453861 read(62, "sque:gitlab:queue:gcp_cluster:wa"..., 16384) = 3119
08:25:56.454213 read(42, "_default:ci_merge_requests_add_t"..., 16384) = 3119
08:25:56.454567 read(63, "e:gitlab:queue:releases_create_e"..., 16384) = 3119
08:25:56.454920 read(48, "remove_remote\r\n$51\r\nresque:gitla"..., 16384) = 3119
08:25:56.455278 read(49, "deployments_finished\r\n$31\r\nresqu"..., 16384) = 3119
08:25:56.455632 read(60, "deployments_update_environment\r\n"..., 16384) = 3119
08:25:56.455983 read(45, "\r\nresque:gitlab:queue:cronjob:pa"..., 16384) = 3119
08:25:56.456321 read(46, "7\r\nresque:gitlab:queue:chaos:cha"..., 16384) = 3119
08:25:56.456672 read(31, "tlab:queue:cronjob:gitlab_servic"..., 16384) = 3119
08:25:56.457027 read(24, "s_destroyer:todos_destroyer_enti"..., 16384) = 3119
08:25:56.457371 read(20, "itlab:queue:pipeline_background:"..., 16384) = 3119
08:25:56.457810 read(26, "ackground:ci_pipeline_artifacts_"..., 16384) = 3119
08:25:56.458213 read(22, "peline_background:ci_archive_tra"..., 16384) = 3119
08:25:56.458592 read(56, "ue:gitlab:queue:cronjob:metrics_"..., 16384) = 3119
08:25:56.458966 read(39, "\n$99\r\nresque:gitlab:queue:contai"..., 16384) = 3119
08:25:56.459406 read(41, ":queue:cronjob:requests_profiles"..., 16384) = 3119
08:25:56.459834 read(28, "ue:gitlab:queue:cronjob:stuck_me"..., 16384) = 3119
08:25:56.460260 read(13, "sque:gitlab:queue:namespaces_onb"..., 16384) = 3119
08:25:56.460694 read(40, "ssing:ci_build_finished\r\n$52\r\nre"..., 16384) = 3119
08:25:56.461121 read(30, "2\r\nresque:gitlab:queue:migrate_e"..., 16384) = 3119
08:25:56.461552 read(53, ":queue:mail_scheduler:mail_sched"..., 16384) = 3119
08:25:56.461984 read(58, "igration\r\n$34\r\nresque:gitlab:que"..., 16384) = 3119
08:25:56.462424 read(19, "4\r\nresque:gitlab:queue:cronjob:r"..., 16384) = 3119
08:25:56.500531 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.601763 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.703030 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.804272 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.905395 read(59, "633 (redis-server) R 666 633 633"..., 4096) = 331
08:25:56.906621 write(18, "*-1\r\n", 5) = 5
08:25:56.907616 write(11, "*-1\r\n", 5) = 5
08:25:56.908420 write(8, "*-1\r\n", 5) = 5
08:25:56.909146 write(43, "*-1\r\n", 5) = 5
08:25:56.909944 write(16, "*-1\r\n", 5) = 5
08:25:56.910794 read(18, "*316\r\n$5\r\nbrpop\r\n$59\r\nresque:git"..., 16384) = 16384
08:25:56.910986 read(11, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:56.911178 read(8, "*316\r\n$5\r\nbrpop\r\n$58\r\nresque:git"..., 16384) = 16384
08:25:56.911362 read(43, "*316\r\n$5\r\nbrpop\r\n$28\r\nresque:git"..., 16384) = 16384
08:25:56.911501 read(16, "*316\r\n$5\r\nbrpop\r\n$47\r\nresque:git"..., 16384) = 16384
08:25:56.911804 read(18, "ository_check:repository_check_s"..., 16384) = 3119
08:25:56.912244 read(11, "\r\nresque:gitlab:queue:pages_doma"..., 16384) = 3119
08:25:56.912624 read(8, "eue:destroy_pages_deployments\r\n$"..., 16384) = 3119
08:25:56.913021 read(43, "ter:github_import_stage_import_l"..., 16384) = 3119
08:25:56.913433 read(16, "rt_note\r\n$60\r\nresque:gitlab:queu"..., 16384) = 3119
```
Where is this traffic coming from? Is there a way to slow down this communication?
Thanks a lot for clearifying and for your help!
issue