We have deployed the application on the Azure. We got an error while calling the Azure tableclient's "UpsertEntityAsync" function. await tableClient.UpsertEntityAsync (entity);
Error Message: Error Message Retry failed after 4 tries. Retry settings can be adjusted in ClientOptions.Retry or by configuring a custom retry policy in ClientOptions.RetryPolicy., StackTrace: at Azure.Core.Pipeline.RetryPolicy.d__5.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Azure.Data.Tables.TableRestClient.d__33.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Azure.Data.Tables.TableClient.d__49`1.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
Please help on this issue.
According to the error, the
UpsertEntityAsync
function from Azure Table Storage is failing because a retry policy exceeded the maximum number of retries. Certain exceptions can be detected and managed during theUpsertEntityAsync
process. To determine the reason for the problem, we can use theRequestFailedException
exception to track the error details.Output: