当我尝试更新存储表上的实体时,我收到了一个随机异常。我得到的例外是
System.Data.Services.Client.DataServiceRequestException: An error occurred while processing this request. ---> System.Data.Services.Client.DataServiceClientException: {"odata.error":{"code":"UpdateConditionNotSatisfied","message":{"lang":"en-US","value":"The update condition specified in the request was not satisfied.\nRequestId:2a205f10-0002-013b-028d-0bbec8000000\nTime:2015-10-20T23:17:16.5436755Z"}}} ---
我知道这可能是一个并发问题,但问题是没有其他进程访问该实体。
我不时会收到数十个例外情况,我重新启动服务器并再次开始正常工作。
public static class StorageHelper
{
static TableServiceContext tableContext;
static CloudStorageAccount storageAccount;
static CloudTableClient CloudClient;
static StorageHelper()
{
storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));
CloudClient = storageAccount.CreateCloudTableClient();
tableContext = CloudClient.GetTableServiceContext();
tableContext.IgnoreResourceNotFoundException = true;
}
public static void Save(int myId,string newProperty,string myPartitionKey,string myRowKey){
var entity = (from j in tableContext.CreateQuery<MyEntity>("MyTable")
where j.PartitionKey == myId
select j).FirstOrDefault();
if (entity != null)
{
entity.MyProperty= myProperty;
tableContext.UpdateObject(entity);
tableContext.SaveChanges();
}
else
{
entity = new MyEntity();
entity.PartitionKey =MyPartitionKey;
entity.RowKey =MyRowKey;
entity.MyProperty= myProperty;
tableContext.AddObject("MyTable", entity);
tableContext.SaveChanges();
}
}
答案 0 :(得分:1)
您发布的代码使用的旧表格层现已过时。我们强烈建议您更新到较新版本的存储库并使用新的表层。有关详细信息,请参阅此StackOverflow question。另请注意,如果您使用的是旧版本的存储库,这些将最终停止工作,因为他们正在使用的服务版本将被弃用服务端。
我们不建议客户重复使用TableServiceContext对象,就像在此处所做的那样。它们包含各种跟踪,可能导致性能问题以及其他不利影响。这些限制是我们推荐(如上所述)移动到较新的表层的原因之一。有关详细信息,请参阅how-to。
在表实体update operations上,您必须发送一个指示etag的if-match标头。如果您设置实体的etag值,库将为您设置此项。要更新服务上实体的标签,请使用&#34; *&#34;。
答案 1 :(得分:0)
我建议您可以考虑使用Microsoft企业库中的瞬态故障处理应用程序块,以便在应用程序遇到Azure中的此类暂时性故障时重试,以便在每次发生相同异常时最小化重新启动服务器。
https://msdn.microsoft.com/en-us/library/hh680934(v=pandp.50).aspx
答案 2 :(得分:0)
在更新您的实体时,请设置ETag =&#34; *&#34;。 您修改后的代码应如下所示 -
if (entity != null)
{
entity.MyProperty= "newProperty";
tableContext.UpdateObject(entity);
tableContext.SaveChanges();
}