Skip to content

Commit

Permalink
Update TSG.md (#1406)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramyaharinarthini authored May 15, 2024
1 parent 5662b0f commit dffacdf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions TSG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ For HNS account, always add `type: adls` under `azstorage` section in your confi

To create a private-endpoint for DFS in Azure portal: Go to your storage account -> Networking -> Private Endpoint connections. Click `+ Private endpoint`, fill in Subscription, Resource Group, Name, Network Interface Name and Region. Click next and under Target sub-resource select `dfs`. Click Virtual network and select virtual network and Subnet. Click DNS. Select Yes for Integrate with private DNS. Select the Subscription and Resource Group for your private link DNS. Select Next, Next and select Create.

**11. Failed to initialize new pipeline [config error in azstorage [account name not provided]]'**

Make sure the configuration file has `azstorage` section in your config file.

The [BlobFuse2 base configuration file](https://github.com/Azure/azure-storage-fuse/blob/main/setup/baseConfig.yaml) contains a list of all settings and a brief explanation of each setting. Use the [sample file cache configuration file](https://github.com/Azure/azure-storage-fuse/blob/main/sampleFileCacheConfig.yaml) or the [sample block cache configuration file](https://github.com/Azure/azure-storage-fuse/blob/main/sampleBlockCacheConfig.yaml) to get started quickly by using some basic settings for each of those scenarios.

# Common Problems after a Successful Mount
**1. Errno 24: Failed to open file /mnt/tmp/root/filex in file cache. errno = 24 OR Too many files Open error**
Errno 24 in Linux corresponds to 'Too many files open' error which can occur when an application opens more files than it is allowed on the system. Blobfuse2 typically allows 20 files less than the ulimit value set in Linux. Usually the Linux limit is 1024 per process (e.g. Blobfuse2 in this case will allow 1004 open file descriptors at a time). Recommended approach is to edit the /etc/security/limits.conf in Ubuntu and add these two lines,
Expand Down

0 comments on commit dffacdf

Please sign in to comment.