Documentation ¶
Index ¶
- Constants
- Variables
- func DefaultTransport(config Config) *http.Transport
- func NewTestBucket(t testing.TB, component string) (objstore.Bucket, func(), error)
- type Bucket
- func (b *Bucket) Attributes(ctx context.Context, name string) (objstore.ObjectAttributes, error)
- func (b *Bucket) Close() error
- func (b *Bucket) Delete(ctx context.Context, name string) error
- func (b *Bucket) Exists(ctx context.Context, name string) (bool, error)
- func (b *Bucket) Get(ctx context.Context, name string) (io.ReadCloser, error)
- func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error)
- func (b *Bucket) IsObjNotFoundErr(err error) bool
- func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error, ...) error
- func (b *Bucket) Name() string
- func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error
- type Config
- type HTTPConfig
- type PipelineConfig
- type ReaderConfig
Constants ¶
View Source
const DirDelim = "/"
DirDelim is the delimiter used to model a directory structure in an object store bucket.
Variables ¶
View Source
var DefaultConfig = Config{ PipelineConfig: PipelineConfig{ MaxTries: 0, TryTimeout: 0, RetryDelay: 0, MaxRetryDelay: 0, }, ReaderConfig: ReaderConfig{ MaxRetryRequests: 0, }, HTTPConfig: HTTPConfig{ IdleConnTimeout: model.Duration(90 * time.Second), ResponseHeaderTimeout: model.Duration(2 * time.Minute), TLSHandshakeTimeout: model.Duration(10 * time.Second), ExpectContinueTimeout: model.Duration(1 * time.Second), MaxIdleConns: 100, MaxIdleConnsPerHost: 100, MaxConnsPerHost: 0, DisableCompression: false, }, }
Set default retry values to default Azure values. 0 = use Default Azure.
Functions ¶
func DefaultTransport ¶ added in v0.22.0
Types ¶
type Bucket ¶
type Bucket struct {
// contains filtered or unexported fields
}
Bucket implements the store.Bucket interface against Azure APIs.
func (*Bucket) Attributes ¶ added in v0.14.0
Attributes returns information about the specified object.
func (*Bucket) GetRange ¶
func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error)
GetRange returns a new range reader for the given object name and range.
func (*Bucket) IsObjNotFoundErr ¶
IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
type Config ¶
type Config struct { StorageAccountName string `yaml:"storage_account"` StorageAccountKey string `yaml:"storage_account_key"` ContainerName string `yaml:"container"` Endpoint string `yaml:"endpoint"` MaxRetries int `yaml:"max_retries"` MSIResource string `yaml:"msi_resource"` PipelineConfig PipelineConfig `yaml:"pipeline_config"` ReaderConfig ReaderConfig `yaml:"reader_config"` HTTPConfig HTTPConfig `yaml:"http_config"` }
Config Azure storage configuration.
type HTTPConfig ¶ added in v0.22.0
type HTTPConfig struct { IdleConnTimeout model.Duration `yaml:"idle_conn_timeout"` ResponseHeaderTimeout model.Duration `yaml:"response_header_timeout"` InsecureSkipVerify bool `yaml:"insecure_skip_verify"` TLSHandshakeTimeout model.Duration `yaml:"tls_handshake_timeout"` ExpectContinueTimeout model.Duration `yaml:"expect_continue_timeout"` MaxIdleConns int `yaml:"max_idle_conns"` MaxIdleConnsPerHost int `yaml:"max_idle_conns_per_host"` MaxConnsPerHost int `yaml:"max_conns_per_host"` DisableCompression bool `yaml:"disable_compression"` }
type PipelineConfig ¶ added in v0.22.0
type ReaderConfig ¶ added in v0.22.0
type ReaderConfig struct {
MaxRetryRequests int `yaml:"max_retry_requests"`
}
Click to show internal directories.
Click to hide internal directories.