| Package | Description |
|---|---|
| com.google.cloud.hadoop.gcsio |
| Modifier and Type | Method and Description |
|---|---|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBackoffInitialIntervalMillis(int backoffInitialIntervalMillis)
On exponential backoff, the initial delay before the first retry; subsequent retries then
grow as an exponential function of the current delay interval.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBackoffMaxElapsedTimeMillis(int backoffMaxElapsedTimeMillis)
The maximum total time elapsed since the first retry over the course of a series of retries.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBackoffMaxIntervalMillis(int backoffMaxIntervalMillis)
The maximum amount of sleep between retries; at this point, there will be no further
exponential backoff.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBackoffMultiplier(double backoffMultiplier)
The base of the exponent used for exponential backoff; each subsequent sleep interval is
roughly this many times the previous interval.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBackoffRandomizationFactor(double backoffRandomizationFactor)
The amount of jitter introduced when computing the next retry sleep interval so that when
many clients are retrying, they don't all retry at the same time.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setBufferSize(int bufferSize)
If set to a positive value, low-level streams will be wrapped inside a BufferedInputStream
of this size.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setFastFailOnNotFound(boolean fastFailOnNotFound)
True if attempts to open a new channel on a nonexistent object are required to immediately
throw an IOException.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setInplaceSeekLimit(long inplaceSeekLimit)
If seeking to a new position which is within this number of bytes in front of the current
position, then we will skip forward by reading and discarding the necessary amount of bytes
rather than trying to open a brand-new underlying stream.
|
GoogleCloudStorageReadOptions.Builder |
GoogleCloudStorageReadOptions.Builder.setSupportContentEncoding(boolean supportContentEncoding)
True if the channel must take special precautions for deailing with "content-encoding"
headers where reported object sizes don't match actual bytes being read due to the stream
being decoded in-flight.
|
Copyright © 2018. All rights reserved.