Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Data Streams
  • Access management
  • Pricing policy
    • Overview
    • All methods
      • CreateStream
      • DecreaseStreamRetentionPeriod
      • DeleteStream
      • DescribeStream
      • IncreaseStreamRetentionPeriod
      • GetRecords
      • GetShardIterator
      • ListStreams
      • PutRecord
      • PutRecords
      • UpdateShardCount
    • Common errors
    • Examples
  • FAQ

In this article:

  • Request
  • Request options
  • Response
  • Response parameters
  • Errors
  1. HTTP API compatible with Amazon Kinesis Data Streams
  2. Methods
  3. UpdateShardCount

UpdateShardCount

Written by
Yandex Cloud
Updated at August 15, 2025
  • Request
    • Request options
  • Response
    • Response parameters
  • Errors

Updates the number of shards in the specified stream. Only shard count increases are allowed.

On success, this method sets the stream status to UPDATING and returns an HTTP 200 response with JSON data. After successful update, the stream transitions to the ACTIVE status. The scaling time depends on the stream size and may take several minutes. You can continue reading data from and writing data to the stream while it is in the UPDATING status.

RequestRequest

The request contains JSON-formatted data.

{
  "ScalingType": "string",
  "StreamName": "string",
  "TargetShardCount": number
}

Request optionsRequest options

Option Description
ScalingType Scaling type. UNIFORM_SCALING creates shards of equal size.

Type: String
Allowed values: UNIFORM_SCALING
Required: Yes
StreamName Data stream name.

Type: String
Size: 1-128 characters.
The possible values are: [a-zA-Z][a-zA-Z0-9-]+*(?<!-)$
Required: Yes
TargetShardCount Target number of shards.

Type: Integer
Minimum value: 1
Required: Yes

ResponseResponse

Successful requests return HTTP 200 with a JSON-formatted response body.

{
  "CurrentShardCount": number,
  "StreamName": "string",
  "TargetShardCount": number
}

Response parametersResponse parameters

Option Description
CurrentShardCount Current number of shards.

Type: Integer
Minimum value: 1
Required: Yes
StreamName Data stream name.

Type: String
Size: 1-128 characters.
The possible values are: [a-zA-Z][a-zA-Z0-9-]+*(?<!-)$
Required: Yes
TargetShardCount Target number of shards.

Type: Integer
Minimum value: 1
Required: Yes

ErrorsErrors

Error Description HTTP code
InvalidArgumentException The argument is invalid. See the error message for details. 400
LimitExceededException The request limit is exceeded. 400
ResourceInUseException The resource is currently locked by another operation. 400
ResourceNotFoundException The requested resource was not found. 400

Errors common to all methods may occur.

Was the article helpful?

Previous
PutRecords
Next
Common errors
© 2025 Direct Cursus Technology L.L.C.