Documentation ¶
Index ¶
- Constants
- Variables
- func NewBfsPipeline(c azbfs.Credential, o azbfs.PipelineOptions, ro ste.XferRetryOptions) pipeline.Pipeline
- func NewBlobPipeline(c azblob.Credential, o azblob.PipelineOptions, ro ste.XferRetryOptions) pipeline.Pipeline
- func NewazstorageComponent() internal.Component
- func ParseAndReadDynamicConfig(az *AzStorage, opt AzStorageOptions, reload bool) error
- func ParseAndValidateConfig(az *AzStorage, opt AzStorageOptions) error
- func RegisterEnvVariables()
- type AccountType
- type AuthType
- type AzConnection
- type AzStorage
- func (az *AzStorage) Chmod(options internal.ChmodOptions) error
- func (az *AzStorage) Chown(options internal.ChownOptions) error
- func (az *AzStorage) CloseFile(options internal.CloseFileOptions) error
- func (az *AzStorage) Configure(isParent bool) error
- func (az *AzStorage) CopyFromFile(options internal.CopyFromFileOptions) error
- func (az *AzStorage) CopyToFile(options internal.CopyToFileOptions) error
- func (az *AzStorage) CreateDir(options internal.CreateDirOptions) error
- func (az *AzStorage) CreateFile(options internal.CreateFileOptions) (*handlemap.Handle, error)
- func (az *AzStorage) CreateLink(options internal.CreateLinkOptions) error
- func (az *AzStorage) DeleteDir(options internal.DeleteDirOptions) error
- func (az *AzStorage) DeleteFile(options internal.DeleteFileOptions) error
- func (az *AzStorage) FlushFile(options internal.FlushFileOptions) error
- func (az *AzStorage) GetAttr(options internal.GetAttrOptions) (attr *internal.ObjAttr, err error)
- func (az *AzStorage) GetFileBlockOffsets(options internal.GetFileBlockOffsetsOptions) (*common.BlockOffsetList, error)
- func (az *AzStorage) IsDirEmpty(options internal.IsDirEmptyOptions) bool
- func (az *AzStorage) ListContainers() ([]string, error)
- func (az *AzStorage) Name() string
- func (az *AzStorage) OnConfigChange()
- func (az *AzStorage) OpenFile(options internal.OpenFileOptions) (*handlemap.Handle, error)
- func (az *AzStorage) Priority() internal.ComponentPriority
- func (az *AzStorage) ReadDir(options internal.ReadDirOptions) ([]*internal.ObjAttr, error)
- func (az *AzStorage) ReadFile(options internal.ReadFileOptions) (data []byte, err error)
- func (az *AzStorage) ReadInBuffer(options internal.ReadInBufferOptions) (length int, err error)
- func (az *AzStorage) ReadLink(options internal.ReadLinkOptions) (string, error)
- func (az *AzStorage) RenameDir(options internal.RenameDirOptions) error
- func (az *AzStorage) RenameFile(options internal.RenameFileOptions) error
- func (az *AzStorage) SetName(name string)
- func (az *AzStorage) SetNextComponent(c internal.Component)
- func (az *AzStorage) Start(ctx context.Context) error
- func (az *AzStorage) Stop() error
- func (az *AzStorage) StreamDir(options internal.StreamDirOptions) ([]*internal.ObjAttr, string, error)
- func (az *AzStorage) TruncateFile(options internal.TruncateFileOptions) error
- func (az *AzStorage) WriteFile(options internal.WriteFileOptions) (int, error)
- type AzStorageConfig
- type AzStorageConnection
- type AzStorageOptions
- type BlockBlob
- func (bb *BlockBlob) ChangeMod(name string, _ os.FileMode) error
- func (bb *BlockBlob) ChangeOwner(name string, _ int, _ int) error
- func (bb *BlockBlob) Configure(cfg AzStorageConfig) error
- func (bb *BlockBlob) CreateDirectory(name string) error
- func (bb *BlockBlob) CreateFile(name string, mode os.FileMode) error
- func (bb *BlockBlob) CreateLink(source string, target string) error
- func (bb *BlockBlob) DeleteDirectory(name string) (err error)
- func (bb *BlockBlob) DeleteFile(name string) (err error)
- func (bb *BlockBlob) GetAttr(name string) (attr *internal.ObjAttr, err error)
- func (bb *BlockBlob) GetFileBlockOffsets(name string) (*common.BlockOffsetList, error)
- func (bb *BlockBlob) List(prefix string, marker *string, count int32) ([]*internal.ObjAttr, *string, error)
- func (bb *BlockBlob) ListContainers() ([]string, error)
- func (bb *BlockBlob) NewCredentialKey(key, value string) (err error)
- func (bb *BlockBlob) ReadBuffer(name string, offset int64, length int64) ([]byte, error)
- func (bb *BlockBlob) ReadInBuffer(name string, offset int64, length int64, data []byte) error
- func (bb *BlockBlob) ReadToFile(name string, offset int64, count int64, fi *os.File) (err error)
- func (bb *BlockBlob) RenameDirectory(source string, target string) error
- func (bb *BlockBlob) RenameFile(source string, target string) error
- func (bb *BlockBlob) SetPrefixPath(path string) error
- func (bb *BlockBlob) SetupPipeline() error
- func (bb *BlockBlob) StageAndCommit(name string, bol *common.BlockOffsetList) error
- func (bb *BlockBlob) TestPipeline() error
- func (bb *BlockBlob) TruncateFile(name string, size int64) error
- func (bb *BlockBlob) UpdateConfig(cfg AzStorageConfig) error
- func (bb *BlockBlob) Write(options internal.WriteFileOptions) error
- func (bb *BlockBlob) WriteFromBuffer(name string, metadata map[string]string, data []byte) error
- func (bb *BlockBlob) WriteFromFile(name string, metadata map[string]string, fi *os.File) (err error)
- type Datalake
- func (dl *Datalake) ChangeMod(name string, mode os.FileMode) error
- func (dl *Datalake) ChangeOwner(name string, _ int, _ int) error
- func (dl *Datalake) Configure(cfg AzStorageConfig) error
- func (dl *Datalake) CreateDirectory(name string) error
- func (dl *Datalake) CreateFile(name string, mode os.FileMode) error
- func (dl *Datalake) CreateLink(source string, target string) error
- func (dl *Datalake) DeleteDirectory(name string) (err error)
- func (dl *Datalake) DeleteFile(name string) (err error)
- func (dl *Datalake) GetAttr(name string) (attr *internal.ObjAttr, err error)
- func (dl *Datalake) GetFileBlockOffsets(name string) (*common.BlockOffsetList, error)
- func (dl *Datalake) List(prefix string, marker *string, count int32) ([]*internal.ObjAttr, *string, error)
- func (dl *Datalake) ListContainers() ([]string, error)
- func (dl *Datalake) NewCredentialKey(key, value string) (err error)
- func (dl *Datalake) ReadBuffer(name string, offset int64, length int64) ([]byte, error)
- func (dl *Datalake) ReadInBuffer(name string, offset int64, length int64, data []byte) error
- func (dl *Datalake) ReadToFile(name string, offset int64, count int64, fi *os.File) (err error)
- func (dl *Datalake) RenameDirectory(source string, target string) error
- func (dl *Datalake) RenameFile(source string, target string) error
- func (dl *Datalake) SetPrefixPath(path string) error
- func (dl *Datalake) SetupPipeline() error
- func (dl *Datalake) StageAndCommit(name string, bol *common.BlockOffsetList) error
- func (dl *Datalake) TestPipeline() error
- func (dl *Datalake) TruncateFile(name string, size int64) error
- func (dl *Datalake) UpdateConfig(cfg AzStorageConfig) error
- func (dl *Datalake) Write(options internal.WriteFileOptions) error
- func (dl *Datalake) WriteFromBuffer(name string, metadata map[string]string, data []byte) error
- func (dl *Datalake) WriteFromFile(name string, metadata map[string]string, fi *os.File) (err error)
Constants ¶
const ( EnvAzStorageAccount = "AZURE_STORAGE_ACCOUNT" EnvAzStorageAccountType = "AZURE_STORAGE_ACCOUNT_TYPE" EnvAzStorageAccessKey = "AZURE_STORAGE_ACCESS_KEY" EnvAzStorageSasToken = "AZURE_STORAGE_SAS_TOKEN" EnvAzStorageIdentityClientId = "AZURE_STORAGE_IDENTITY_CLIENT_ID" EnvAzStorageIdentityResourceId = "AZURE_STORAGE_IDENTITY_RESOURCE_ID" EnvAzStorageIdentityObjectId = "AZURE_STORAGE_IDENTITY_OBJECT_ID" EnvAzStorageSpnTenantId = "AZURE_STORAGE_SPN_TENANT_ID" EnvAzStorageSpnClientId = "AZURE_STORAGE_SPN_CLIENT_ID" EnvAzStorageSpnClientSecret = "AZURE_STORAGE_SPN_CLIENT_SECRET" EnvAzStorageSpnOAuthTokenFilePath = "AZURE_OAUTH_TOKEN_FILE" EnvAzStorageAadEndpoint = "AZURE_STORAGE_AAD_ENDPOINT" EnvAzStorageAuthType = "AZURE_STORAGE_AUTH_TYPE" EnvAzStorageBlobEndpoint = "AZURE_STORAGE_BLOB_ENDPOINT" EnvHttpProxy = "http_proxy" EnvHttpsProxy = "https_proxy" EnvAzStorageAccountContainer = "AZURE_STORAGE_ACCOUNT_CONTAINER" EnvAzAuthResource = "AZURE_STORAGE_AUTH_RESOURCE" )
Environment variable names Here we are not reading MSI_ENDPOINT and MSI_SECRET as they are read by go-sdk directly https://github.com/Azure/go-autorest/blob/a46566dfcbdc41e736295f94e9f690ceaf50094a/autorest/adal/token.go#L788 newServicePrincipalTokenFromMSI : reads them directly from env
const ( Timeout time.Duration = 30 * time.Second KeepAlive time.Duration = 30 * time.Second DualStack bool = true MaxIdleConns int = 0 // No limit MaxIdleConnsPerHost int = 100 IdleConnTimeout time.Duration = 90 * time.Second TLSHandshakeTimeout time.Duration = 10 * time.Second ExpectContinueTimeout time.Duration = 1 * time.Second DisableKeepAlives bool = false DisableCompression bool = false MaxResponseHeaderBytes int64 = 0 )
const ( ErrNoErr uint16 = iota ErrUnknown ErrFileNotFound ErrFileAlreadyExists InvalidRange BlobIsUnderLease InvalidPermission )
----------- Store error code handling ---------------
const DefaultMaxResultsForList int32 = 2
default value for maximum results returned by a list API call
const (
MaxBlocksSize = azblob.BlockBlobMaxStageBlockBytes * azblob.BlockBlobMaxBlocks
)
Variables ¶
var AccessTiers = map[string]azblob.AccessTierType{ "none": azblob.AccessTierNone, "hot": azblob.AccessTierHot, "cool": azblob.AccessTierCool, "archive": azblob.AccessTierArchive, "p4": azblob.AccessTierP4, "p6": azblob.AccessTierP6, "p10": azblob.AccessTierP10, "p15": azblob.AccessTierP15, "p20": azblob.AccessTierP20, "p30": azblob.AccessTierP30, "p40": azblob.AccessTierP40, "p50": azblob.AccessTierP50, "p60": azblob.AccessTierP60, "p70": azblob.AccessTierP70, "p80": azblob.AccessTierP80, }
----------- Blob access tier type conversion ---------------
AccessTierMap : Store config to access tier mapping
var ContentTypes = map[string]string{
".css": "text/css",
".pdf": "application/pdf",
".xml": "text/xml",
".csv": "text/csv",
".json": "application/json",
".rtf": "application/rtf",
".txt": "text/plain",
".java": "text/plain",
".dat": "text/plain",
".htm": "text/html",
".html": "text/html",
".gif": "image/gif",
".jpeg": "image/jpeg",
".jpg": "image/jpeg",
".png": "image/png",
".bmp": "image/bmp",
".js": "application/javascript",
".mjs": "application/javascript",
".svg": "image/svg+xml",
".wasm": "application/wasm",
".webp": "image/webp",
".wav": "audio/wav",
".mp3": "audio/mpeg",
".mpeg": "video/mpeg",
".aac": "audio/aac",
".avi": "video/x-msvideo",
".m3u8": "application/x-mpegURL",
".ts": "video/MP2T",
".mid": "audio/midiaudio/x-midi",
".3gp": "video/3gpp",
".mp4": "video/mp4",
".doc": "application/msword",
".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
".ppt": "application/vnd.ms-powerpoint",
".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
".xls": "application/vnd.ms-excel",
".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
".gz": "application/x-gzip",
".jar": "application/java-archive",
".rar": "application/vnd.rar",
".tar": "application/x-tar",
".zip": "application/x-zip-compressed",
".7z": "application/x-7z-compressed",
".3g2": "video/3gpp2",
".sh": "application/x-sh",
".exe": "application/x-msdownload",
".dll": "application/x-msdownload",
}
ContentTypeMap : Store file extension to content-type mapping
var EAccountType = AccountType(0).INVALID_ACC()
var EAuthType = AuthType(0).INVALID_AUTH()
var ErrStr = map[uint16]string{ ErrNoErr: "No Error found", ErrUnknown: "Unknown store error", ErrFileNotFound: "Blob not found", ErrFileAlreadyExists: "Blob already exists", }
ErrStr : Store error to string mapping
var UserAgent = func() string { return "Azure-Storage-Fuse/" + common.CloudfuseVersion }
Functions ¶
func NewBfsPipeline ¶
func NewBfsPipeline(c azbfs.Credential, o azbfs.PipelineOptions, ro ste.XferRetryOptions) pipeline.Pipeline
NewPipeline creates a Pipeline using the specified credentials and options.
func NewBlobPipeline ¶
func NewBlobPipeline(c azblob.Credential, o azblob.PipelineOptions, ro ste.XferRetryOptions) pipeline.Pipeline
NewPipeline creates a Pipeline using the specified credentials and options.
func NewazstorageComponent ¶
Constructor to create object of this component
func ParseAndReadDynamicConfig ¶
func ParseAndReadDynamicConfig(az *AzStorage, opt AzStorageOptions, reload bool) error
ParseAndReadDynamicConfig : On config change read only the required config
func ParseAndValidateConfig ¶
func ParseAndValidateConfig(az *AzStorage, opt AzStorageOptions) error
ParseAndValidateConfig : Parse and validate config
func RegisterEnvVariables ¶
func RegisterEnvVariables()
RegisterEnvVariables : Register environment varilables
Types ¶
type AccountType ¶
type AccountType int
AccountType Enum
func (AccountType) ADLS ¶
func (AccountType) ADLS() AccountType
func (AccountType) BLOCK ¶
func (AccountType) BLOCK() AccountType
func (AccountType) INVALID_ACC ¶
func (AccountType) INVALID_ACC() AccountType
func (*AccountType) Parse ¶
func (a *AccountType) Parse(s string) error
func (AccountType) String ¶
func (f AccountType) String() string
type AzConnection ¶
type AzConnection interface { Configure(cfg AzStorageConfig) error UpdateConfig(cfg AzStorageConfig) error SetupPipeline() error TestPipeline() error ListContainers() ([]string, error) // This is just for test, shall not be used otherwise SetPrefixPath(string) error CreateFile(name string, mode os.FileMode) error CreateDirectory(name string) error CreateLink(source string, target string) error DeleteFile(name string) error DeleteDirectory(name string) error RenameFile(string, string) error RenameDirectory(string, string) error GetAttr(name string) (attr *internal.ObjAttr, err error) // Standard operations to be supported by any account type List(prefix string, marker *string, count int32) ([]*internal.ObjAttr, *string, error) ReadToFile(name string, offset int64, count int64, fi *os.File) error ReadBuffer(name string, offset int64, length int64) ([]byte, error) ReadInBuffer(name string, offset int64, length int64, data []byte) error WriteFromFile(name string, metadata map[string]string, fi *os.File) error WriteFromBuffer(name string, metadata map[string]string, data []byte) error Write(options internal.WriteFileOptions) error GetFileBlockOffsets(name string) (*common.BlockOffsetList, error) ChangeMod(string, os.FileMode) error ChangeOwner(string, int, int) error TruncateFile(string, int64) error StageAndCommit(name string, bol *common.BlockOffsetList) error NewCredentialKey(_, _ string) error }
func NewAzStorageConnection ¶
func NewAzStorageConnection(cfg AzStorageConfig) AzConnection
NewAzStorageConnection : Based on account type create respective AzConnection Object
type AzStorage ¶
type AzStorage struct { internal.BaseComponent // contains filtered or unexported fields }
AzStorage Wrapper type around azure go-sdk (track-1)
func (*AzStorage) CloseFile ¶
func (az *AzStorage) CloseFile(options internal.CloseFileOptions) error
func (*AzStorage) Configure ¶
Configure : Pipeline will call this method after constructor so that you can read config and initialize yourself
func (*AzStorage) CopyFromFile ¶
func (az *AzStorage) CopyFromFile(options internal.CopyFromFileOptions) error
func (*AzStorage) CopyToFile ¶
func (az *AzStorage) CopyToFile(options internal.CopyToFileOptions) error
func (*AzStorage) CreateDir ¶
func (az *AzStorage) CreateDir(options internal.CreateDirOptions) error
Directory operations
func (*AzStorage) CreateFile ¶
File operations
func (*AzStorage) CreateLink ¶
func (az *AzStorage) CreateLink(options internal.CreateLinkOptions) error
Symlink operations
func (*AzStorage) DeleteDir ¶
func (az *AzStorage) DeleteDir(options internal.DeleteDirOptions) error
func (*AzStorage) DeleteFile ¶
func (az *AzStorage) DeleteFile(options internal.DeleteFileOptions) error
func (*AzStorage) FlushFile ¶
func (az *AzStorage) FlushFile(options internal.FlushFileOptions) error
func (*AzStorage) GetFileBlockOffsets ¶
func (az *AzStorage) GetFileBlockOffsets(options internal.GetFileBlockOffsetsOptions) (*common.BlockOffsetList, error)
func (*AzStorage) IsDirEmpty ¶
func (az *AzStorage) IsDirEmpty(options internal.IsDirEmptyOptions) bool
func (*AzStorage) ListContainers ¶
------------------------- Container listing -------------------------------------------
func (*AzStorage) OnConfigChange ¶
func (az *AzStorage) OnConfigChange()
OnConfigChange : When config file is changed, this will be called by pipeline. Refresh required config here
func (*AzStorage) Priority ¶
func (az *AzStorage) Priority() internal.ComponentPriority
func (*AzStorage) ReadFile ¶
func (az *AzStorage) ReadFile(options internal.ReadFileOptions) (data []byte, err error)
func (*AzStorage) ReadInBuffer ¶
func (az *AzStorage) ReadInBuffer(options internal.ReadInBufferOptions) (length int, err error)
func (*AzStorage) ReadLink ¶
func (az *AzStorage) ReadLink(options internal.ReadLinkOptions) (string, error)
func (*AzStorage) RenameDir ¶
func (az *AzStorage) RenameDir(options internal.RenameDirOptions) error
func (*AzStorage) RenameFile ¶
func (az *AzStorage) RenameFile(options internal.RenameFileOptions) error
func (*AzStorage) SetNextComponent ¶
func (*AzStorage) TruncateFile ¶
func (az *AzStorage) TruncateFile(options internal.TruncateFileOptions) error
type AzStorageConfig ¶
type AzStorageConfig struct { HonourACL bool // contains filtered or unexported fields }
Example for azblob usage : https://godoc.org/github.com/Azure/azure-storage-blob-go/azblob#pkg-examples For methods help refer : https://godoc.org/github.com/Azure/azure-storage-blob-go/azblob#ContainerURL
type AzStorageConnection ¶
type AzStorageConnection struct { Config AzStorageConfig Pipeline pipeline.Pipeline Endpoint *url.URL }
type AzStorageOptions ¶
type AzStorageOptions struct { AccountType string `config:"type" yaml:"type,omitempty"` UseHTTP bool `config:"use-http" yaml:"use-http,omitempty"` AccountName string `config:"account-name" yaml:"account-name,omitempty"` AccountKey string `config:"account-key" yaml:"account-key,omitempty"` SaSKey string `config:"sas" yaml:"sas,omitempty"` ApplicationID string `config:"appid" yaml:"appid,omitempty"` ResourceID string `config:"resid" yaml:"resid,omitempty"` ObjectID string `config:"objid" yaml:"objid,omitempty"` TenantID string `config:"tenantid" yaml:"tenantid,omitempty"` ClientID string `config:"clientid" yaml:"clientid,omitempty"` ClientSecret string `config:"clientsecret" yaml:"clientsecret,omitempty"` OAuthTokenFilePath string `config:"oauth-token-path" yaml:"oauth-token-path,omitempty"` ActiveDirectoryEndpoint string `config:"aadendpoint" yaml:"aadendpoint,omitempty"` Endpoint string `config:"endpoint" yaml:"endpoint,omitempty"` AuthMode string `config:"mode" yaml:"mode,omitempty"` Container string `config:"container" yaml:"container,omitempty"` PrefixPath string `config:"subdirectory" yaml:"subdirectory,omitempty"` BlockSize int64 `config:"block-size-mb" yaml:"block-size-mb,omitempty"` MaxConcurrency uint16 `config:"max-concurrency" yaml:"max-concurrency,omitempty"` DefaultTier string `config:"tier" yaml:"tier,omitempty"` CancelListForSeconds uint16 `config:"block-list-on-mount-sec" yaml:"block-list-on-mount-sec,omitempty"` MaxRetries int32 `config:"max-retries" yaml:"max-retries,omitempty"` MaxTimeout int32 `config:"max-retry-timeout-sec" yaml:"max-retry-timeout-sec,omitempty"` BackoffTime int32 `config:"retry-backoff-sec" yaml:"retry-backoff-sec,omitempty"` MaxRetryDelay int32 `config:"max-retry-delay-sec" yaml:"max-retry-delay-sec,omitempty"` HttpProxyAddress string `config:"http-proxy" yaml:"http-proxy,omitempty"` HttpsProxyAddress string `config:"https-proxy" yaml:"https-proxy,omitempty"` SdkTrace bool `config:"sdk-trace" yaml:"sdk-trace,omitempty"` FailUnsupportedOp bool `config:"fail-unsupported-op" yaml:"fail-unsupported-op,omitempty"` AuthResourceString string `config:"auth-resource" yaml:"auth-resource,omitempty"` UpdateMD5 bool `config:"update-md5" yaml:"update-md5"` ValidateMD5 bool `config:"validate-md5" yaml:"validate-md5"` VirtualDirectory bool `config:"virtual-directory" yaml:"virtual-directory"` MaxResultsForList int32 `config:"max-results-for-list" yaml:"max-results-for-list"` DisableCompression bool `config:"disable-compression" yaml:"disable-compression"` Telemetry string `config:"telemetry" yaml:"telemetry"` HonourACL bool `config:"honour-acl" yaml:"honour-acl"` RestrictedCharsWin bool `config:"restricted-characters-windows" yaml:"-"` // v1 support UseAdls bool `config:"use-adls" yaml:"-"` UseHTTPS bool `config:"use-https" yaml:"-"` SetContentType bool `config:"set-content-type" yaml:"-"` CaCertFile string `config:"ca-cert-file" yaml:"-"` }
type BlockBlob ¶
type BlockBlob struct { AzStorageConnection Auth azAuth Service azblob.ServiceURL Container azblob.ContainerURL // contains filtered or unexported fields }
func (*BlockBlob) ChangeOwner ¶
ChangeOwner : Change owner of a blob
func (*BlockBlob) Configure ¶
func (bb *BlockBlob) Configure(cfg AzStorageConfig) error
func (*BlockBlob) CreateDirectory ¶
CreateDirectory : Create a new directory in the container/virtual directory
func (*BlockBlob) CreateFile ¶
CreateFile : Create a new file in the container/virtual directory
func (*BlockBlob) CreateLink ¶
CreateLink : Create a symlink in the container/virtual directory
func (*BlockBlob) DeleteDirectory ¶
DeleteDirectory : Delete a virtual directory in the container/virtual directory
func (*BlockBlob) DeleteFile ¶
DeleteFile : Delete a blob in the container/virtual directory
func (*BlockBlob) GetFileBlockOffsets ¶
func (bb *BlockBlob) GetFileBlockOffsets(name string) (*common.BlockOffsetList, error)
GetFileBlockOffsets: store blocks ids and corresponding offsets
func (*BlockBlob) List ¶
func (bb *BlockBlob) List(prefix string, marker *string, count int32) ([]*internal.ObjAttr, *string, error)
List : Get a list of blobs matching the given prefix This fetches the list using a marker so the caller code should handle marker logic If count=0 - fetch max entries
func (*BlockBlob) ListContainers ¶
func (*BlockBlob) NewCredentialKey ¶
NewCredentialKey : Update the credential key specified by the user
func (*BlockBlob) ReadBuffer ¶
ReadBuffer : Download a specific range from a blob to a buffer
func (*BlockBlob) ReadInBuffer ¶
ReadInBuffer : Download specific range from a file to a user provided buffer
func (*BlockBlob) ReadToFile ¶
ReadToFile : Download a blob to a local file
func (*BlockBlob) RenameDirectory ¶
RenameDirectory : Rename the directory
func (*BlockBlob) RenameFile ¶
RenameFile : Rename the file
func (*BlockBlob) SetPrefixPath ¶
func (*BlockBlob) SetupPipeline ¶
SetupPipeline : Based on the config setup the ***URLs
func (*BlockBlob) StageAndCommit ¶
func (bb *BlockBlob) StageAndCommit(name string, bol *common.BlockOffsetList) error
func (*BlockBlob) TestPipeline ¶
TestPipeline : Validate the credentials specified in the auth config
func (*BlockBlob) UpdateConfig ¶
func (bb *BlockBlob) UpdateConfig(cfg AzStorageConfig) error
For dynamic config update the config here
func (*BlockBlob) Write ¶
func (bb *BlockBlob) Write(options internal.WriteFileOptions) error
Write : write data at given offset to a blob
func (*BlockBlob) WriteFromBuffer ¶
WriteFromBuffer : Upload from a buffer to a blob
type Datalake ¶
type Datalake struct { AzStorageConnection Auth azAuth Service azbfs.ServiceURL Filesystem azbfs.FileSystemURL BlockBlob BlockBlob }
func (*Datalake) ChangeOwner ¶
ChangeOwner : Change owner of a path
func (*Datalake) Configure ¶
func (dl *Datalake) Configure(cfg AzStorageConfig) error
func (*Datalake) CreateDirectory ¶
CreateDirectory : Create a new directory in the filesystem/directory
func (*Datalake) CreateFile ¶
CreateFile : Create a new file in the filesystem/directory
func (*Datalake) CreateLink ¶
CreateLink : Create a symlink in the filesystem/directory
func (*Datalake) DeleteDirectory ¶
DeleteDirectory : Delete a directory in the filesystem/directory
func (*Datalake) DeleteFile ¶
DeleteFile : Delete a file in the filesystem/directory
func (*Datalake) GetFileBlockOffsets ¶
func (dl *Datalake) GetFileBlockOffsets(name string) (*common.BlockOffsetList, error)
func (*Datalake) List ¶
func (dl *Datalake) List(prefix string, marker *string, count int32) ([]*internal.ObjAttr, *string, error)
List : Get a list of path matching the given prefix This fetches the list using a marker so the caller code should handle marker logic If count=0 - fetch max entries
func (*Datalake) ListContainers ¶
func (*Datalake) NewCredentialKey ¶
NewSASKey : New SAS key provided by user
func (*Datalake) ReadBuffer ¶
ReadBuffer : Download a specific range from a file to a buffer
func (*Datalake) ReadInBuffer ¶
ReadInBuffer : Download specific range from a file to a user provided buffer
func (*Datalake) ReadToFile ¶
ReadToFile : Download a file to a local file
func (*Datalake) RenameDirectory ¶
RenameDirectory : Rename the directory
func (*Datalake) RenameFile ¶
RenameFile : Rename the file
func (*Datalake) SetPrefixPath ¶
func (*Datalake) SetupPipeline ¶
SetupPipeline : Based on the config setup the ***URLs
func (*Datalake) StageAndCommit ¶
func (dl *Datalake) StageAndCommit(name string, bol *common.BlockOffsetList) error
func (*Datalake) TestPipeline ¶
TestPipeline : Validate the credentials specified in the auth config
func (*Datalake) UpdateConfig ¶
func (dl *Datalake) UpdateConfig(cfg AzStorageConfig) error
For dynamic config update the config here
func (*Datalake) Write ¶
func (dl *Datalake) Write(options internal.WriteFileOptions) error
Write : Write to a file at given offset
func (*Datalake) WriteFromBuffer ¶
WriteFromBuffer : Upload from a buffer to a file