Azure Data Lake includes all the capabilities required to make it easy for developers, data scientists, and analysts to store data of any size, shape, and speed, and do all types of processing and analytics across platforms and languages. It removes the complexities of ingesting and storing all of your data while making it faster to get up and running with batch, streaming, and interactive analytics.
Getting started
Install the package
The easiest way to acquire the C++ SDK is leveraging vcpkg package manager. See the corresponding Azure SDK for C++ readme section.
To install Azure Storage packages via vcpkg:
vcpkg install azure-storage-files-datalake-cpp
Then, use in your CMake file:
find_package(azure-storage-files-datalake-cpp CONFIG REQUIRED)
target_link_libraries(<your project name> PRIVATE Azure::azure-storage-files-datalake)
Prerequisites
You need an Azure subscription and a Storage Account to use this package.
To create a new Storage Account, you can use the Azure Portal, Azure PowerShell, or the Azure CLI.
Build from Source
First, download the repository to your local folder:
git clone https://github.com/Azure/azure-sdk-for-cpp.git
Create a new folder under the root directory of local cloned repo, switch into this folder and run below commands:
Windows:
cmake .. -A x64
cmake --build . --target azure-storage-files-datalake
or Unix:
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --target azure-storage-files-datalake
Key concepts
DataLake Storage Gen2 was designed to:
- Service multiple petabytes of information while sustaining hundreds of gigabits of throughput
- Allow you to easily manage massive amounts of data
Key Features of DataLake Storage Gen2 include:
- Hadoop compatible access
- A superset of POSIX permissions
- Cost effective in terms of low-cost storage capacity and transactions
- Optimized driver for big data analytics
A fundamental part of Data Lake Storage Gen2 is the addition of a hierarchical namespace to Blob storage. The hierarchical namespace organizes objects/files into a hierarchy of directories for efficient data access.
In the past, cloud-based analytics had to compromise in areas of performance, management, and security. Data Lake Storage Gen2 addresses each of these aspects in the following ways:
- Performance is optimized because you do not need to copy or transform data as a prerequisite for analysis. The hierarchical namespace greatly improves the performance of directory management operations, which improves overall job performance.
- Management is easier because you can organize and manipulate files through directories and subdirectories.
- Security is enforceable because you can define POSIX permissions on directories or individual files.
- Cost effectiveness is made possible as Data Lake Storage Gen2 is built on top of the low-cost Azure Blob storage. The additional features further lower the total cost of ownership for running big data analytics on Azure.
Data Lake Storage Gen2 offers two types of resources:
- The filesystem used via 'DataLakeFileSystemClient'
- The path used via 'DataLakeFileClient' or 'DataLakeDirectoryClient'
ADLS Gen2 | Blob |
Filesystem | Container |
Path (File or Directory) | Blob |
Note: This client library does not support hierarchical namespace (HNS) disabled storage accounts.
Learn more about options for authentication (including Connection Strings, Shared Key, Shared Key Signatures, Active Directory, and anonymous public access) in our samples.
Thread safety
We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.
Additional concepts
Client Options | Accessing the response | Long-running operations | Handling failures
Examples
Appending Data to a DataLake File
const std::string connectionString = "<connection_string>";
const std::string fileSystemName = "sample-filesystem";
const std::string directoryName = "sample-directory";
const std::string fileName = "sample-file";
const std::string localFilePath = "<path_to_local_file>";
DataLakeServiceClient serviceClient = DataLakeServiceClient::CreateFromConnectionString(connectionString);
DataLakeFileSystemClient filesystemClient = serviceClient.GetFileSystemClient(fileSystemName);
filesystemClient.CreateIfNotExists();
DataLakeDirectoryClient directoryClient = filesystemClient.GetDirectoryClient(directoryName);
directoryClient.CreateIfNotExists();
DataLakeFileClient fileClient = directoryClient.GetFileClient(fileName);
fileClient.CreateIfNotExists();
Azure::Core::IO::FileBodyStream fileStream(localFilePath);
fileClient.Append(fileStream, 0);
fileClient.Flush(fileStream.Length());
Reading Data from a DataLake File
Response<DownloadFileResult> fileContents = fileClient.Download();
Enumerating DataLake Paths
for (auto pathPage = client.ListPaths(false); pathPage.HasPage(); pathPage.MoveToNextPage())
{
for (auto& path : pathPage.Paths)
{
std::cout << "path: " << path.Name << std::endl;
}
}
Troubleshooting
All File DataLake service operations will throw a StorageException on failure with helpful ErrorCodes. Many of these errors are recoverable.
try
{
fileSystemClient.Delete();
}
catch (Azure::Storage::StorageException& e)
{
if (e.ErrorCode == "ContainerNotFound")
{
}
else
{
}
}
Next steps
Get started with our DataLake samples:
- Append and read DataLake Files
Contributing
See the Storage CONTRIBUTING.md for details on building, testing, and contributing to these libraries.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit cla.microsoft.com.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.