$ python pg_bloat_check.py -c dbname=my_db_name
Traceback (most recent call last):
File "pg_bloat_check.py", line 339, in <module>
get_bloat(conn, tuple(exclude_schema_list), tuple(include_schema_list), exclude_object_list)
File "pg_bloat_check.py", line 200, in get_bloat
cur.execute(sql, [o['oid'], args.min_size, args.min_wasted_size, args.min_wasted_percentage])
File "/usr/local/lib/python2.7/dist-packages/psycopg2/extras.py", line 120, in execute
return super(DictCursor, self).execute(query, vars)
psycopg2.NotSupportedError: "my_gin_index_idx" (gin index) is not supported
Unfortunately, I would expect most of the bloat in this db to be in the GIN indexes themselves.
Got a workaround for this?
Unfortunately, I would expect most of the bloat in this db to be in the GIN indexes themselves.