내용으로 건너뛰기

Set appendonly flag in Elasticache Parameter Group

0

I would like to know how to set appendonly flag to true when creating parameter group. Seems currently it forces me to edit the parameter group values after creating the group. However since the is_modifiable is No for the appendonly, there is no way for me to edit the value. I am using valkey8 Thanks all.

질문됨 일 년 전261회 조회

1개 답변
0

In Amazon ElastiCache, parameters have attributes that determine whether they can be modified or not. The appendonly parameter has an IsModifiable attribute set to false, which means you cannot modify this parameter after the parameter group is created.

When you create a parameter group, it initially has the family's default values. For parameters that cannot be modified (where IsModifiable is false), you cannot change these values even after creating the parameter group.

For Valkey or Redis OSS, some parameters require specific handling. If you need to use a different value for the appendonly parameter than what's provided in the default parameter group, you would typically need to:

  1. Create a manual backup of your existing cluster (if applicable)
  2. Delete the cluster
  3. Restore the cluster using a parameter group with the desired settings and your backup to seed the new cluster

However, since the appendonly parameter is not modifiable, you may need to check if there's a specific parameter group family for Valkey 8 that has this parameter set to true by default, or contact AWS Support for assistance with this specific requirement.

Parameter values are applied to clusters associated with the parameter group, but only modifiable parameters can be changed from their default values. Since appendonly is marked as not modifiable, you won't be able to edit this value in the ElastiCache console or through the API.
Sources
Parameter - Amazon ElastiCache
Modifying an ElastiCache parameter group - Amazon ElastiCache
Parameter management in ElastiCache - Amazon ElastiCache
Creating an ElastiCache parameter group - Amazon ElastiCache

답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

관련 콘텐츠