-
Notifications
You must be signed in to change notification settings - Fork 491
Closed
Labels
Area: SDKGeneral SDK issues that don't clearly map to other areas (e.g.: helper methods)General SDK issues that don't clearly map to other areas (e.g.: helper methods)P2Nice to haveNice to haveSize: SThe issue is simple and well understood, it will take a day or less to completeThe issue is simple and well understood, it will take a day or less to completefeature-requestA request for new functionality or an enhancement to an existing one.A request for new functionality or an enhancement to an existing one.
Milestone
Description
Is your feature request related to a problem? Please describe.
Potentially improve performance of BlobsStorage and BobsTranscriptStore
Describe the solution you'd like
Tom and Carlos also raise an interesting point in this issue:
#4642
We should consider what is the optimal StorageTransferOptions
for most bots, and maybe loosely expose these:
//
// Summary:
// The maximum length of an transfer in bytes.
public int? MaximumTransferLength { readonly get; set; }
//
// Summary:
// The maximum number of workers that may be used in a parallel transfer.
public int? MaximumConcurrency { readonly get; set; }
//
// Summary:
// The size of the first range request in bytes. Blobs smaller than this limit will
// be downloaded in a single request. Blobs larger than this limit will continue
// being downloaded in chunks of size MaximumTransferLength.
public int? InitialTransferLength { readonly get; set; }
Metadata
Metadata
Assignees
Labels
Area: SDKGeneral SDK issues that don't clearly map to other areas (e.g.: helper methods)General SDK issues that don't clearly map to other areas (e.g.: helper methods)P2Nice to haveNice to haveSize: SThe issue is simple and well understood, it will take a day or less to completeThe issue is simple and well understood, it will take a day or less to completefeature-requestA request for new functionality or an enhancement to an existing one.A request for new functionality or an enhancement to an existing one.