Skip to content

Commit

Permalink
Changed block blob limit (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsha-msft authored Aug 5, 2020
1 parent 68b8d88 commit 9e15f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azblob/url_block_blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (

const (
// BlockBlobMaxUploadBlobBytes indicates the maximum number of bytes that can be sent in a call to Upload.
BlockBlobMaxUploadBlobBytes = 256 * 1024 * 1024 // 256MB
BlockBlobMaxUploadBlobBytes = 10 * 1024 * 1024 * 1024 // 10GiB

// BlockBlobMaxStageBlockBytes indicates the maximum number of bytes that can be sent in a call to StageBlock.
BlockBlobMaxStageBlockBytes = 100 * 1024 * 1024 // 100MB
BlockBlobMaxStageBlockBytes = 4000 * 1024 * 1024 // 4000MiB

// BlockBlobMaxBlocks indicates the maximum number of blocks allowed in a block blob.
BlockBlobMaxBlocks = 50000
Expand Down

0 comments on commit 9e15f04

Please sign in to comment.