-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: indexes to optimize principal-based etag db lookups (#2157)
* fix: indexes to optimize principal-based etag db lookups * chore: fix mempool_txs index and query * fix: force usage of idx_nft_events_optimized index
- Loading branch information
Showing
2 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** @param { import("node-pg-migrate").MigrationBuilder } pgm */ | ||
exports.up = pgm => { | ||
// Indexes used to speed up queries in the `getPrincipalLastActivityTxIds` function: | ||
// https://github.com/hirosystems/stacks-blockchain-api/blob/e3c30c6e0cb14843d5f089b64010d738b0b27763/src/datastore/pg-store.ts#L4440-L4492 | ||
// See issue https://github.com/hirosystems/stacks-blockchain-api/issues/2147 | ||
|
||
pgm.createIndex( | ||
'ft_events', | ||
[ | ||
'sender', | ||
'recipient', | ||
{ name: 'block_height', order: 'DESC' }, | ||
{ name: 'microblock_sequence', order: 'DESC' }, | ||
{ name: 'tx_index', order: 'DESC' }, | ||
{ name: 'event_index', order: 'DESC' } | ||
], | ||
{ | ||
name: 'idx_ft_events_optimized', | ||
where: 'canonical = TRUE AND microblock_canonical = TRUE', | ||
} | ||
); | ||
|
||
pgm.createIndex( | ||
'nft_events', | ||
[ | ||
'sender', | ||
'recipient', | ||
{ name: 'block_height', order: 'DESC' }, | ||
{ name: 'microblock_sequence', order: 'DESC' }, | ||
{ name: 'tx_index', order: 'DESC' }, | ||
{ name: 'event_index', order: 'DESC' } | ||
], | ||
{ | ||
name: 'idx_nft_events_optimized', | ||
where: 'canonical = TRUE AND microblock_canonical = TRUE', | ||
} | ||
); | ||
|
||
pgm.createIndex( | ||
'mempool_txs', | ||
[ | ||
'sender_address', | ||
'sponsor_address', | ||
'token_transfer_recipient_address', | ||
{ name: 'receipt_time', order: 'DESC' } | ||
], | ||
{ | ||
name: 'idx_mempool_txs_optimized', | ||
where: 'pruned = FALSE', | ||
} | ||
); | ||
}; | ||
|
||
/** @param { import("node-pg-migrate").MigrationBuilder } pgm */ | ||
exports.down = pgm => { | ||
pgm.dropIndex('ft_events', ['sender', 'recipient', 'block_height', 'microblock_sequence', 'tx_index', 'event_index'], { name: 'idx_ft_events_optimized' }); | ||
pgm.dropIndex('nft_events', ['sender', 'recipient', 'block_height', 'microblock_sequence', 'tx_index', 'event_index'], { name: 'idx_nft_events_optimized' }); | ||
pgm.dropIndex('mempool_txs', ['sender_address', 'sponsor_address', 'token_transfer_recipient_address', 'receipt_time'], { name: 'idx_mempool_txs_optimized' }); | ||
}; |
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