Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Historical indexing support for multichain #2493

Open
stwiname opened this issue Jul 21, 2024 · 1 comment
Open

Historical indexing support for multichain #2493

stwiname opened this issue Jul 21, 2024 · 1 comment
Labels
crucial Change worth spreading the news

Comments

@stwiname
Copy link
Collaborator

Background

Currently historical indexing works by having a hidden column on tables with the block height range. This doesn't work for multichain where each chains blocks are produced independently. In order to support historical with multichain we can use a timestamp instead

Requirements

Database changes

  • Option to specify historical indexing unit (block height, timestamp). Timestamp will be forced if multichain is used
  • The appropriate timestamp resolution, some chains only record the timestamp to the nearest second, but something more detailed like down to the MS should probably be used.
  • Timestamps should be stored as a unix timestamp from UTC timezone
  • The query service should not need any changes as queries should be made with unix timestamps

Rewind support

This will be more complex as currently each indexer runs independently.

  • Implement a master "indexer" that initiates the rewind and ensures that other indexers are aware of the rewind. This would mean some form of communication between nodes to notify them. This could also be used to run schema migrations.
  • The ability to find the nearest blocks to a timestamp. Some chains provide a RPC method for this, otherwise a binary search could be used to find the block.

Other considerations/unknowns

  • It could be worth adding another hidden column which is a list of chain ids that have touched a record. This could lead to an optimisation when reindexing a chain or rewinding.
  • What happens if multiple blocks across different chains have different timestamps? This could cause other problems with being deterministic.

Future

Enabling historical indexing for multichain is a step towards enabling more features that are already supported with single chain indexing

@stwiname stwiname added the crucial Change worth spreading the news label Jul 21, 2024
@jiqiang90
Copy link
Contributor

The ability to find the nearest blocks to a timestamp. Some chains provide a RPC method for this, otherwise a binary search could be used to find the block.

My concern is currently indexing for multi chain also didn't following a timestamp order (there is no order), we can add an additional field indexing_order_id to record the indexing order, and we can find the record match network height, remove any record beyond this id

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
crucial Change worth spreading the news
Projects
None yet
Development

No branches or pull requests

2 participants