Questions tagged [transient-failure]

25 questions
0
votes
1 answer

Is there a way to implement a health check service for Eventhub - queue in Azure for resource monitoring

Requirement - From webMethods we are sending event driven messages to Azure Eventhub queues over http. We are looking for an option to have a health check service on the availability of the queue rather than the landing zone to handle transient…
0
votes
1 answer

Transient Fault Rate for Azure Blob Storage

The company I am working for uses Azure Blob Storage for our filesystem and we have found that there is a very high rate of failure because of Connection Refused: On our main PHP application running laravel in swoole we have seen 8 of these errors…
0
votes
1 answer

Cosmos DB: How to retry failures with TransactionalBatch

I have a few stored procedures in Cosmos DB that I'd like to convert to .NET transactions. Recently, I saw this post https://devblogs.microsoft.com/cosmosdb/introducing-transactionalbatch-in-the-net-sdk/ that goes over transaction support. I was…
user246392
  • 2,661
  • 11
  • 54
  • 96
0
votes
1 answer

Strange Behavior with Perl NFS Lock

I am experiencing a weird behavior from File::NFSLock in Perl v5.16. I am using stale lock timeout option as 5minutes. Let's say I have three processes. One of them took more than 5minutes before releasing a lock and process 2 got lock. However,…
Deepanshu Arora
  • 375
  • 1
  • 5
  • 21
0
votes
1 answer

How to handle client response during Transient Exception retrying?

Context I'm developing a REST API that, as you might expect, is backed by multiple external cross-network services, APIs, and databases. It's very possible that a transient failure is encountered at any point and for which the operation should be…
user6233283
0
votes
0 answers

SQL Server Jobs not running - Job Activity Monitor

I have several dozen SQL Server jobs that the Job Activity Monitor displays that do not appear to have been executed. Microsoft SQL Server Management Studio 12.0.6024.0 Microsoft Analysis Services Client Tools …
user3242558
  • 105
  • 1
  • 9
0
votes
2 answers

How do I use Polly for retries and transient fault handling of arbitrary "failure" conditions

I want to use Polly not to check for overt "failures" but rather for other conditions. Specifically, I want to make a single (async) call, for example httpClient.GetAsync(...) which for the purposes of this question I know will succeed - that is,…
Howiecamp
  • 2,981
  • 6
  • 38
  • 59
0
votes
1 answer

How does elastic search brings back a node which is down

I was going through elastic search and wanted to get consistent response from ES clusters. I read Elasticsearch read and write consistency https://www.elastic.co/guide/en/elasticsearch/reference/2.4/docs-index_.html and some other posts and can…
Gopal Shukla
  • 157
  • 1
  • 2
  • 10
0
votes
0 answers

Azure Servicebus: Transient Fault Handling

I have a queue receiver, which reads messages from the queue and process the message (do some processing and inserts some data to the azure table or retrieves the data). What I observed was that any exception that my processing method…
Nishant
  • 407
  • 2
  • 4
  • 12
0
votes
0 answers

Incorrect Mapping Between Classes

I have the following classes: [User] public class User extends BaseObject { private Date birthday; private Robot robot; public Robot getRobot() { return robot; } [Robot] public class Robot { private Date dateOfBuild; …
1
2