azure storage datalake source Azure Storage Blob Data Lake Source

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Consume files from Azure Storage Blob Data Lake.

Configuration Options

The following table summarizes the configuration options available for the azure-storage-datalake-source Kamelet:

Property Name Description Type Default Example

accountName

Account Name

Required The Azure Storage Blob Data lake account name.

string

clientId

Client Id

Required The Azure Storage Blob Data lake client Id.

string

clientSecret

Client Secret

Required The Azure Storage Blob Data lake client secret.

string

fileSystemName

File System Name

Required The Azure Storage Blob Data lake File system name.

string

tenantId

Tenant Id

Required The Azure Storage Blob Data lake tenant id.

string

credentialType

Credential Type

Determines the credential strategy to adopt.

Enum values:

* CLIENT_SECRET * SHARED_KEY_CREDENTIAL * AZURE_IDENTITY * AZURE_SAS * SERVICE_CLIENT_INSTANCE

string

CLIENT_SECRET

delay

Delay

The number of milliseconds before the next poll of the selected blob.

integer

500

Dependencies

At runtime, the azure-storage-datalake-source Kamelet relies upon the presence of the following dependencies:

  • camel:azure-storage-datalake

  • camel:kamelet

  • camel:core

  • camel:timer

  • mvn:org.apache.camel.kamelets:camel-kamelets-utils:4.6.0-SNAPSHOT

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:azure-storage-datalake-source"
      parameters:
        .
        .
        .
      steps:
        - to:
            uri: "kamelet:log-sink"

You can now run it directly through the following command

camel run route.yaml