An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
Hello and welcome to Microsoft Q&A @Lokesh . My condolences your support ticket didn't give a satiffactory explanation. If you share the ticket number with me, I can take a look.
Taking apart this error, I see several things:
Failed with potential throttling error when accessing AzureBlobFS at side
This would suggest there are so many read/write requests at once, a limit was hit on the storage service. The default maximum request rate per storage account is 20000 requests per second for standard Azure Storage accoutns. For requests on a single blob, 500 requests per second. You can go to the storage account and check the metrics to see if you get anywhere near these.
Usually, it would say "at Source side" or "at Sink side". Just "at side" doesn't seem right.
Operation could not be completed within the specified time
This one is a little more ambiguous. Does it mean the pipeline activity timed out, or some underlying service timed out? If it is the pipeline activity, that happens when none of the retries is successful. How long did this pipeline run? How long did this activity run? This would give better hints.
Operation returned an invalid status code 'InternalServerError
Internal server error is when something breaks server-side and the request cannot be meaningfully completed. The cause behind internal server error is not something I can look into. If you tell me your support ticket number, I can ask them to look into the logs, with that requestID.
Azure.Storage.Data.Models.ErrorSchemaException
This sounds like there is something wrong with the dataset schema.
So if I had to create a story from these errors, I would guess...
You have a forEach loop containing many copy activities running in parallel. There is something corrupted in the schema so the copy fails. The copy activity retries until it times out. However there are so many requests, that some get throttled.