-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat(iota-data-ingestion-core): add README.md #4570
base: develop
Are you sure you want to change the base?
Conversation
f87059a
to
87708df
Compare
8ab3576
to
8954c0a
Compare
|
||
- **iota-indexer**: The primary function of the indexer is to provide historical data from the ledger, which is crucial for both Explorer and developers who want to utilize ledger data in their applications. By pre-processing and storing this data, the indexer significantly reduces the load on the full node, preventing performance degradation from frequent queries. The data is stored in `PostgreSQL`. | ||
|
||
- **iota-analytics-indexer**: This is a specialized indexer designed to analyze and store key metrics from the IOTA blockchain. It tracks network statistics like transaction volume and throughput, user activity such as the number of active addresses, and the execution of Move calls, providing insights into smart contract usage. The collected data is efficiently stored in Object Storage and subsequently transferred to columnar databases like BigQuery or Snowflake, optimized for analytical queries. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually the analytics indexer is not performing any analysis of the data, It's just exporting all the data for analysis in other tools.
It tracks network statistics like transaction volume and throughput, user activity such as the number of active addresses, and the execution of Move calls
Those are metrics currently computed by iota-indexer
.
They potentially may be computed from the data exported by the analytical-indexer but it's not done currently.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description of change
Investigate the
iota-data-ingestion-core
crate and provide a README.md which explore how it works and its use casesLinks to any relevant issues
fixes #1450
Type of change
Change checklist