You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Version 1.104.0 of the google-cloud-storage library includes an improvement that eliminates a bit of technical debt in the code to upload the blob content to the storage bucket.
In the event we hit the 32nd "chunk" of the file, the previous version of the library would attempt to GZIP the remainder of the stream on the way to the bucket. The compression would result in a CPU spike for these larger files and lower overall throughput.
Version 1.104 includes the ability to skip GZIP compression. This is very relevant to the plugin as pretty much every single blob we store is already compressed in some way (jar, war, gzip, docker layers, etc). Updating to this version of the library will avoid the CPU spike and potentially increase overall throughput.
The text was updated successfully, but these errors were encountered:
Version 1.104.0 of the
google-cloud-storage
library includes an improvement that eliminates a bit of technical debt in the code to upload the blob content to the storage bucket.In the event we hit the 32nd "chunk" of the file, the previous version of the library would attempt to GZIP the remainder of the stream on the way to the bucket. The compression would result in a CPU spike for these larger files and lower overall throughput.
Version 1.104 includes the ability to skip GZIP compression. This is very relevant to the plugin as pretty much every single blob we store is already compressed in some way (jar, war, gzip, docker layers, etc). Updating to this version of the library will avoid the CPU spike and potentially increase overall throughput.
The text was updated successfully, but these errors were encountered: