Reputation: 436
Hi i analyze system log using Azure Data Lake Analysis.
And, i meet a problem that connect Blob Storage from Data Lake Analysis(U-SQL)
This U-SQL shows that read file from blob storage
Before launching this U-SQL, I create test2 blob storage and testcon container
(and set access policy)
@searchlog =
EXTRACT UserId int,
Start DateTime,
Region string,
Query string,
Duration int,
Urls string,
ClickedUrls string
FROM @"wasb://testcon@test2/SearchLog.tsv"
USING Extractors.Tsv();
But i meet a exception.
Error
E_STORE_USER_FAILURE
Message
Secret not found for the specified user account Cosmos Path: wasb://testcon@test2/SearchLog.tsv
How can i solve this problem?
Upvotes: 0
Views: 1322
Reputation: 657
Ensure that your Windows Azure Blob Storage account is registered with your Azure Data Lake Analytics account. I have copied the steps below from Registering Your Windows Azure Blob Storage account.
Upvotes: 2