split database.js

This commit is contained in:
martin-mfg
2025-08-31 14:12:42 +02:00
parent 847176bff4
commit 5440104585
2 changed files with 62 additions and 61 deletions
+2 -61
View File
@@ -1,4 +1,3 @@
import axios from "axios";
import pkg from "pg";
const { Pool } = pkg;
@@ -55,7 +54,7 @@ export async function storeRequest(req) {
/**
* Deletes all requests older than 8 days from the database.
*/
async function deleteOldRequests() {
export async function deleteOldRequests() {
if (!pool) {
return;
}
@@ -72,7 +71,7 @@ async function deleteOldRequests() {
* Fetches all requests which are between 11 hours and 8 days old.
* @returns {Promise<string[]>} Array of all requests between 11 hours and 8 days old.
*/
async function getRecentRequests() {
export async function getRecentRequests() {
if (!pool) {
return [];
}
@@ -87,61 +86,3 @@ async function getRecentRequests() {
const { rows } = await pool.query(query);
return rows.map((row) => row.request);
}
/**
* Processes URLs with a thread pool of given size using axios.get.
* @param {string[]} urls An array of URLs to process.
* @param {number} poolSize The number of concurrent requests to process.
* @returns {Promise<void>} A promise that resolves when all requests are processed.
*/
async function makeRequests(urls, poolSize) {
let current = 0;
/**
* Worker function to process `urls`.
*/
async function worker() {
while (true) {
let idx = current++;
if (idx >= urls.length) {
break;
}
const url = "https://" + process.env.VERCEL_BRANCH_URL + urls[idx];
try {
if (idx % 10 === 0) {
console.log(`Processing request ${idx + 1} out of ${urls.length}`);
}
await axios.get(url, {
timeout: 10000,
headers: { "x-bypass-store": "true" },
});
} catch (err) {
console.error(`Error fetching ${url}:`, err.message);
}
}
}
const workers = [];
for (let i = 0; i < poolSize; i++) {
workers.push(worker());
}
await Promise.all(workers);
}
/**
* Repeats requests made in the last 8 days, excluding those made in the last 11 hours.
*/
export async function repeatRecentRequests() {
if (!pool) {
console.error("Postgres pool is not initialized.");
return;
}
await deleteOldRequests();
const urls = await getRecentRequests();
if (urls.length === 0) {
console.log("No recent requests found.");
} else {
await makeRequests(urls, 5);
}
}
+60
View File
@@ -0,0 +1,60 @@
import axios from "axios";
import { pool, deleteOldRequests, getRecentRequests } from "./common/database.js";
/**
* Processes URLs with a thread pool of given size using axios.get.
* @param {string[]} urls An array of URLs to process.
* @param {number} poolSize The number of concurrent requests to process.
* @returns {Promise<void>} A promise that resolves when all requests are processed.
*/
async function makeRequests(urls, poolSize) {
let current = 0;
/**
* Worker function to process `urls`.
*/
async function worker() {
while (true) {
let idx = current++;
if (idx >= urls.length) {
break;
}
const url = "https://" + process.env.VERCEL_BRANCH_URL + urls[idx];
try {
if (idx % 10 === 0) {
console.log(`Processing request ${idx + 1} out of ${urls.length}`);
}
await axios.get(url, {
timeout: 10000,
headers: { "x-bypass-store": "true" },
});
} catch (err) {
console.error(`Error fetching ${url}:`, err.message);
}
}
}
const workers = [];
for (let i = 0; i < poolSize; i++) {
workers.push(worker());
}
await Promise.all(workers);
}
/**
* Repeats requests made in the last 8 days, excluding those made in the last 11 hours.
*/
export async function repeatRecentRequests() {
if (!pool) {
console.error("Postgres pool is not initialized.");
return;
}
await deleteOldRequests();
const urls = await getRecentRequests();
if (urls.length === 0) {
console.log("No recent requests found.");
} else {
await makeRequests(urls, 5);
}
}