Skip to content

Commit

Permalink
refactor: abstract the stats syncer to support general-purpose synchr…
Browse files Browse the repository at this point in the history
…onization workers
  • Loading branch information
PJColombo committed Jun 12, 2024
1 parent 0d8f9b8 commit 4fdbad4
Show file tree
Hide file tree
Showing 47 changed files with 209 additions and 1,211 deletions.
11 changes: 11 additions & 0 deletions .changeset/long-turkeys-impress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@blobscan/rest-api-server": minor
"@blobscan/syncers": minor
---

Refactored the stats syncer package to support general-purpose synchronization workers/queues.

Key changes include:

• Renamed the package to syncers.
• Exported each syncer directly, removing the StatsSyncer managing entity.
3 changes: 1 addition & 2 deletions apps/rest-api-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
"@blobscan/api": "workspace:^0.9.0",
"@blobscan/logger": "workspace:^0.1.0",
"@blobscan/open-telemetry": "workspace:^0.0.7",
"@blobscan/stats-syncer": "workspace:^0.1.8",
"@blobscan/swarm-syncer": "workspace:^0.0.1",
"@blobscan/syncers": "workspace:^0.1.9",
"@blobscan/zod": "workspace:^0.1.0",
"@opentelemetry/instrumentation-express": "^0.33.0",
"@sentry/node": "^7.109.0",
Expand Down
28 changes: 3 additions & 25 deletions apps/rest-api-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,16 @@ import {
gracefulShutdown as apiGracefulShutdown,
} from "@blobscan/api";
import { collectDefaultMetrics } from "@blobscan/open-telemetry";
import { StatsSyncer } from "@blobscan/stats-syncer";
import { SwarmStampSyncer } from "@blobscan/swarm-syncer";

import { env } from "./env";
import { logger } from "./logger";
import { morganMiddleware } from "./morgan";
import { openApiDocument } from "./openapi";
import { getNetworkDencunForkSlot } from "./utils";
import { setUpSyncers } from "./syncers";

collectDefaultMetrics();

const statsSyncer = new StatsSyncer({
redisUri: env.REDIS_URI,
lowestSlot:
env.DENCUN_FORK_SLOT ?? getNetworkDencunForkSlot(env.NETWORK_NAME),
});

statsSyncer.start({
cronPatterns: {
daily: env.STATS_SYNCER_DAILY_CRON_PATTERN,
overall: env.STATS_SYNCER_OVERALL_CRON_PATTERN,
},
});


if (env.SWARM_STORAGE_ENABLED && env.SWARM_BATCH_ID) {
const swarmSyncer = new SwarmStampSyncer({
redisUri: env.REDIS_URI,
env.BEE_ENDPOINT, //FIXME
);
swarmSyncer.start(env.SWARM_SYNCER_CRON);
}
const closeSyncers = setUpSyncers();

const app = express();

Expand Down Expand Up @@ -83,7 +61,7 @@ async function gracefulShutdown(signal: string) {
logger.debug(`Received ${signal}. Shutting down...`);

await apiGracefulShutdown()
.finally(() => statsSyncer.close())
.finally(() => closeSyncers())
.finally(() => {
server.close(() => {
logger.debug("Server shut down successfully");
Expand Down
30 changes: 30 additions & 0 deletions apps/rest-api-server/src/syncers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import {
DailyStatsSyncer,
OverallStatsSyncer,
createRedisConnection,
} from "@blobscan/syncers";

import { env } from "./env";
import { getNetworkDencunForkSlot } from "./utils";

export function setUpSyncers() {
const connection = createRedisConnection(env.REDIS_URI);

const dailyStatsSyncer = new DailyStatsSyncer({
cronPattern: env.STATS_SYNCER_DAILY_CRON_PATTERN,
redisUriOrConnection: connection,
});

const overallStatsSyncer = new OverallStatsSyncer({
cronPattern: env.STATS_SYNCER_OVERALL_CRON_PATTERN,
redisUriOrConnection: connection,
lowestSlot:
env.DENCUN_FORK_SLOT ?? getNetworkDencunForkSlot(env.NETWORK_NAME),
});

Promise.all([dailyStatsSyncer.start(), overallStatsSyncer.start()]);

return () => {
return dailyStatsSyncer.close().finally(() => overallStatsSyncer.close());
};
}
119 changes: 0 additions & 119 deletions packages/stats-syncer/src/PeriodicUpdater.ts

This file was deleted.

84 changes: 0 additions & 84 deletions packages/stats-syncer/src/StatsSyncer.ts

This file was deleted.

21 changes: 0 additions & 21 deletions packages/stats-syncer/src/errors.ts

This file was deleted.

2 changes: 0 additions & 2 deletions packages/stats-syncer/src/index.ts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/stats-syncer/src/logger.ts

This file was deleted.

Loading

0 comments on commit 4fdbad4

Please sign in to comment.