Documentation
¶
Index ¶
- Constants
- Variables
- 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, offset, length int64) (io.ReadCloser, error)
- func (b *Bucket) IsCustomerManagedKeyError(_ error) bool
- 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 ¶
const DirDelim = "/"
DirDelim is the delimiter used to model a directory structure in an object store bucket.
Variables ¶
var DefaultConfig = Config{ Endpoint: "blob.core.windows.net", HTTPConfig: exthttp.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, }, }
DefaultConfig for Azure objstore client.
Functions ¶
Types ¶
type Bucket ¶
type Bucket struct {
// contains filtered or unexported fields
}
Bucket implements the store.Bucket interface against Azure APIs.
func NewBucketWithConfig ¶
NewBucketWithConfig returns a new Bucket using the provided Azure config struct.
func (*Bucket) Attributes ¶
Attributes returns information about the specified object.
func (*Bucket) GetRange ¶
func (b *Bucket) GetRange(ctx context.Context, name string, offset, length int64) (io.ReadCloser, error)
GetRange returns a new range reader for the given object name and range.
func (*Bucket) IsCustomerManagedKeyError ¶
IsCustomerManagedKeyError returns true if the permissions for key used to encrypt the object was revoked.
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"` UserAssignedID string `yaml:"user_assigned_id"` MaxRetries int `yaml:"max_retries"` ReaderConfig ReaderConfig `yaml:"reader_config"` PipelineConfig PipelineConfig `yaml:"pipeline_config"` HTTPConfig exthttp.HTTPConfig `yaml:"http_config"` // Deprecated: Is automatically set by the Azure SDK. MSIResource string `yaml:"msi_resource"` }
Config Azure storage configuration.
type HTTPConfig ¶
type HTTPConfig = exthttp.HTTPConfig
HTTPConfig exists here only because Cortex depends on it, and we depend on Cortex. Deprecated. TODO(bwplotka): Remove it, once we remove Cortex cycle dep, or Cortex stops using this.
type PipelineConfig ¶
type ReaderConfig ¶
type ReaderConfig struct {
MaxRetryRequests int `yaml:"max_retry_requests"`
}