-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blob: CreateBlobPages parameters inconsistent #117
Milestone
Comments
gcheng
pushed a commit
to gcheng/azure-sdk-for-java
that referenced
this issue
May 17, 2013
remove message count details and forward to for JSR review.
no longer in scope |
g2vinay
pushed a commit
to g2vinay/azure-sdk-for-java
that referenced
this issue
Mar 4, 2019
Azure Storage Client Library 4.4.0 Release
sima-zhu
pushed a commit
to sima-zhu/azure-sdk-for-java
that referenced
this issue
Mar 21, 2019
Move graph related code to fluent core
mssfang
pushed a commit
to mssfang/azure-sdk-for-java
that referenced
this issue
Apr 23, 2019
* Minor nullref exception fix. * Minor nullref exception fix.
g2vinay
pushed a commit
to g2vinay/azure-sdk-for-java
that referenced
this issue
May 30, 2019
* WIP (Work In Progress) Merged internal direct implementation to open source branch * Added localhost to test configurations * Safe Deleting collection after test case is done * Trying smaller set of collections * Reverting it back to normal * Merging latest develop branch from internal code base * Merge RNTBD work-in-progress from internal repository * Fixed some request timer issues * Fixed some request timer issues * Fixed some request timer issues * FakeEndpoint is now RntbdRequestTimer-capable * Added a blank line and confirmed that all unit tests pass * Renamed RntbdTransportClient.Options.maxChannels as RntbdTransportClient.Options.maxChannelsPerEndpoint and reduced its default from from 65535 to 10. Impact: Improved reliability and performance. * Renamed RntbdRequestManager.PendingRequest as RntbdRequestRecord and improved error handling in RntbdRequestManager.write to ensure correct retry behavior in the layer above RntbdTransportClient. * RntbdRequestRecord is now a CompletableFuture<StoreResponse>. RntbdServiceEndpoint instances now write RntbdRequestRecord instances. The result: improved encapsulation and code readability. * Code tweaks for correctness * Refactored RntbdTransportClient.Options for improved usability. * Refactored for improved diagnstics, testability, and usability. * Improved request timeout error message * Marked some classes as final * Improved metrics and logger.debug messages. Also: confirmed direct and simple (fast), and unit tests pass locally * Added and updated dependencies (benchmark and direct-impl) on metrics * Corrected merge issues * Improved RntbdMetrics and corrected some deficiencies in RntbdClientChannelPool * Improved RntbdMetrics and corrected some deficiencies in RntbdClientChannelPool * We now report illegal state instead of throwing an illegal state exception in two cases which may be at the root of a failure related to Read/WriteTimeoutExceptions * Corrected an error message * Corrected an error message * Addressed some error recovery/reporting issues * Added RntbdTransportClient specification * Tweaked error handling and removed some dead code * Tweaked error handling and removed some dead code * Tweaked error handling and removed some dead code * Tweaked error handling * Tidied top-level pom.xml
navalev
pushed a commit
to navalev/azure-sdk-for-java
that referenced
this issue
Dec 24, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Dev estimate: 8
Test estimate: 5
Moved from the private repository.
CreateBlobPages takes "length" and "contentStream", which seems redundant. I interpreted it like this:
However, the entire stream is written out. What's worse, the length is used to construct the SharedKey signature, so the server rejects the packet with a 409.
I'd suggest that we do one of the following:
I prefer Blob storage hangs for files > about 3500 kb #1 for consistance and ease of use.
The documentation is wrong, is echos what I initially thought the behavior should be:
After discuss with the team, here is what we will do
Make the length parameter optional. If length is provided, we will only use the specified part of the stream. If not, we will use the entire stream. If the customer needs to optimize for performance, he/she can pass in the length parameter as well.
The text was updated successfully, but these errors were encountered: