Retrieves the specified blob from Azure Blob Storage and writes its content to the content of the FlowFile. The processor uses Azure Blob Storage client library v12.
azure, microsoft, cloud, storage, blob
In the list below, the names of required properties appear in bold. Any other properties (not in bold) are considered optional. The table also indicates any default values, and whether a property supports the NiFi Expression Language.
Display Name | API Name | Default Value | Allowable Values | Description |
---|---|---|---|---|
Storage Credentials | storage-credentials-service | Controller Service API: AzureStorageCredentialsService_v12 Implementations: AzureStorageCredentialsControllerService_v12 AzureStorageCredentialsControllerServiceLookup_v12 | Controller Service used to obtain Azure Blob Storage Credentials. | |
Container Name | container-name | ${azure.container} | Name of the Azure storage container. In case of PutAzureBlobStorage processor, container can be created if it does not exist. Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) | |
Blob Name | blob-name | ${azure.blobname} | The full name of the blob Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) | |
Range Start | range-start | The byte position at which to start reading from the blob. An empty value or a value of zero will start reading at the beginning of the blob. Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) | ||
Range Length | range-length | The number of bytes to download from the blob, starting from the Range Start. An empty value or a value that extends beyond the end of the blob will read to the end of the blob. Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) | ||
Proxy Configuration Service | proxy-configuration-service | Controller Service API: ProxyConfigurationService Implementation: StandardProxyConfigurationService | Specifies the Proxy Configuration Controller Service to proxy network requests. Supported proxies: HTTP, SOCKS In case of SOCKS, it is not guaranteed that the selected SOCKS Version will be used by the processor. | |
Client-Side Encryption Key Type | Client-Side Encryption Key Type | NONE |
| Specifies the key type to use for client-side encryption. |
Client-Side Encryption Key ID | Client-Side Encryption Key ID | Specifies the ID of the key to use for client-side encryption. Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) This Property is only considered if the [Client-Side Encryption Key Type] Property has a value of "LOCAL". | ||
Client-Side Encryption Local Key | Client-Side Encryption Local Key | When using local client-side encryption, this is the raw key, encoded in hexadecimal Sensitive Property: true This Property is only considered if the [Client-Side Encryption Key Type] Property has a value of "LOCAL". |
Name | Description |
---|---|
success | All successfully processed FlowFiles are routed to this relationship |
failure | Unsuccessful operations will be transferred to the failure relationship. |
Name | Description |
---|---|
azure.container | The name of the Azure Blob Storage container |
azure.blobname | The name of the blob on Azure Blob Storage |
azure.primaryUri | Primary location of the blob |
azure.etag | ETag of the blob |
azure.blobtype | Type of the blob (either BlockBlob, PageBlob or AppendBlob) |
mime.type | MIME Type of the content |
lang | Language code for the content |
azure.timestamp | Timestamp of the blob |
azure.length | Length of the blob |
ListAzureBlobStorage_v12, PutAzureBlobStorage_v12, DeleteAzureBlobStorage_v12