-
Notifications
You must be signed in to change notification settings - Fork 539
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
Google cloud storage insufficient data written #177
Comments
Not familiar with GS, seems it might be hitting some file size limit on GS |
@HenryCaiHaiying i dont think GS imposes a 10MB limit on you, it would be insane. We are fairly confident it has to do with chunk size 10MB, especially because we see that in |
@HenryCaiHaiying another update: if we set the upload as |
This sounds good, how about you prepare a PR for this fix. And make sure On Mon, Feb 15, 2016 at 6:32 AM, eLod notifications@github.com wrote:
|
i would, but on my local machine it fails to build master, i think i'm hitting #78
|
Did you try the workaround suggested by in the issue? Or you can just prepare the PR, the travis-CI robot runs in US locale, it On Mon, Feb 15, 2016 at 8:46 PM, eLod notifications@github.com wrote:
|
@eLod I initially added the I thought I fixed that by using the exponential backoff introduced in b9b49d1 - In fact that fixed it for us. |
@jgagnon1 do you think we can investigate this further, or should we just have the directUpload as a config key and be done with it. Disabling resumable uploads is something we feel have some downsides that it's worth some of our time to investigate (and possibly find a better solution), but we are not well versed enough in java to do this only by ourselves. If you happen to have energy (for this) we would gladly help as we can, otherwise we would just use direct uploads and move on. |
Add direct upload config flag for Google cloud storage, fixes #177.
We have a secor setup where everything works with s3, but when switching to GS it throws
this only happens if the file size is larger than the chunk size (10MB), if we set
secor.max.file.size.bytes
to 7500000 it results in a file about 9.5MB and is uploaded to GS ok, but when we setsecor.max.file.size.bytes
to it 8000000 throws the exception (secor.messages.per.second=10000
).secor version: 0.16 (0.13 also)
jdk version: 7u91-2.6.3-1~deb8u1
The text was updated successfully, but these errors were encountered: