Uploaded image for project: 'Satellite'
  1. Satellite
  2. SAT-25756

Content view publish failing with katello_repository_rpms_id_seq reached maximum value error

XMLWordPrintable

    • Sprint 135
    • Critical
    • No

      Description of problem:

      Unable to publish the content view due to limitation of katello_repository_rpms_id_seq because it is set as integer type. The "id" column of the table "katello_repository_rpms" is set as bigint however, the sequence "katello_repository_rpms_id_seq" is set as Integer. Therefore, the sequence limit to max integer value +2,147,483,647. When this limit reaches, CU can not publish/promote content view with this below error:
      ~~~
      PG::SequenceGeneratorLimitExceeded: ERROR: nextval: reached maximum value of sequence "katello_repository_rpms_id_seq" (2147483647)
      ~~~

      Version-Release number of selected component (if applicable):
      6.13

      How reproducible:
      100%

      Actual results:
      CV publish failing with the maximum value reached error.

      Expected results:
      CV publish should be successful

      Additional info:

      1. \d katello_repository_rpms;
        Table "public.katello_repository_rpms"
        Column | Type | Collation | Nullable | Default
        --------------------------------------------------------------------------------------------------------------
        id | bigint | | not null | nextval('katello_repository_rpms_id_seq'::regclass). <===========
        rpm_id | integer | | not null |
        repository_id | integer | | |
        created_at | timestamp without time zone | | |
        updated_at | timestamp without time zone | | |
      1. \d katello_repository_rpms_id_seq;'"
        Sequence "public.katello_repository_rpms_id_seq"
        Type | Start | Minimum | Maximum | Increment | Cycles? | Cache
        ----------------------------------------------------
        integer | 1 | 1 | 2147483647 | 1 | no | 1
      1. select * from pg_sequences where sequencename='katello_repository_rpms_id_seq';
        schemaname | sequencename | sequenceowner | data_type | start_value | min_value | max_value | increment_by | cycle | cache_size | last_value

      ----------------------------------------------------------------------------------------------------------------------------------
      -
      public | katello_repository_rpms_id_seq | foreman | integer | 1 | 1 | 2147483647 | 1 | f | 1 | 2147483647
      (1 row)

      There was a Bug-1793701 which fixed (6.7) the "id" column from "int" type to "Biginit" , but it it seems for new installation the seq is still set as "int" type. checked in 6.11/6.12/6.13

            iballou@redhat.com Ian Ballou
            rhn-support-arahaman Ashfaqur Rahaman
            Sam Bible Sam Bible
            Sam Bible Sam Bible
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: