Spaces:
Paused
Paused
File size: 10,501 Bytes
0e759d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | import { logger } from "../../lib/logger";
import { redisConnection } from "../queue-service";
import { supabase_service } from "../supabase";
import * as Sentry from "@sentry/node";
import { Queue } from "bullmq";
import { withAuth } from "../../lib/withAuth";
import { getACUC, setCachedACUC, setCachedACUCTeam } from "../../controllers/auth";
// Configuration constants
const BATCH_KEY = "billing_batch";
const BATCH_LOCK_KEY = "billing_batch_lock";
const BATCH_SIZE = 50; // Batch size for processing
const BATCH_TIMEOUT = 15000; // 15 seconds processing interval
const LOCK_TIMEOUT = 30000; // 30 seconds lock timeout
// Define interfaces for billing operations
interface BillingOperation {
team_id: string;
subscription_id: string | null;
credits: number;
is_extract: boolean;
timestamp: string;
}
// Grouped billing operations for batch processing
interface GroupedBillingOperation {
team_id: string;
subscription_id: string | null;
total_credits: number;
is_extract: boolean;
operations: BillingOperation[];
}
// Function to acquire a lock for batch processing
async function acquireLock(): Promise<boolean> {
const redis = redisConnection;
// Set lock with NX (only if it doesn't exist) and PX (millisecond expiry)
const result = await redis.set(BATCH_LOCK_KEY, "1", "PX", LOCK_TIMEOUT, "NX");
const acquired = result === "OK";
if (acquired) {
logger.info("π Acquired billing batch processing lock");
}
return acquired;
}
// Function to release the lock
async function releaseLock() {
const redis = redisConnection;
await redis.del(BATCH_LOCK_KEY);
logger.info("π Released billing batch processing lock");
}
// Main function to process the billing batch
export async function processBillingBatch() {
const redis = redisConnection;
// Try to acquire lock
if (!(await acquireLock())) {
return;
}
try {
// Get all operations from Redis list
const operations: BillingOperation[] = [];
while (operations.length < BATCH_SIZE) {
const op = await redis.lpop(BATCH_KEY);
if (!op) break;
operations.push(JSON.parse(op));
}
if (operations.length === 0) {
logger.info("No billing operations to process in batch");
return;
}
logger.info(`π¦ Processing batch of ${operations.length} billing operations`);
// Group operations by team_id and subscription_id
const groupedOperations = new Map<string, GroupedBillingOperation>();
for (const op of operations) {
const key = `${op.team_id}:${op.subscription_id ?? 'null'}:${op.is_extract}`;
if (!groupedOperations.has(key)) {
groupedOperations.set(key, {
team_id: op.team_id,
subscription_id: op.subscription_id,
total_credits: 0,
is_extract: op.is_extract,
operations: []
});
}
const group = groupedOperations.get(key)!;
group.total_credits += op.credits;
group.operations.push(op);
}
// Process each group of operations
for (const [key, group] of groupedOperations.entries()) {
logger.info(`π Billing team ${group.team_id} for ${group.total_credits} credits`, {
team_id: group.team_id,
subscription_id: group.subscription_id,
total_credits: group.total_credits,
operation_count: group.operations.length,
is_extract: group.is_extract
});
// Skip billing for preview teams
if (group.team_id === "preview" || group.team_id.startsWith("preview_")) {
logger.info(`Skipping billing for preview team ${group.team_id}`);
continue;
}
try {
// Execute the actual billing
await withAuth(supaBillTeam, { success: true, message: "No DB, bypassed." })(
group.team_id,
group.subscription_id,
group.total_credits,
logger,
group.is_extract
);
logger.info(`β
Successfully billed team ${group.team_id} for ${group.total_credits} ${group.is_extract ? 'tokens' : 'credits'}`);
} catch (error) {
logger.error(`β Failed to bill team ${group.team_id}`, { error, group });
Sentry.captureException(error, {
data: {
operation: "batch_billing",
team_id: group.team_id,
credits: group.total_credits
}
});
}
}
logger.info("β
Billing batch processing completed successfully");
} catch (error) {
logger.error("Error processing billing batch", { error });
Sentry.captureException(error, {
data: {
operation: "batch_billing_process"
}
});
} finally {
await releaseLock();
}
}
// Start periodic batch processing
let batchInterval: NodeJS.Timeout | null = null;
export function startBillingBatchProcessing() {
if (batchInterval) return;
logger.info("π Starting periodic billing batch processing");
batchInterval = setInterval(async () => {
const queueLength = await redisConnection.llen(BATCH_KEY);
logger.info(`Checking billing batch queue (${queueLength} items pending)`);
await processBillingBatch();
}, BATCH_TIMEOUT);
// Unref to not keep process alive
batchInterval.unref();
}
// Add a billing operation to the queue
export async function queueBillingOperation(
team_id: string,
subscription_id: string | null | undefined,
credits: number,
is_extract: boolean = false
) {
// Skip queuing for preview teams
if (team_id === "preview" || team_id.startsWith("preview_")) {
logger.info(`Skipping billing queue for preview team ${team_id}`);
return { success: true, message: "Preview team, no credits used" };
}
logger.info(`Queueing billing operation for team ${team_id}`, {
team_id,
subscription_id,
credits,
is_extract
});
try {
const operation: BillingOperation = {
team_id,
subscription_id: subscription_id ?? null,
credits,
is_extract,
timestamp: new Date().toISOString()
};
// Add operation to Redis list
const redis = redisConnection;
await redis.rpush(BATCH_KEY, JSON.stringify(operation));
const queueLength = await redis.llen(BATCH_KEY);
logger.info(`π₯ Added billing operation to queue (${queueLength} total pending)`, {
team_id,
credits
});
// Start batch processing if not already started
startBillingBatchProcessing();
// If we have enough items, trigger immediate processing
if (queueLength >= BATCH_SIZE) {
logger.info("π Billing queue reached batch size, triggering immediate processing");
await processBillingBatch();
}
// TODO is there a better way to do this?
// Update cached credits used immediately to provide accurate feedback to users
// This is optimistic - actual billing happens in batch
// Should we add this?
// I guess batch is fast enough that it's fine
// if (process.env.USE_DB_AUTHENTICATION === "true") {
// (async () => {
// // Get API keys for this team to update in cache
// const { data } = await supabase_service
// .from("api_keys")
// .select("key")
// .eq("team_id", team_id);
// for (const apiKey of (data ?? []).map(x => x.key)) {
// await setCachedACUC(apiKey, (acuc) =>
// acuc
// ? {
// ...acuc,
// credits_used: acuc.credits_used + credits,
// adjusted_credits_used: acuc.adjusted_credits_used + credits,
// remaining_credits: acuc.remaining_credits - credits,
// }
// : null,
// );
// }
// })().catch(error => {
// logger.error("Failed to update cached credits", { error, team_id });
// });
// }
return { success: true };
} catch (error) {
logger.error("Error queueing billing operation", { error, team_id });
Sentry.captureException(error, {
data: {
operation: "queue_billing",
team_id,
credits
}
});
return { success: false, error };
}
}
// Modified version of the billing function for batch operations
async function supaBillTeam(
team_id: string,
subscription_id: string | null | undefined,
credits: number,
__logger?: any,
is_extract: boolean = false,
) {
const _logger = (__logger ?? logger).child({
module: "credit_billing",
method: "supaBillTeam",
teamId: team_id,
subscriptionId: subscription_id,
credits,
});
if (team_id === "preview" || team_id.startsWith("preview_")) {
return { success: true, message: "Preview team, no credits used" };
}
_logger.info(`Batch billing team ${team_id} for ${credits} credits`);
// Perform the actual database operation
const { data, error } = await supabase_service.rpc("bill_team_4_tally", {
_team_id: team_id,
sub_id: subscription_id ?? null,
fetch_subscription: subscription_id === undefined,
credits,
is_extract_param: is_extract,
});
if (error) {
Sentry.captureException(error);
_logger.error("Failed to bill team.", { error });
return { success: false, error };
}
// Update cached ACUC to reflect the new credit usage
(async () => {
for (const apiKey of (data ?? []).map((x) => x.api_key)) {
await setCachedACUC(apiKey, is_extract, (acuc) =>
acuc
? {
...acuc,
credits_used: acuc.credits_used + credits,
adjusted_credits_used: acuc.adjusted_credits_used + credits,
remaining_credits: acuc.remaining_credits - credits,
}
: null,
);
await setCachedACUCTeam(team_id, is_extract, (acuc) =>
acuc
? {
...acuc,
credits_used: acuc.credits_used + credits,
adjusted_credits_used: acuc.adjusted_credits_used + credits,
remaining_credits: acuc.remaining_credits - credits,
}
: null,
);
}
})().catch(error => {
_logger.error("Failed to update cached credits", { error, team_id });
});
return { success: true, data };
}
// Cleanup on exit
process.on("beforeExit", async () => {
if (batchInterval) {
clearInterval(batchInterval);
batchInterval = null;
logger.info("Stopped periodic billing batch processing");
}
await processBillingBatch();
}); |