From 798d1b8a2d212822d818d4e51457d87666cef099 Mon Sep 17 00:00:00 2001 From: Seonggwon Yoon Date: Fri, 13 Jan 2023 19:45:32 +0900 Subject: [PATCH] Link ETL Repository (#6573) Reconnect broken link for etl --- eth/stagedsync/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eth/stagedsync/README.md b/eth/stagedsync/README.md index 59404be12..c0ff154ed 100644 --- a/eth/stagedsync/README.md +++ b/eth/stagedsync/README.md @@ -45,7 +45,7 @@ state.unwindOrder = []*Stage{ } ``` -## Preprocessing with [ETL](/common/etl/) +## Preprocessing with [ETL](https://github.com/ledgerwatch/erigon-lib/tree/main/etl) Some stages use our ETL framework to sort data by keys before inserting it into the database. @@ -69,7 +69,7 @@ Each stage consists of 2 functions `ExecFunc` that progesses the stage forward a Most of the stages can work offline though it isn't implemented in the current version. -We can add/remove stages, so exact stage numbers may change - but order and names stay the same. +We can add/remove stages, so exact stage numbers may change - but order and names stay the same. ### Stage 1: [Download Headers Stage](/eth/stagedsync/stage_headers.go) @@ -147,7 +147,7 @@ This stage doesn't use a network connection. [TODO] -### Stages [11, 12](/eth/stagedsync/stage_indexes.go), [13](/eth/stagedsync/stage_log_index.go), and [14](/eth/stagedsync/stage_txlookup.go): Generate Indexes +### Stages [11, 12](/eth/stagedsync/stage_indexes.go), [13](/eth/stagedsync/stage_log_index.go), and [14](/eth/stagedsync/stage_txlookup.go): Generate Indexes There are 4 indexes that are generated during sync.