Description:
There are too many ts_us_sessions_map and defect table partitions. How can these be removed?
Solution:
The Collector is keeping old hourly ts_us_sessions_map table partitions and 'ts_defects' table partitions. This occurs when defect aggregation is behind or not running, then the defect and session map partitions are not dropped.
To resolve this, manually drop the unneeded partitions.
Determine the partitions to drop by running this query:
select tablename from pg_tables where tablename like 'ts_%' order by tablename ;
Then do the following sequence:
Note that in 9.5.1, there is a fix for too many old defect or stats partitions - (TT 85377). This fix drops session maps and defect partitions older than 60 days.