Skip to content

Instantly share code, notes, and snippets.

View NithinBiliya's full-sized avatar

Nithin Biliya NithinBiliya

View GitHub Profile
@NithinBiliya
NithinBiliya / retryWithCircuitBreaker.js
Created February 24, 2025 13:50
retryWithCircuitBreaker.js
const CircuitBreaker = require('opossum');
const fetch = require('node-fetch');
// Function to fetch data from an API
async function fetchData(url) {
const response = await fetch(url);
if (!response.ok) throw new Error('Request failed');
return await response.json();
}
async function fetchWithRetry(url, retries = 5, baseDelay = 500) {
for (let i = 0; i < retries; i++) {
try {
const response = await fetch(url);
if (!response.ok) throw new Error('Request failed');
return await response.json();
} catch (error) {
const jitter = Math.random() * baseDelay;
const delay = baseDelay * Math.pow(2, i) + jitter;
console.log(`Retry ${i + 1}/${retries} failed. Retrying in ${Math.round(delay)}ms...`);