Open thojanssens opened 1 year ago
import ky from 'ky';
const response = await ky('https://example.com', {
hooks: {
beforeRetry: [
async ({error}) => {
if (!isNetworkError(error)) {
throw error;
}
}
]
},
retry: {
limit: 2, // Number of retry attempts
methods: ['get'], // Methods to retry
statusCodes: [0] // Include network errors (status code 0)
}
});
However, I think it would be useful if Ky had a retry.shouldRetry
function. Then it could simply be:
import ky from 'ky';
const response = await ky('https://example.com', {
retry: {
shouldRetry: ({error}) => isNetworkError(error)
}
});
I think we should wrap fetch errors in a NetworkError
class when isNetworkError()
returns true
, in order to normalize them and make it more obvious what's going on, since the fetch errors are so inconsistent and vague.
We could potentially also update our retry logic to only retry NetworkError
and HTTPError
, obviating the need for that hook.
However, that does mean that if a new runtime comes along with a different error message unknown to isNetworkError()
, then its network errors would not be retried, which is unfortunate.
An alternative approach would be to detect errors that shouldn't be retried, such as type errors caused by malformed options, and then retry everything else.
It just depends on whether you want to err on the side of retries or not, when the error message is unknown. I would prefer retries, myself.
I think we should wrap fetch errors in a NetworkError class when isNetworkError() returns true
:+1:
We could potentially also update our retry logic to only retry NetworkError and HTTPError, obviating the need for that hook.
That sounds like the most pragmatic solution.
However, that does mean that if a new runtime comes along with a different error message unknown to isNetworkError(), then its network errors would not be retried, which is unfortunate.
Unfortunate yes, but the benefits may outweigh this single downside. New runtimes don't come along every day.
wondering if just setting this obj would retry on failed to fetch errors too (plus default behavior):
retry: {
limit: 2,
statusCodes: [0, 408, 413, 429, 500, 502, 503, 504],
},
I'm assuming that adding 0
will catch those errors (dunno if it will catch others and possible side effects that I am not seeing ATM) and the omitted props will use defaults, am I right @sindresorhus?
@gvillo you shouldn't need that. We currently retry all fetch errors, whether they are network errors or not, unless a response is received with a status code/headers that tell us not to.
What behavior are you seeing exactly?
Basically trying to understand if I have to use is-network-error with ky to stop getting failed to fetch errors, because the readme doesn't say anything avoid it. Sounds great if it retries network errors by default. I'll remove that custom retry config and see how it performs!
Many thanks!
Are you trying to make a cross-origin request? IIRC, some browsers say "Failed to fetch" for CORS errors.
ohh! no no, there is no CORS issue at all. I had no issue at all, I was just asking before implementing Ky, because on the docs there is no mention that the library is retrying on network errors automagically
. So far so good it's working great today (last night I implemented it). I'll post if something comes up! Thank you so much!
well, we got an exception while hitting our API (just 1 error in Sentry), but the error is an empty object. error
is the prop from the catch statement
Any ideas?
Unfortunately, your code is written with (very understandable) false assumptions about JavaScript. 😀
const error = new Error('Something is wrong');
console.log(JSON.stringify(error)); // => "{}"
You cannot serialize errors like that because they have no enumerable properties. Personally, I think this ought to be changed as it's a common footgun, but the Node.js/browser teams would probably say it's too late to change.
I would recommend using error.toString()
instead of JSON.stringify(error)
. That will give you error.name
and error.message
, but not error.stack
or other error properties. Most of the time, that should be sufficient.
cool thank you @sholladay!, it's a TypeError: Failed to fetch
indeed (Instagram browser)
We have these errors happening only occasionally and I'm not able to reproduce these errors.
Is it possible to retry only when errors are network errors: https://github.com/sindresorhus/is-network-error/blob/main/index.js ?
Does anyone know what causes these errors? Is it normal to explicitly catch and handle these specific errors or is it more likely a problem on my app or server? The server is just a Hetzner VPS with very basic configuration, I can't imagine it being that with the popularity that Hetzner has; as to the app, it only happens very occasionally, the same request will succeed after any subsequent attempt.