We are moving the data from Azure Table Storage to Azure Data Lake Store with the help of Data Factory. As part of if I have added a linked service which connects to Azure Data Lake Store.
{
"name": "AzureDataLakeStoreLinkedService",
"properties": {
"description": "",
"hubName": "xxxxxxxxxxxxxxxxxxxxxx",
"type": "AzureDataLakeStore",
"typeProperties": {
"dataLakeStoreUri": "https://xxxxxxxxxxxxx.azuredatalakestore.net/webhdfs/v1",
"authorization": "**********",
"sessionId": "**********",
"subscriptionId": "XXXXXXXXXXXXXXXXXXXXXx",
"resourceGroupName": "xxxxxxxxxxxxxxxx"
}
}
}
For this Azure Data Lake Store linked service there is an Authorize button. We Authorized and we are able to move the data successfully to Azure Data Lake Store.
But the problem is after some time the Authorization expiry occurs and the request becomes unauthorized. Then again I need to reauthorize the connection information.
I need to avoid this step, Authorizing the requesting everytime after the timeout. How can do it? Please share any useful links