L'opération UpdateConsumerOffset réinitialise l'offset de consommation d'un groupe de consommateurs.
Description de l'opération
Cette opération réinitialise l'offset de consommation d'un groupe de consommateurs spécifié. Vous pouvez réinitialiser l'offset de consommation par horodatage ou par une valeur d'offset spécifique. En utilisant différentes combinaisons de paramètres, vous pouvez effectuer les tâches suivantes :
Testez maintenant
Testez cette API dans OpenAPI Explorer, sans signature manuelle. Les appels réussis génèrent automatiquement du code SDK correspondant à vos paramètres. Téléchargez-le avec une sécurité intégrée des identifiants pour une utilisation locale. Testez cette API dans OpenAPI Explorer, sans signature manuelle. Les appels réussis génèrent automatiquement du code SDK correspondant à vos paramètres. Téléchargez-le avec une sécurité intégrée des identifiants pour une utilisation locale.
Test
Autorisation RAM
|
alikafka:UpdateGroup |
update |
*Instance
|
Aucune | Aucune |
Paramètres de requête
|
Paramètre |
Type |
Requis |
Description |
Exemple |
| InstanceId |
string |
Oui |
L'identifiant de l'instance. |
alikafka_post-cn-mp91inkw**** |
| Topic |
string |
Oui |
Nom du sujet.
Pour définir l'offset de consommation de tous les sujets auxquels le consommateur actuel est abonné, transmettez une chaîne vide. |
topic_name |
| RegionId |
string |
Oui |
L'identifiant de la région de l'instance à laquelle le groupe appartient. |
cn-hangzhou |
| ConsumerId |
string |
Oui |
Nom du groupe de consommateurs.
|
kafka-test |
| ResetType |
string |
Non |
Type de réinitialisation de l'offset du groupe de consommateurs, prenant en charge les deux types suivants :
|
timestamp |
| Time |
string |
Non |
Paramètre de temps au format d'horodatage Unix, en millisecondes. La plage de ce paramètre doit être inférieure à 0 ou comprise dans la période de rétention de l'offset de consommation. Ce paramètre ne prend effet que lorsque resetType est défini sur timestamp.
|
-1 |
| Offsets |
array<object> |
Non |
Lorsque resetType est défini sur offset, ce paramètre est utilisé pour définir l'offset de consommation pour chaque partition d'un topic pour le groupe de consommateurs. |
|
|
object |
Non |
|||
| Partition |
integer |
Non |
L'identifiant de la partition. |
0 |
| Offset |
integer |
Non |
L'offset de la partition. |
1 |
(1) Réinitialisez l'offset de consommation de tous les topics auxquels un groupe de consommateurs est abonné au dernier offset de consommation. Pour ce faire, définissez le paramètre Time sur une valeur inférieure à 0. Nous vous recommandons de définir cette valeur sur -1.
{
"RegionId":"cn-beijing",
"InstanceId":"alikafka_post-cn-xxxxxx",
"Topic":"",
"ConsumerId":"ConsumerGroup1",
"ResetType": timestamp,
"Time":-1,
"Offsets": null
}
(2) Réinitialisez l'offset de consommation de tous les topics auxquels un groupe de consommateurs est abonné en fonction du paramètre Time. Le paramètre Time spécifie l'heure au format d'horodatage Unix en millisecondes.
{
"RegionId":"cn-beijing",
"InstanceId":"alikafka_post-cn-xxxxxx",
"Topic":"",
"ConsumerId":"ConsumerGroup1",
"ResetType": timestamp,
"Time":1679587200000,
"Offsets": null
}
(3) Réinitialisez l'offset de consommation d'un topic spécifique pour un groupe de consommateurs au dernier offset de consommation. Pour ce faire, définissez le paramètre Time sur une valeur inférieure à 0. Nous vous recommandons de définir cette valeur sur -1.
{
"RegionId":"cn-beijing",
"InstanceId":"alikafka_post-cn-xxxxxx",
"Topic":"topic1",
"ConsumerId":"ConsumerGroup1",
"ResetType": timestamp,
"Time":-1,
"Offsets": null
}
(4) Réinitialisez l'offset de consommation d'un topic spécifique pour un groupe de consommateurs en fonction du paramètre Time. Le paramètre Time spécifie l'heure au format d'horodatage Unix en millisecondes.
{
"RegionId":"cn-beijing",
"InstanceId":"alikafka_post-cn-xxxxxxx",
"Topic":"topic1",
"ConsumerId":"ConsumerG1",
"ResetType": timestamp,
"Time":1679587200000,
"Offsets": null
}
(5) Réinitialisez l'offset de consommation d'un topic spécifique pour un groupe de consommateurs en fonction des offsets fournis.
{
"RegionId":"cn-beijing",
"InstanceId":"alikafka_post-cn-xxxxxxx",
"Topic":"topic1",
"ConsumerId":"ConsumerG1",
"Time":-1,
"ResetType":"offset",
"Offsets":"[{\"partition\":1,\"offset\":1},{\"partition\":2,\"offset\":2},{\"partition\":3,\"offset\":3}]"
}
Éléments de réponse
|
Élément |
Type |
Description |
Exemple |
|
object |
|||
| Success |
boolean |
Indique si l'appel a réussi. |
true |
| RequestId |
string |
L'identifiant de la requête. |
56729737-C428-4E1B-AC68-7A8C2D5**** |
| Code |
integer |
Le code de retour. Une valeur de retour de 200 indique un succès. |
200 |
| Message |
string |
Le message de retour. |
opération réussie |
Exemples
JSON format
{
"Success": true,
"RequestId": "56729737-C428-4E1B-AC68-7A8C2D5****",
"Code": 200,
"Message": "operation success"
}
Codes d'erreur
|
Code de statut HTTP |
Code d'erreur |
Message d'erreur |
Description |
|---|---|---|---|
| 400 | BIZ_CONSUMER_GROUP_RESET_ERROR | Failed to reset consumer group offset. | Failed to reset consumer group offset |
| 400 | BIZ_FIELD_CHECK_INVALID | %s. Please check and try again later. | The parameter is invalid. |
| 400 | BIZ_INSTANCE_PERMISSION_CHECK_ERROR | %s. Please check and try again later. | The instance permission verification failed. |
| 400 | BIZ_TOPIC_NOT_FOUND | %s. Please check and try again later. | The topic does not exist. |
| 400 | BIZ_TOPIC_STATUS_ERROR | %s. Please check and try again later. | Failed to retrieve the topic status. |
| 400 | BIZ_CONSUMER_GROUP_ACTIVE_ERROR | %s. Please check and try again later. | The current consumer group has active consumers. Complete the consumption before resetting. |
| 400 | INSTANCE_STATUS_NOT_RUNNING | Instance status is not running. | Instance status is not running |
| 400 | MISSING_PARAMETER | Missing parameter% s. | Missing parameter% s |
| 400 | Acl.AddSasl.Error | Failed to add a user. Please refer to the document and try again. If in doubt, submit a work order. | Failed to add the user. Refer to the References and retry. If the issue persists, commit a ticket. |
| 400 | Acl.DelSasl.Error | Failed to delete the user. Check the request parameters and try again. | Failed to delete the user. Check the request parameters and try again. |
| 400 | Acl.Disable.Error | The Acl function is disabled. Enable it by referring to the documentation and try again. | The Acl function is disabled. Enable it by referring to the documentation and try again. |
| 400 | Acl.DuplicatedAuth.Error | The authorization has already been granted, please do not repeat the authorization. | The authorization has already been granted, please do not repeat the authorization. |
| 400 | ADMIN_GET_BROKER_CONFIG_ERROR | %s. Please check and try again later. | Failed to retrieve the broker configuration. Contact the administrator. |
| 400 | ADMIN_UPDATE_BROKER_CONFIG_ERROR | %s. Please check and try again later. | Failed to update the broker configuration. Contact the administrator. |
| 400 | ADMIN_UPDATE_SUB_PERM_ERROR | %s. Please check and try again later. | Failed to update the subscription permissions. Contact the administrator. |
| 400 | ADMIN_UPDATE_TOPIC_PERM_ERROR | %s. Please check and try again later. | Failed to update the read and write permissions. Contact the administrator. |
| 400 | AgentBusinessError | Internal error, please try again, if invalid, please submit the work order. | Internal error, please try again, if invalid, please submit the work order. |
| 400 | AgentError | A system exception occurred. Please submit a ticket. | A system exception occurred. Please submit a ticket. |
| 400 | AsyncTask.DeleteTopic | Topic has not been deleted. Please try again later. | Topic has not been deleted. Please try again later. |
| 400 | AsyncTask.ExecuteTimeNotSupport | The async task is approaching its execution time and modification is not allowed. | The task is close to its execution time and cannot be modified. Adjust the settings and try again. |
| 400 | AsyncTask.Ignored | The task is ignored. | The task is ignored. |
| 400 | AsyncTask.NotMeetCondition | The task does not meet the user-defined conditions. | The task does not meet the user-defined conditions. |
| 400 | AsyncTask.RetryLater | Task Please try again later. | Task Please try again later. |
| 400 | AsyncTask.TypeAlreadyExist | The task already exists. | The task already exists. |
| 400 | AsyncTaskSlave.NotCompleted | The task is not completed. Please check and try again. | The task is not completed. Please check and try again. |
| 400 | AUTH_CAL_SIGNATURE_ERROR | %s. Please check and try again later. | Failed to calculate the signature. |
| 400 | AUTH_CSRF_CHECK_ERROR | %s. Please check and try again later. | The page has expired. Refresh the page. |
| 400 | AUTH_LOGIN_CHECK_ERROR | %s. Please check and try again later. | The logon verification for the current user failed. Log on again. |
| 400 | AUTH_ONS_CHANNEL_INVALID | %s. Please check and try again later. | The ONS channel is invalid. Verify the channel and try again. |
| 400 | AUTH_PERMISSION_CHECK_ERROR | %s. Please check and try again later. | The resource permission verification failed. Verify the resource permission information and try again. |
| 400 | AUTH_REQUEST_NOT_ALLOWED | %s. Please check and try again later. | The current request is not allowed. Do not try again. |
| 400 | AUTH_RESOURCE_EMPOWER_CHECK_ERROR | %s. Please check and try again later. | The authorized resource verification failed. Verify the resource ownership information and try again. |
| 400 | AUTH_SERVICE_CHECK_ERROR | %s. Please check and try again later. | The current user has not activated the MQ service. Activate the MQ service first. |
| 400 | AUTH_SIGNATURE_CHECK_ERROR | %s. Please check and try again later. | The resource request authentication failed. Verify the AccessKeyId and AccessKeySecret and try again. |
| 400 | AUTH_SYSTEM_PERMISSION_CHECK_ERROR | %s. Please check and try again later. | The permission verification for creating system resources failed. |
| 400 | AUTH_TOPIC_CREATE_ERROR | %s. Please check and try again later. | You do not have the permission to create topics or consumer groups. Contact the Alibaba Cloud account owner for authorization. |
| 400 | AUTH_USER_IN_BLACK_LIST | %s. Please check and try again later. | Your request has been rejected. Do not try again. |
| 400 | BIZ.GET.TOPIC.STATUS.ERROR | AccessKeyId is required to get topic status. | The AccessKeyId is required to call the GetTopicStatus operation. |
| 400 | BIZ.INSTANCE.NOT.FOUND | %s. Please check and try again later. | The instance ID resource does not exist. |
| 400 | BIZ.INSTANCE.STATUS.ERROR | %s. Please check and try again later. | The current instance status does not support this operation. |
| 400 | BIZ.LIMIT.PUBNETWORK | EipMax is invalid. | The Internet traffic parameter is invalid. |
| 400 | BIZ.LIMIT.QUOTA.DOWN | Invalid.%s | Failed to downgrade the specification. |
| 400 | BIZ.LIMIT.QUOTA.DOWN.1 | Invalid.%s | Failed to downgrade the specification. |
| 400 | BIZ.LIMIT.QUOTA.DOWN.2 | Invalid.%s | Failed to downgrade the specification. |
| 400 | BIZ.TagResource.NotSupported | %s. Please check and try again later. | The resource does not support tag operations. |
| 400 | BIZ_ACL_NOT_ENABLED | %s. Please check and try again later. | The access control list (ACL) feature is not enabled. |
| 400 | BIZ_AONE_CHECK_ERROR | %s. Please check and try again later. | The application name that you specified does not exist in the Aone system. Verify the name and try again. |
| 400 | BIZ_BROADCASTING_PULL_UNSUPPORT | %s. Please check and try again later. | PullConsumer or broadcast message subscriptions do not support consumption progress queries. |
| 400 | BIZ_BROKER_NOT_FOUND | %s. Please check and try again later. | The server node information does not exist. |
| 400 | BIZ_CAN_NOT_ENABLE_ACL | %s. Please check and try again later. | Failed to enable the ACL feature. Verify that the ACL enabling conditions are met. |
| 400 | BIZ_CLUSTER_IS_EMPTY | %s. Please check and try again later. | The cluster information that you specified does not exist. Verify the information or contact the administrator. |
| 400 | BIZ_CONSUMER_ID_BELONG_TO_OTHER_USER | %s. Please check and try again later. | The consumer ID that you specified is already in use. Use a different consumer ID. |
| 400 | BIZ_CONSUMER_NEVER_RUNNING | %s. Please check and try again later. | The consumer ID that you specified does not exist or has never subscribed to messages. The consumer status cannot be viewed. |
| 400 | BIZ_CONSUMER_NOT_ONLINE | %s. Please check and try again later. | The current consumer ID is not online. |
| 400 | BIZ_CREATE_ORDER_CONFIG_ERROR | %s. Please check and try again later. | Failed to create the partitionally ordered message configuration. Try again later. |
| 400 | BIZ_CREATE_PUBLISH_ERROR | %s. Please check and try again later. | Failed to create the producer. Try again later. |
| 400 | BIZ_CREATE_SUBSCRIPTION_ERROR | %s. Please check and try again later. | Failed to create the consumer ID. Try again later. |
| 400 | BIZ_CREATE_TOPIC_ERROR | %s. Please check and try again later. | Failed to create the topic. |
| 400 | BIZ_CREATE_TOPIC_NUM_LESS_THAN_BEFORE_ERROR | %s. Please check and try again later. | The number of partitions cannot be less than the previously configured number of partitions. |
| 400 | BIZ_DELETE_ORDER_CONFIG_ERROR | %s. Please check and try again later. | Failed to delete the partitionally ordered message configuration. Try again later. |
| 400 | BIZ_DELETE_SUBSCRIPTION_ERROR | %s. Please check and try again later. | Failed to delete the consumer ID. Try again later. |
| 400 | BIZ_DELETE_TOPIC_ERROR | %s. Please check and try again later. | Failed to delete the topic. |
| 400 | BIZ_DOWNLOAD_MESSAGE_ERROR | %s. Please check and try again later. | Failed to download the message. Try again later. |
| 400 | BIZ_FIND_CONSUMER_GROUP_INFO_ERROR | %s. Please check and try again later. | Failed to query the consumer group. |
| 400 | BIZ_GET_APPKEY_LIST_ERROR | %s. Please check and try again later. | Failed to retrieve the application list under the current ISV. Try again later. |
| 400 | BIZ_GET_CLUSTER_INFO_ERROR | %s. Please check and try again later. | Failed to query the cluster information. Try again later. |
| 400 | BIZ_GET_CONSUMER_CONNECTION_ERROR | %s. Please check and try again later. | Failed to query the consumer connections. Try again later. |
| 400 | BIZ_GET_CONSUMER_RUNNING_INFO_ERROR | %s. Please check and try again later. | Failed to retrieve the consumer ID running status. Verify that the subscription group is online. |
| 400 | BIZ_GET_CONSUME_ACCUMULATE_ERROR | %s. Please check and try again later. | Failed to query the message accumulation. Try again later. |
| 400 | BIZ_GET_CONSUME_STATUS_ERROR | %s. Please check and try again later. | Failed to query the consumer status. Try again later. |
| 400 | BIZ_GET_TOPIC_ROUTE_INFO_ERROR | %s. Please check and try again later. | Failed to retrieve the topic routing information. Try again later. |
| 400 | BIZ_GET_TOPIC_STATUS_ERROR | %s. Please check and try again later. | Failed to query the topic status. Try again later. |
| 400 | BIZ_INSTANCE_ALREADY_EXISTS | %s. Please check and try again later. | The instance already exists. |
| 400 | BIZ_INSTANCE_BASIC_INFO_ERROR | %s. Please check and try again later. | The instance information is incorrect. |
| 400 | BIZ_INSTANCE_CREATE_ERROR | %s. Please check and try again later. | Failed to create the instance. |
| 400 | BIZ_INSTANCE_CREATE_ORDER_ERROR | %s. Please check and try again later. | Failed to create the purchase order for the instance. |
| 400 | BIZ_INSTANCE_DELETE_ERROR | %s. Please check and try again later. | Failed to delete the instance. |
| 400 | BIZ_INSTANCE_LOCATION_ERROR | %s. Please check and try again later. | The regionId of the instance is incorrect. |
| 400 | BIZ_INSTANCE_NOT_FOUND | %s. Please check and try again later. | The instance does not exist. |
| 400 | BIZ_INSTANCE_ONLY_PROFESSIONAL_SUPPORT | %s. Please check and try again later. | This feature is not supported by non-Professional Edition instances. |
| 400 | BIZ_INSTANCE_OWNER_ERROR | %s. Please check and try again later. | The instance does not belong to this user. |
| 400 | BIZ_INSTANCE_PAIDTYPE_NOT_SUPPORT | %s. Please check and try again later. | The instance does not support this payment method. |
| 400 | BIZ_INSTANCE_REFUND_ERROR | %s. Please check and try again later. | Failed to refund the instance. |
| 400 | BIZ_INSTANCE_RELEASE_ERROR | %s. Please check and try again later. | Failed to release the instance. |
| 400 | BIZ_INSTANCE_RELEASE_EXIST_CONSUMER_GROUP_ERROR | %s. Please check and try again later. | The instance has consumer groups and cannot be released. |
| 400 | BIZ_INSTANCE_RELEASE_EXIST_TOPIC_ERROR | %s. Please check and try again later. | The instance has topics and cannot be released. |
| 400 | BIZ_INSTANCE_RELEASE_LESSHOUR_ERROR | %s. Please check and try again later. | The instance can only be released after it has been created for at least 1 hour. |
| 400 | BIZ_INSTANCE_STATUS_ERROR | %s. Please check and try again later. | The instance status is incorrect. |
| 400 | BIZ_INSTANCE_UPDATE_ERROR | %s. Please check and try again later. | Failed to update the instance. |
| 400 | BIZ_INSTANCE_UPGRADE_ORDER_ERROR | %s. Please check and try again later. | Failed to create the upgrade order for the instance. |
| 400 | BIZ_MESSAGE_TRACK_ERROR | %s. Please check and try again later. | Failed to query the message trace. Try again later. |
| 400 | BIZ_NO_MESSAGE | %s. Please check and try again later. | The message does not exist. |
| 400 | BIZ_PRODUCER_ID_BELONG_TO_OTHER_USER | %s. Please check and try again later. | The specified ProducerId is already in use. Use a different ProducerId. |
| 400 | BIZ_PUBLISHER_EXISTED | %s. Please check and try again later. | The topic you requested to create already has producers. Confirm before proceeding. |
| 400 | BIZ_PUBLISH_INFO_NOT_FOUND | %s. Please check and try again later. | The producer information does not exist. Verify and try again. |
| 400 | BIZ_PUSH_MESSAGE_TO_CONSUMER_ERROR | %s. Please check and try again later. | Failed to verify consumption. Try again later. |
| 400 | BIZ_QUERY_CONSUME_TIMESPAN_ERROR | %s. Please check and try again later. | Failed to query the consumer time range. Try again later. |
| 400 | BIZ_QUERY_MESSAGE_ERROR | %s. Please check and try again later. | Failed to query messages. Try again later. |
| 400 | BIZ_RESET_OFFSET_ERROR | %s. Please check and try again later. | Failed to reset the consumption progress. Try again later. |
| 400 | BIZ_SASL_USER_NOT_EXIST | %s. Please check and try again later. | The specified user does not exist. |
| 400 | BIZ_SASL_USER_NUM_EXCEED | %s. Please check and try again later. | The number of SASL users has exceeded the limit. |
| 400 | BIZ_SEND_MESSAGE_ERROR | %s. Please check and try again later. | Failed to send the message. Try again later. |
| 400 | BIZ_SLR_CREATE_NO_PERMISSION | %s. Please check and try again later. | The current user does not have the permission to create a service-linked role. |
| 400 | BIZ_SUBSCRIPTION_ALREADY_EXISTS | %s. Please check and try again later. | The consumer group already exists. Create a consumer group with a different name. |
| 400 | BIZ_SUBSCRIPTION_CREATE_ERROR | %s. Please check and try again later. | Failed to create the consumer group. |
| 400 | BIZ_SUBSCRIPTION_DELETE_ERROR | %s. Please check and try again later. | Failed to delete the consumer group. |
| 400 | BIZ_SUBSCRIPTION_EXISTED | %s. Please check and try again later. | The consumer information that you want to create already exists. Verify the information. |
| 400 | BIZ_SUBSCRIPTION_NOT_FOUND | %s. Please check and try again later. | The consumer group does not exist. |
| 400 | BIZ_SUBSCRIPTION_PERMISSION_CHECK_ERROR | %s. Please check and try again later. | The consumer group validation failed. |
| 400 | BIZ_SUBSCRIPTION_STATUS_ERROR | %s. Please check and try again later. | Failed to retrieve the consumer group status. |
| 400 | BIZ_SUBSCRIPTION_TOO_MUCH | %s. Please check and try again later. | The number of consumer groups has exceeded the limit. |
| 400 | BIZ_SUBSCRIPTION_UPDATE_ERROR | %s. Please check and try again later. | Failed to update the consumer group. |
| 400 | BIZ_TAG_DUPLICATE_TAG_KEY | %s. Please check and try again later. | The tag key is duplicate. |
| 400 | BIZ_TAG_ONLY_SERVICE_ACCOUNT_HAS_PERMISSION | %s. Please check and try again later. | Only service accounts have the permission to manage operating system tags. |
| 400 | BIZ_TAG_REQUEST_RESOURCE_NUM_EXCEED | %s. Please check and try again later. | The number of resources per request has exceeded the limit. |
| 400 | BIZ_TAG_REQUEST_TAG_NUM_EXCEED | %s. Please check and try again later. | The number of tags per request has exceeded the limit. |
| 400 | BIZ_TAG_RESOURCE_NOT_EXIST | %s. Please check and try again later. | The resource does not exist. |
| 400 | BIZ_TAG_RESOURCE_NUM_EXCEED | %s. Please check and try again later. | The number of resources associated with the tag has exceeded the limit. |
| 400 | BIZ_TAG_TAGKEY_NOT_VALID | %s. Please check and try again later. | The tag key format is invalid. |
| 400 | BIZ_TAG_TAGVALUE_NOT_VALID | %s. Please check and try again later. | The tag value format is invalid. |
| 400 | BIZ_TAG_TAG_NUM_EXCEED | %s. Please check and try again later. | The number of tags associated with the resource has exceeded the limit. |
| 400 | BIZ_TIME_SPAN_EMPTY | %s. Please check and try again later. | No messages have been written to the topic subscribed by this consumer group. A reset is not required. |
| 400 | BIZ_TOPIC_ALREADY_EXISTS | %s. Please check and try again later. | The topic already exists. Create a topic with a different name. |
| 400 | BIZ_TOPIC_COMPACT_TOPIC_NOT_SUPPORT | %s. Please check and try again later. | Creating a compact topic is not supported. |
| 400 | BIZ_TOPIC_CREATE_ERROR | %s. Please check and try again later. | Failed to create the topic. |
| 400 | BIZ_TOPIC_CREATE_INTERNAL_ERROR | %s. Please check and try again later. | The topic name cannot start with "__". |
| 400 | BIZ_TOPIC_DELETE_ERROR | %s. Please check and try again later. | Failed to delete the topic. |
| 400 | BIZ_TOPIC_EXISTED | %s. Please check and try again later. | The specified topic already exists. |
| 400 | BIZ_TOPIC_LOCAL_TOPIC_NOT_SUPPORT | %s. Please check and try again later. | Creating a local topic is not supported. |
| 400 | BIZ_TOPIC_OFFSET_ERROR | %s. Please check and try again later. | An error occurred while querying the consumer offset. |
| 400 | BIZ_TOPIC_PARTITION_ADD_ERROR | %s. Please check and try again later. | Failed to add partitions. |
| 400 | BIZ_TOPIC_PARTITION_ERROR | %s. Please check and try again later. | The partition does not exist. |
| 400 | BIZ_TOPIC_PARTITION_NUM_EXCEED | %s. Please check and try again later. | The number of partitions has exceeded the limit. |
| 400 | BIZ_TOPIC_TOO_MUCH | %s. Please check and try again later. | The number of topics has exceeded the limit. |
| 400 | BIZ_TOPIC_UPDATE_CONFIG_ERROR | %s. Please check and try again later. | Failed to update the topic configuration. |
| 400 | BIZ_TOPIC_UPDATE_ERROR | %s. Please check and try again later. | Failed to update the topic. |
| 400 | BIZ_UPDATE_ACL_FAILED | %s. Please check and try again later. | Failed to modify the ACL. Try again later. |
| 400 | BIZ_UPDATE_SUBSCRIPTION_ERROR | %s. Please check and try again later. | Failed to update the consumer ID. Try again later. |
| 400 | BIZ_UPDATE_TOPIC_ERROR | %s. Please check and try again later. | Failed to update the topic. Try again later. |
| 400 | BIZ_UPDATE_TOPIC_PERM_ERROR | %s. Please check and try again later. | Failed to update the permission information of the topic. |
| 400 | DataExceedMaxLimit | The maximum number of %s is exceeded. | The number of %s has exceeded the upper limit. |
| 400 | DB.Update.Failed | Failed to update data, please try again, if invalid, please submit a work order. | Failed to update data, please try again, if invalid, please submit a work order. |
| 400 | Deploy.Callback.Illegal | Message data does not match, please submit work order. | Message data does not match, please submit work order. |
| 400 | Deploy.NotRetriableError | Deployment error, please submit work order. | Deployment error, please submit work order. |
| 400 | Deploy.ResourceNotEnough | Insufficient resources, please submit work order. | Insufficient resources, please submit work order. |
| 400 | Deploy.RetriableError | A retry error occurred during deployment. If the retry still fails, submit a work order. | A retry error occurred during deployment. If the retry still fails, submit a work order. |
| 400 | DeployError | Deployment error, please try again, if invalid, please submit a work order. | Deployment error, please try again, if invalid, please submit a work order. |
| 400 | DeployPreCheckError | Deployment pre-check failed. Please submit work order. | The deployment pre-check failed. Please try again. If the retry still fails, please submit a ticket. |
| 400 | DeployType.NotSupport | deployType is not supported. Refer to the document and retry. If in doubt, submit a work order. | deployType is not supported. Refer to the document and retry. If in doubt, submit a work order. |
| 400 | FlowControl | Request was denied due to flow control. | The resource is being throttled. Try again later. |
| 400 | GET.CONSUMER.MISSING.ACCESS.KEY.ID | AccessKeyId is required to get consumer group info. | An AccessKeyId is required to retrieve consumer group information. |
| 400 | Group.Active | Group is active and cannot perform this operation. | Group is active and cannot perform this operation. |
| 400 | Instance.CaclulateChange.time | Example Failed to obtain the expected change time. Please try again later. | Example Failed to obtain the expected change time. Please try again later. |
| 400 | Instance.Change.NotAllowed | This instance does not allow change operations. | This instance does not allow change operations. |
| 400 | Instance.ExceedMaxLimit | The maximum number of instance is exceeded. | The number of instances per account has exceeded the upper limit. To increase the quota, submit a ticket. |
| 400 | Instance.InsertComponent.fail | Failed to insert the instance component, please try again later. | Failed to insert the instance component, please try again later. |
| 400 | Instance.ResourceNotSufficient | Insufficient resources, unable to operate, please submit a work order. | Insufficient resources, unable to operate, please submit a work order. |
| 400 | Instance.UpdateComponent.fail | Failed to update the instance component, please try again later. | Failed to update the instance component, please try again later. |
| 400 | Instance.UpgradeService.version | Upgrade version failed, please try again later. | Upgrade version failed, please try again later. |
| 400 | InstanceStatus.Change.NotAllowed | There was an error in the instance status switch verification. Please try again. If you have any questions, please submit the work order. | There was an error in the instance status switch verification. Please try again. If you have any questions, please submit the work order. |
| 400 | InstanceStatus.NotAllowed | The current status of the instance cannot be changed. This function cannot be performed. Please try again later. | The current status of the instance cannot be changed. This function cannot be performed. Please try again later. |
| 400 | InstanceStatus.NotReleased | The instance is not in the released state and cannot perform this function. Please try again later. | The instance is not in the released state and cannot perform this function. Please try again later. |
| 400 | InstanceStatus.NotWaitChange | The instance is not waiting for change status, cannot operate this function, please try again later. | The instance is not waiting for change status, cannot operate this function, please try again later. |
| 400 | InstanceStatus.NotWaitDeploy | This function cannot be performed because the instance is not in the state to be deployed. Please try again later. | This function cannot be performed because the instance is not in the state to be deployed. Please try again later. |
| 400 | InstanceStatus.Released | The instance has been released. | The instance has been released. |
| 400 | InstanceStatus.Stopped | Instance stopped serving. | Instance stopped serving. |
| 400 | Invalid.%s | Invalid.%s | The parameter is invalid. |
| 400 | Invalid.Partition.%s | Invalid.%s | The number of partitions and the topic are not equivalent. |
| 400 | InvalidParameter | The %s parameter is invalid. | The parameter %s failed validation. |
| 400 | InvalidParameter.DataAlreadyExist | The data already exists for the %s parameter. | The data corresponding to the parameter %s already exists. |
| 400 | InvalidParameter.DataNotChange | There is no change in the parameters. Please adjust and try again. | There is no change in the parameters. Please adjust and try again. |
| 400 | InvalidParameter.NotSupport | The %s parameter is not supported. | The parameter %s is not supported. |
| 400 | InvalidParameter.OtherParam | Parameter %s is incorrect because %s. | Parameter %s is incorrect because %s. |
| 400 | InvalidParameter.Range | The value of the %s parameter is not within the specified range. | The parameter %s failed range validation. The value must be between %s and %s. |
| 400 | InvalidParameter.Size | The size of the %s parameter is not within the specified range. | The length of the parameter %s failed validation. |
| 400 | InvalidParameter.VersionNotSupport | Current version does not support the %s parameter. | The current version does not support the parameter %s. |
| 400 | Ldap.CreateAdminError | Administrative accounts cannot be added or modified. | Administrative accounts cannot be added or modified. |
| 400 | Ldap.DeleteAdminError | The management account cannot be deleted. | The management account cannot be deleted. |
| 400 | Manager.configRuleExistError | Manager an existing configuration rule is inserted, adjust and try again. | Manager an existing configuration rule is inserted, adjust and try again. |
| 400 | Manager.configRuleNotExistError | Manager a configuration rule that does not exist is changed, please adjust it and try again. | Manager a configuration rule that does not exist is changed, please adjust it and try again. |
| 400 | Manager.NotCommit | Manager operation is not submitted, please adjust and try again. | Manager operation is not submitted, please adjust and try again. |
| 400 | Manager.recoverTaskNotFound | Manager the resumed scheduling task does not exist, please adjust and try again. | Manager the resumed scheduling task does not exist, please adjust and try again. |
| 400 | Manager.recoverTaskNotMatch | The id of the restored scheduling task does not match that of the instance. | Manager the resumed scheduling task does not match the instance ID, adjust the task and try again. |
| 400 | Manager.scheduledTaskStatusError | Manager the status of the asynchronous task fails to be changed, check whether the source status is consistent with the current status, and then try again. | Manager the status of the asynchronous task fails to be changed, check whether the source status is consistent with the current status, and then try again. |
| 400 | Manager.scheduledTaskStatusNotSupport | The manager operation task status is unknown. | Manager action task status is unknown. |
| 400 | NotSupport | The current operation is not supported, please check and try again later. | The current operation is not supported, please check and try again later. |
| 400 | NotSupport.DataStatus | Current status %s does not support this operation. | The operation is not supported in the current data status %s. |
| 400 | ONS.LOGIN.CHECK.ERROR | %s. Please check and try again later. | Your session has expired. Log on again. |
| 400 | ONS_INIT_ENV_ERROR | %s. Please check and try again later. | A fault occurred during environment context initialization. Contact the system administrator. |
| 400 | ONS_INTERNAL_ERROR | %s. Please check and try again later. | The network connectivity failed. Contact the system administrator. |
| 400 | ONS_INVOKE_ERROR | %s. Please check and try again later. | Failed to invoke the API. Contact the system administrator. |
| 400 | ONS_LOGIN_CHECK_ERROR | %s. Please check and try again later. | Your session has expired. Log on again. |
| 400 | ONS_SERVICE_UNSUPPORTED | %s. Please check and try again later. | The request is not supported. Contact the system administrator. |
| 400 | ONS_SYSTEM_ERROR | %s. Please check and try again later. | A system processing fault occurred. Contact the system administrator. |
| 400 | ONS_SYSTEM_FLOW_CONTROL | %s. Please check and try again later. | Too many requests are being processed. Try again later. |
| 400 | Order.Create.Error | Failed to create order. | Failed to create order. |
| 400 | Order.Insufficient.balance | The available gold is not enough, please recharge and try again. | The available gold is not enough, please recharge and try again. |
| 400 | Oss.NotFound | Failed to download message, please try again later. | Failed to download message, please try again later. |
| 400 | Oss.PublishFailed | Failed to download message, please try again later. | Failed to download message, please try again later. |
| 400 | RAM.USER.NOT.FOUND.BY.ACCESSKEY | The specified access key is not found. | The AccessKeyId does not exist. |
| 400 | RAM_CREATE_RESOURCE_OWNER_ERROR | %s. Please check and try again later. | Failed to create the resource ownership information. Try again later. |
| 400 | RAM_CREATE_RESOURCE_PERMISSION_ERROR | %s. Please check and try again later. | Failed to create resource permission information. Try again later. |
| 400 | RAM_DELETE_RESOURCE_OWNER_ERROR | %s. Please check and try again later. | Failed to delete resource ownership information. Try again later. |
| 400 | RAM_DELETE_RESOURCE_PERMISSION_ERROR | %s. Please check and try again later. | Failed to delete resource permission information. Try again later. |
| 400 | RAM_GET_USER_BY_AK_ERROR | %s. Please check and try again later. | Failed to retrieve the AccessKey information of the user. Try again later. |
| 400 | RAM_USER_NOT_FOUND_BY_ACCESSKEY | %s. Please check and try again later. | The user information does not exist. Verify the AccessKey. |
| 400 | ScheduledTask.AlreadyHasSameTaskType | has same task waiting for schedule. | The same task is waiting to be scheduled, please try again later. |
| 400 | ScheduledTask.ExecuteTimeGapTooShort | execute time gap too close to an existed task. | The execution time interval is too close to the existing task. Please adjust and try again. |
| 400 | ServerlessPlan.InstanceNotMatch | The timing policy execution plan does not match the instance ID. | The timing policy execution plan does not match the instance ID. |
| 400 | ServerlessPlan.IntervalInvalid | If a periodic policy execution plan is smaller than the target size, delete it. | If a periodic policy execution plan is smaller than the target size, delete it. |
| 400 | ServerlessPlan.NameExist | The name of the periodic policy execution plan is the same. Please modify the name and try again. | The name of the periodic policy execution plan is the same. Please modify the name and try again. |
| 400 | ServerlessPlan.NotSupport.EnabledRuleExist | If a periodic policy is in effect, it does not support the current operation. Set all periodic policies to invalid. | If a periodic policy is in effect, it does not support the current operation. Set all periodic policies to invalid. |
| 400 | ServerlessPlan.NotSupport.StatusEnabled | A periodic policy can be deleted only after it is disabled. | A periodic policy can be deleted only after it is disabled. |
| 400 | ServerlessPlan.TaskStatusNotSupport | A periodic policy task cannot be modified or cancelled when it is being executed or when a single execution is completed. | A scheduled policy task cannot be modified or canceled when it is being executed or a single execution is completed. |
| 400 | Sls.Query.Error | Data query failed. Please try again later. | Data query failed. Please try again later. |
| 400 | Sts.NotFound | Unable to find the whitelist information, please try again later, if in doubt, please submit the work order. | Unable to find the whitelist information, please try again later, if in doubt, please submit the work order. |
| 400 | Topic.DownloadMessageFail | Failed to download message, please try again later. | Failed to download message, please try again later. |
| 400 | Topic.Exist | The topic already exists. | The topic already exists. |
| 400 | Topic.NotFound | The Topic does not exist. Please check and try again. | The Topic does not exist. Please check and try again. |
| 400 | Topic.QueryMessageFail | Failed to query the message, please try again later. | Failed to query the message, please try again later. |
| 400 | Topic.SendFail | Topic failed to send a message. Please try again later. | Topic failed to send a message. Please try again later. |
| 400 | Topic.StatusNotRunning | The Topic status is not in the service and cannot be operated. Please try again later. If in doubt, please submit the work order. | The Topic status is not in the service and cannot be operated. Please try again later. If in doubt, please submit the work order. |
| 400 | TopicStatus.NotAllowed | The current status of the Topic cannot be changed. | The current status of the Topic cannot be changed. |
| 400 | VPC_ASSUMEROLE_ERROR | %s. Please check and try again later. | You have not been authorized. |
| 400 | VPC_VSW_ZONE_MAPPING_ERROR | %s. Please check and try again later. | The vSwitch or security group validation failed. |
| 400 | WHITE.DELETE.ERROR | %s. Please check and try again later. | Only one IP address can be specified for deletion. |
| 400 | WHITE.IP.ALREADY.EXISTS.ERROR | %s. Please check and try again later. | The specified IP address already exists. Check the input. |
| 400 | WHITE.IP.ILLEGAL.ERROR | %s. Please check and try again later. | The allowed IP address is invalid. |
| 400 | WHITE.IPLIST.OVERLONG.ERROR | %s. Please check and try again later. | The IP address list is too long. The maximum length is 200. |
| 400 | WHITE.OVER.LENGTH.ERROR | %s. Please check and try again later. | The allowed IP address exceeds the maximum length of 10. |
| 400 | WHITE.PARAM.ERROR | %s. Please check and try again later. | The parameter is invalid. |
| 400 | Order.InstHasUnpaidOrder | There is an unpaid order for the resource you selected, please pay or void it before placing the order. | There is an unpaid order for the resource you selected, please pay or void it before placing the order! |
| 400 | Topic.RebalanceOperationForbidden | This operation is not allowed during instance drainage. Please try again after the drainage is completed. | This operation is not allowed during instance drainage. Please try again after the drainage is completed. |
| 400 | AUTH_USER_CHECK_ERROR | Network jitter timed out, try refreshing and retry. | Network jitter timed out, try refreshing and retry. |
| 400 | WHITE_IP_LIST_OVERLONG_ERROR | KafkaInstanceBiz updateWhiteList allIpList is overlong. | Update whitelist list too long |
| 400 | BIZ_GET_TOPIC_OFFSET_ERROR | getTopicOffset error. | Error obtaining topic partition site |
| 400 | BIZ_PARAM_EMPTY | param is blank. | The input parameter cannot be empty. |
| 400 | BIZ_INSTANCE_CANNOT_OPERATE | Unable to operate during instance maintenance. | Unable to operate during instance maintenance. Please try again later. |
| 400 | RemoteCallError | An internal service invocation error occurred. Please try again later. | A remote call error occurred. |
| 400 | InvalidParameter.Format | The %s format is invalid. | The format of the parameter %s failed validation. |
| 400 | Inner.Owner.notAllowed | inner account not allowed. | Internal users cannot purchase |
| 400 | Topic.Inner.NotAllowOperate | Internal topics do not allow operations. | Operation not allowed for internal topic |
| 400 | BIZ_INSTANCE_DEPLOY_ERROR | Unknown error occurred %s. | An unknown error has occurred |
| 400 | Deploy.IpNotEnough.Error | User VSwitch available ip not enough. You can try to select other VSwitch when deploy new instance. | The user VSwitch has insufficient Ip available, and you can try to choose a different VSwitch when deploying a new instance. |
| 400 | Deploy.InvalidPreCheckConditionCpuUsage.Error | The CPU load is high, and the pre-check fails. | The CPU water level is high, and the pre-inspection is not passed. |
| 400 | BIZ_INSTANCE_IP_NOT_ENOUGH | User VSwitch available ip not enough. You can try to select other VSwitch when deploy new instance. | Insufficient IP available for user VSwitch. You can try to choose a different VSwitch when deploying a new instance. |
| 400 | BIZ_INSTANCE_INVALID_PRE_CHECK_CONDITION_CPU_USAGE | The CPU load is high, and the pre-check fails. | CPU load too high, precheck failed. |
| 400 | InternalError | A system exception occurred. Please submit a ticket. | An internal error occurred. |
| 400 | BIZ_INSTANCE_DEPLOY_TIMEOUT | %s Please try again later. | Please try again later. |
| 400 | BIZ_INSTANCE_DEPLOY_CAPACITY_RESERVATION_ERROR | %s Please try again later. | Insufficient stock, please try again later or submit a work order |
| 403 | NoPermission | No permissions. | You do not have the required permissions. |
| 403 | AUTH_RESOURCE_OWNER_ERROR | %s. Please check and try again later. | The resource ownership verification failed. Verify the resource ownership information and try again. |
| 404 | AsyncTaskGroup.NotFound | The task group does not exist. Please check and try again. | The task group does not exist. Please check and try again. |
| 404 | AsyncTaskHandler.NotFound | The task does not exist. Please check and try again. | The task does not exist. Please check and try again. |
| 404 | AsyncTaskType.NotFound | The task type does not exist. Please check and try again. | The task type does not exist. Please check and try again. |
| 404 | Group.NotFound | GroupId does not exist. Please check and try again. | GroupId does not exist. Please check and try again. |
| 404 | Instance.NotFound | No instance found for the %s parameter. | The instance does not exist. Verify the input parameters and try again. |
| 404 | InstanceAgent.NotFound | Instance does not exist. Please check the entry and try again. | Instance does not exist. Please check the entry and try again. |
| 404 | InvalidData.FieldsIncomplete | Data is incomplete, %s data is missing, please check and try again later. | Data is incomplete, %s data is missing, please check and try again later. |
| 404 | InvalidParameter.DataNotFound | No data found for the %s parameter. | No data was found for the parameter %s. |
| 404 | Topic.NotFound | No topic found for the %s parameter. | The topic does not exist. Check the topic and try again. |
| 404 | VpcVSwitch.NotFound | The private network and switch do not exist. Please refer to the document and try again. If in doubt, submit a work order. | The private network and switch do not exist. Please refer to the document and try again. If in doubt, submit a work order. |
| 404 | SG_ERROR | find sgInfo error, please retry later. | Failed to find the security group. Make sure that the information is correct and try again. |
Consultez Codes d'erreur pour la liste complète.
Notes de version
Consultez Notes de version pour la liste complète.