Project

General

Profile

Actions

Bug #22128

closed

Wrong Table name inside documentation

Added by Alexis TARUSSIO over 1 year ago. Updated about 1 year ago.

Status:
Released
Priority:
N/A
Category:
Documentation
Target version:
Severity:
Minor - inconvenience | misleading | easy workaround
UX impact:
I hate Rudder for that
User visibility:
First impressions of Rudder
Effort required:
Priority:
122
Name check:
To do
Fix check:
Checked
Regression:
No

Description

Hello,

As I explain on gitter, we follow the maintenance's documentation for 7.2 : https://docs.rudder.io/reference/7.2/administration/procedures.html

It says:

Manual vacuuming using the psql binary
# You can either use sudo to change owner to the postgres user, or use the rudder connection credentials.

# With sudo:
sudo -u postgres psql -d rudder

# With rudder credentials, it will ask the password in this case:
psql -u rudder -d rudder

# And then, when you are connected to the rudder database in the psql shell, trigger a vacuum:
rudder# VACUUM FULL rudder;
rudder# VACUUM FULL archivedruddersysevents;
rudder# VACUUM FULL nodecompliancelevels;

We don't have any table named rudder:

udder=# \dt
                    Liste des relations
 Schéma |            Nom             | Type  | Propriétaire 
--------+----------------------------+-------+--------------
 public | archivednodecompliance     | table | rudder
 public | archivednodeconfigurations | table | rudder
 public | archivedruddersysevents    | table | rudder
 public | campaignevents             | table | rudder
 public | changerequest              | table | rudder
 public | eventlog                   | table | rudder
 public | gitcommit                  | table | rudder
 public | migrationeventlog          | table | rudder
 public | nodecompliance             | table | rudder
 public | nodecompliancelevels       | table | rudder
 public | nodeconfigurations         | table | rudder
 public | nodes_info                 | table | rudder
 public | reportsexecution           | table | rudder
 public | rudderproperties           | table | rudder
 public | ruddersysevents            | table | rudder
 public | statusupdate               | table | rudder
 public | workflow                   | table | rudder
(17 lignes)

But when we look for the bigest table, we got : ruddersysevents

rudder=# select relname, pg_size_pretty(pg_total_relation_size(relname::regclass)) as full_size, pg_size_pretty(pg_relation_size(relname::regclass)) as table_size, pg_size_pretty(pg_total_relation_size(relname::regclass) - pg_relation_size(relname::regclass)) as index_size from pg_stat_user_tables order by pg_total_relation_size(relname::regclass) desc limit 10;
       relname        | full_size | table_size | index_size 
----------------------+-----------+------------+------------
 ruddersysevents      | 12 GB     | 9525 MB    | 2734 MB
 nodecompliancelevels | 1873 MB   | 1000 MB    | 873 MB
 reportsexecution     | 120 MB    | 51 MB      | 69 MB
 eventlog             | 53 MB     | 32 MB      | 21 MB
 nodeconfigurations   | 19 MB     | 864 kB     | 18 MB
 gitcommit            | 952 kB    | 496 kB     | 456 kB
 nodes_info           | 640 kB    | 544 kB     | 96 kB
 rudderproperties     | 64 kB     | 8192 bytes | 56 kB
 statusupdate         | 64 kB     | 8192 bytes | 56 kB
 nodecompliance       | 40 kB     | 0 bytes    | 40 kB

Alexis said it's the right one.

Can you update the documentation ?

best regards,

Alexis TARUSSIO

Actions #1

Updated by Vincent MEMBRÉ over 1 year ago

  • Target version changed from 7.2.2 to 7.2.3
Actions #2

Updated by Vincent MEMBRÉ over 1 year ago

  • Target version changed from 7.2.3 to 7.2.4
Actions #3

Updated by Vincent MEMBRÉ about 1 year ago

  • Target version changed from 7.2.4 to 7.2.5
  • Priority changed from 128 to 126
Actions #4

Updated by Nicolas CHARLES about 1 year ago

  • Status changed from New to In progress
  • Assignee set to Nicolas CHARLES
  • Priority changed from 126 to 125
Actions #5

Updated by Nicolas CHARLES about 1 year ago

  • Status changed from In progress to Pending technical review
  • Assignee changed from Nicolas CHARLES to Alexis Mousset
  • Pull Request set to https://github.com/Normation/rudder-doc/pull/949
Actions #6

Updated by Nicolas CHARLES about 1 year ago

  • Status changed from Pending technical review to Pending release
Actions #7

Updated by Elaad FURREEDAN about 1 year ago

  • Priority changed from 125 to 123
  • Fix check changed from To do to Checked
Actions #8

Updated by Vincent MEMBRÉ about 1 year ago

  • Status changed from Pending release to Released
  • Priority changed from 123 to 122

This bug has been fixed in Rudder 7.2.5 which was released today.

Actions

Also available in: Atom PDF