This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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...`); |