Bargain Reviews

How To Handle Timeout Error In Ruby On Rails?

face
0
0
24
clicks
Timeout Error is a special case mistake tossed when any square of code takes too long to even think about executing, so it ends its execution by tossing a similar blunder.

This is a typical issue we might have confronted commonly while incorporating outsider APIs. This is on the grounds that at whatever point we send API solicitations to any outsider, we need to hang tight for their reactions.

To deal with such Timeout mistakes, we'll need to get the exemption blunder and afterward handle it appropriately.

Here an example model with require 'timeout':

require 'timeout'

start

status = Timeout::timeout(5) {

# code block that ought to be ended in the event that it requires over 5 seconds...

}

salvage Timeout::Error

puts 'Taking long to execute, exiting...'

end

We'll need to compose our code block inside the timeout block, and can change with whatever number of seconds we need our code to stand by prior to ending its execution.

In the above case, in the event that the code block finishes its execution before 5 seconds, it will return the aftereffect of the square. Furthermore, assuming not, it will end the execution and raise an exemption of timeout.

Retries:

In case we are working with any outsider APIs and confronting timeout mistakes and need to rehash any square of code till it gets executed effectively, then, at that point, we can utilize a jewel called 'retries'.

We can get the diamond with jewel introduce retries or essentially adding pearl "retries" to the Gemfile if utilizing bundler.

Here is an example utilization, how we can attempt it multiple times prior to falling flat:

require 'retries'

with_retries(:max_tries => 3) { # do_the_thing }


Redis:

Redis is likewise the best answer for handle timeouts. It builds the exhibition versatility of the application. Look here for its establishment steps and use cases.

Here is a straightforward illustration of timeout taking care of with Redis:

$redis = Redis.new(:url => '....', :connect_timeout => 5, :timeout => 5)
freebie Freebie
calendar Until 15/10/2021 07:00:00 expired

Share this bargain with your friends:

Comments


Post new comment:

Your name: guest
Hint: Please login or Sign up with the following options:

facebook Google login

or Login | Sign up