-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase original resource ID max length to 289 chars
Ceilometer formats Swift container resource IDs in the format `<project ID>_<container name>`, where the project ID is 32 characters and container names can be up to 256 characters long, resulting in a resource ID with max length 289 characters. To accommodate this, expand the `original_resource_id` column to have a max length of 289 characters.
- Loading branch information
Showing
5 changed files
with
58 additions
and
6 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
gnocchi/indexer/alembic/versions/94544ca86c7e_increase_original_resource_id_max_length.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2025 The Gnocchi Developers | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
|
||
"""Increase original resource ID max length | ||
Revision ID: 94544ca86c7e | ||
Revises: 18fff4509e3e | ||
Create Date: 2025-01-15 22:12:53.822748 | ||
""" | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '94544ca86c7e' | ||
down_revision = '18fff4509e3e' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.alter_column("resource", "original_resource_id", | ||
type_=sa.String(289), | ||
nullable=False, | ||
existing_type=sa.String(255), | ||
existing_nullable=False) | ||
op.alter_column("resource_history", "original_resource_id", | ||
type_=sa.String(289), | ||
nullable=False, | ||
existing_type=sa.String(255), | ||
existing_nullable=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/original-resource-id-max-length-ced99a100f3e494d.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
features: | ||
- | | ||
The maximum length of the resource ID when creating new resources has been | ||
increased from 255 to 289 characters. This extra length allows Gnocchi to | ||
accommodate Swift container resources generated by Ceilometer with the | ||
maximum container name length of 256 characters. |