BhaskaranR / hyperion-history-api

Scalable Full History API Solution for EOSIO based blockchains

Home Page:https://hyperion.docs.eosrio.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hyperion History API


Scalable Full History API Solution for EOSIO based blockchains

Made with by EOS Rio

Official documentation: https://hyperion.docs.eosrio.io/

1. Overview

Hyperion is a full history solution for indexing, storing and retrieving EOSIO blockchain`s historical data. EOSIO protocol is highly scalable reaching up to tens of thousands of transactions per second demanding high performance indexing and optimized storage and querying solutions. Hyperion is developed to tackle those challenges providing open source software to be operated by block producers, infrastructure providers and dApp developers.

Focused on delivering faster search times, lower bandwidth overhead and easier usability for UI/UX developers, Hyperion implements an improved data structure actions are stored in a flattened format a parent field is added to the inline actions to point to the parent global sequence if the inline action data is identical to the parent it is considered a notification and thus removed from the database no blocks or transaction data is stored, all information can be reconstructed from actions

2. Architecture

The following components are required in order to have a fully functional Hyperion API deployment, for small use cases its fine to run all components on a single machine. But for larger chains and production environments we recommend setting them up into different servers under a high-speed local network.

2.1 - Elasticsearch Cluster

The ES cluster is responsible for storing all indexed data. Direct access to the Hyperion API and Indexer must be provided. We recommend nodes in the cluster to have at least 32GB of RAM and 8 cpu cores. SSD/NVME drives are recommended for maximum indexing throughput. For production environments a multi-node cluster is highly recommended.

2.2 - Hyperion Indexer

The Indexer is a Node.js based app that process data from the state history plugin and allows it to be indexed. The PM2 process manager is used to launch and operate the indexer. The configuration flexibility is very extensive, so system recommendations will depend on the use case and data load. It will require access to at least one ES node, RabbitMQ and the state history node.

2.3 - Hyperion API

Parallelizable API server that provides the V2 and V1 (legacy history plugin) endpoints. It is launched by PM2 and can also operate in cluster mode. It requires direct access to at least one ES node for the queries and all other services for full healthcheck

2.4 - RabbitMQ

Use as messaging queue and data transport between the indexer stages

2.5 - EOSIO State History

Nodeos plugin used to collect action traces and state deltas. Provides data via websocket to the indexer

3. How to use

3.1 For Providers

3.2 For Developers

About

Scalable Full History API Solution for EOSIO based blockchains

https://hyperion.docs.eosrio.io/

License:Other


Languages

Language:TypeScript 76.6%Language:JavaScript 12.3%Language:HTML 6.0%Language:Shell 2.7%Language:CSS 2.2%Language:Dockerfile 0.1%Language:SCSS 0.1%