Skip to content

Commit

Permalink
chore: Testing batchsize for queue size
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed Aug 2, 2024
1 parent 0ae0f31 commit 6a94332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-cardano-db-hasura/src/Worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ export class Worker {
await this.queue.start()
await this.queue.subscribe<AssetJobPayload, void>(ASSET_METADATA_FETCH_INITIAL,
{
batchSize: 500,
batchSize: 10000,
newJobCheckIntervalSeconds: 5
},
subscriptionHandler)
await this.queue.subscribe<AssetJobPayload, void>(ASSET_METADATA_FETCH_UPDATE,
{
batchSize: 500,
batchSize: 10000,
newJobCheckIntervalSeconds: 5
},
subscriptionHandler)
Expand Down

0 comments on commit 6a94332

Please sign in to comment.