Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
218 views

Using Pentaho Kettle, how do I automatically retry rest requests which fail due to connection hiccups?

How can we make Pentaho retry rest requests on connection errors? We have a Pentaho BI system which, among numerous data sources, is querying a particular REST api for over 20k query variations each ...
5
votes
2answers
275 views

How to implement retry logic with Task Parallel Library(TPl)

I'm looking for a way to implement retry logic in TPL. I would like to have a generic function/class that will be able to return a Task which will execute a given action and in case of an exception ...
4
votes
3answers
171 views

Retry after Exception in Groovy

In Ruby, I can write: begin do_something # exception raised rescue # handles error retry # restart from beginning end Is there something similar in Groovy/Java? I found this but maybe ...
4
votes
3answers
178 views

How do I use Try and Catch to retry an operation in VB.Net?

I'd like to read from a file and if I fail, let the user retry or otherwise give up. So far the code looks like this: Read_Again: Try my_stream.Read(buffer, 0, read_len) Catch ex As ...
4
votes
4answers
1k views

Best practices for handling a web service failure

In an Ajax web app, what do you do when a web service call from the browser to your server fails? Automatically retry, hoping it was an intermittent network failure or server error. (But when you ...
3
votes
3answers
74 views

C# Limit user to filling out form only once

I'm looking to create a simple web form, and I would like to "discourage" users from filling a form out multiple times. The metrics of the form are used for statistical analysis, and each time a user ...
3
votes
1answer
238 views

MySQL JDBC: Is there an option for automatic retry after InnoDB deadlock?

I am Working around MySQL error “Deadlock found when trying to get lock; try restarting transaction” I found out that the transaction can be safely reattempted Deadlocks are not dangerous. Just ...
3
votes
2answers
309 views

Twitter Gem - rescue's to consider?

I'm working with the Twitter Gem and I've created a long running ruby task. I would like it to be able to handle common errors so I'm looking to build a list of those I should consider to protect ...
3
votes
1answer
736 views

How to let NHibernate retry deadlocked transactions when using session per request?

What pattern/architecture do you use in a 3-tiered application using NHibernate that needs to support retries on transaction failures, when you are using the Session-Per-Request pattern? (as ISession ...
2
votes
1answer
24 views

is there any way to continue git fetch from the point where it got failed?

I was cloning the open embedded project yesterday. Because of connection problems, the cloning failed. I started the command again and cloning started from the beginning. I want to know if there is ...
2
votes
3answers
114 views

Java exception handling with retry

Working on a small internet application, I need to deal with a service out-of-service situation. What is a good approach of retry after an exception?
2
votes
3answers
118 views

Restarting transaction in Mysql after deadlock

I am facing a deadlock in my MySQL. How can I configure MySQL to restart transaction automatically when it encounters a deadlock? Thanks in advance.
2
votes
1answer
147 views

TeamCity “Retry on Fail” Build Trigger - Limit retries

I have a build that I know will fail randomly, around 5% of the time. This is due to an external resource that I have no control over. Setting a "Retry on Fail" build trigger is easy enough, except ...
2
votes
1answer
667 views

three20 TTURLRequest resend

I have a REST service that uses an auth_token that expires every so often. when a request fails, I want to re-authenticate (which I'm able to do) and then resend the same exact TTURLRequest in the ...
1
vote
0answers
28 views

Tibco how to get original queue name for undelivered messages in DLQ $sys.undelivered

I am currently designing error handling for unprocessed JMS messages for a customer. Tibco EMS is used as a broker, MDB in Weblogic as consumer. I am evaluating Tibco DLQ capabilities - the ...
1
vote
1answer
71 views

How do I add Retry Logic in NHibernate to handle Transient Failures in SQL Azure?

We have a .NET application that runs on Windows Azure and uses NHibernate to connect to a SQL Azure database. Sometimes it's necessary to add retry logic to handle transient failures in SQL Azure as ...
1
vote
4answers
54 views

Retrying method to call database

Im making a system which should be running 24/7, with timers to control it. There are many calls to the database, and at some point, two methods are trying to open a connection, and one of them will ...
1
vote
0answers
36 views

Examples of handling retry when receiving WCF ServerTooBusyException?

I have searched SO for samples of this but it seems to get very little focus, with most of the focus instead going to "how to get around the 'using' problem' and handling of the typical Expected ...
1
vote
1answer
62 views

gearman and retrying workers with unreliable external dependencies

I'm using gearman to queue a variety of different jobs, some which can always be serviced immediately, and some which can "fail", because they require an unreliable external service. (For example, ...
1
vote
2answers
180 views

Ruby does not 'ensure' when I 'retry' in 'rescue'

Consider this begin-rescue-ensure block: attempts=0 begin make_service_call() rescue Exception retry unless attempts>2 exit -1 ensure attemps += 1 end If you run that code as it is, it ...
1
vote
1answer
204 views

How to implement Ignore/Retry/Cancel pattern for an action?

I have a two layered Windows-Forms application developed by C#.NET 4.0 . In this APP i read a file content and create a list of entities in Data-Access-Layer, and return it to GUI-Layer to show in a ...
1
vote
1answer
77 views

Ruby ActiveRecord Retryable

I am writing a ruby script that connects to an external Database and I am trying to write a retry script that upon disconnect (for whatever god-forsaken reason) will continue retrying to connect for ...
1
vote
1answer
326 views

How To modify Eclipselink JPA 2.0 connection retry behavior

How To modify Eclipselink JPA 2.0 connection retry behavior . Eclipselink automatically tries to reconnect it self to database whenever it detects a connection failure this causes swing ui to freeze ...
1
vote
1answer
216 views

What is a standard retry algorithm for handling server errors?

I'm using Amazon Web Services' PHP SDK for their Flexible Payments System. Somewhere in their API documentation they essentially point out that there may, from time to time, be errors on their end ...
1
vote
1answer
153 views

Google App Engine Request Status

Is it possible to set the http request status to 200 even if the system throws 500? I have a task which is running. When GAE throws http request 500 i want to manually set it to 200 at end of task so ...
1
vote
1answer
210 views

Azure Table Storage RetryPolicy questions

A couple questions on using RetryPolicy with Table Storage, Is it best practice to use RetryPolicy whenever you can, hence use ctx.SaveChangeWithRetries() instead of ctx.SaveChanges() accordingly ...
1
vote
1answer
912 views

retry connection to rate limited URL until successful in Scala

I need make a GET call to a REST api which is rate limited. I can find out what the current rate limit is by making a call and checking the HTTP headers. If I've exceeded my rate limit, I should wait ...
1
vote
1answer
242 views

PHP Retry Script until Success or Error

I'm trying to create a php script which retries another php script up to 3 times until an error is displayed. I'm thinking perhaps this could be done using a php loop? If the code works successfully ...
1
vote
1answer
95 views

Can a app engine task get a count of the number of times it's been run?

I am running thousands of tasks per hour in Google App Engine and around .1% of them are failing even after multiple retries. Ideally, I want them to stop trying and exit. However, due to app engine's ...
1
vote
1answer
41 views

Automatic bookkeeping for exception retries

Do any languages that support retry constructs in exception handling track and expose the number of times their catch/rescue (and/or try/begin) blocks have been executed in a particular run? I find ...
1
vote
1answer
1k views

AXIS2 How to set connection retry?

It seems that the Axis admin client org.apache.axis2.client.ServiceClient is issuing org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry() and the retry is like 3 times by default. Is ...
0
votes
0answers
13 views

Applying Apache Retry-After header on a rolling schedule

I am experiencing server load issues on a public facing site. After investigation it appears that the 'Google Web Preview' bot is consuming a large proportion of the server resources between the ...
0
votes
1answer
43 views

How to make celery retry using the same worker?

I'm just starting out with celery in a Django project, and am kinda stuck at this particular problem: Basically, I need to distribute a long-running task to different workers. The task is actually ...
0
votes
1answer
60 views

When URLConnection timeout occurs, need to try connecting two more times before changing the url and trying again

I need to try connecting to url in the string request_url. If connection timeout occurs, I need to retry 2 more times before calling another url (ans.getUrl(2)) and repeat the same logic. here is my ...
0
votes
1answer
206 views

spring, aop, batch retry, exception: expected single bean but found 0

I changed the code. the reason is bean can not be build. If i don't add the retry, it works. If i don't add the retry, it works. <?xml version="1.0" encoding="UTF-8"?> <beans ...
0
votes
0answers
92 views

Spring batch exponential backoff problem

In Spring batch, I have configured an ExponentialBackOffPolicy for my rety template like this: <bean id="exponentialBackOffPolicy" ...
0
votes
4answers
480 views

Deadlock retry in a transaction

I have C# window service which talks to multiple databases on a MS SQL server. It is multi threaded and has many functions each with long list of database operations, each of these functions run under ...
0
votes
1answer
158 views

How to retry update after OptimisticLockException in the same TX

In my program i need to be able to retry row update after the row was updated by an external transaction. Hibernate/JPA throws OptimisticLockException which i catch. Upon retry i try to re-read the ...
0
votes
1answer
430 views

Java - multiple requests from two WebContainer threads

We are testing a sub-system timeout of 150 seconds. So in my application, the first SOAP request is sent. Then 60 seconds later, another request is sent. My question is where is the other request ...
0
votes
1answer
225 views

PHP Retry Script until Success or Error

Thank you for taking the time to read this and I will appreciate every single response no mater the quality of content. :) I'm trying to create a php script which retries another php script up to 3 ...
0
votes
1answer
210 views

Retries in Java printing?

if you run the following code(from http://www.javacommerce.com/displaypage.jsp?name=printcode.sql&id=18252), both pages are called twice class PrintObject implements Printable { public int print ...
0
votes
1answer
313 views

Automatic retry of failed connection in NHibernate

Is there a way to ask NHibernate to automatically retry failed connections to a database? Specifically, if my network connection is too unreliable, sometimes NH will fail to connect to my remote SQL ...
0
votes
6answers
488 views

PHP OO retry logic implementation and passing dynamic method and args

My first question here. The question is similar to this one: http://stackoverflow.com/questions/712161/php-retrying-a-query-a-set-number-of-times-or-until-success Try till success in OO way. Here ...
0
votes
1answer
1k views

Rhino mocks ordered reply, throw exception problem

I'm trying to implement some retry logic if there is an exception in my code. I've written the code and now I'm trying to get Rhino Mocks to simulate the scenario. The jist of the code is the ...