Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #215 from irisnet/develop
Browse files Browse the repository at this point in the history
R4R: update readme
  • Loading branch information
weichang-x authored Jan 9, 2020
2 parents 4328635 + 601e9d4 commit 5697a75
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,28 @@ run script `mongodb.js` in `mongodb` folder to create database before run projec

### Db config

- DB_ADDR: `required` `string` 数据库连接地址(example: `127.0.0.1:27017, 127.0.0.2:27017, ...`
- DB_USER: `required` `string` 数据库连接用户(example: `user`
- DB_PASSWD: `required` `string` 数据库密码(example: `DB_PASSWD`
- DB_DATABASE:`required` `string` 数据库名称(example:`DB_DATABASE`
- DB_ADDR: `required` `string` mongodb addrs(example: `127.0.0.1:27017, 127.0.0.2:27017, ...`
- DB_USER: `required` `string` mongodb user(example: `user`
- DB_PASSWD: `required` `string` mongodb password(example: `DB_PASSWD`
- DB_DATABASE:`required` `string` mongodb database name(example:`DB_DATABASE`

### Server config

- SER_BC_FULL_NODE: `required` `string` 全节点地址(example: `tcp://127.0.0.1:26657, tcp://127.0.0.2:26657, ...`
- SER_BC_FULL_NODE: `required` `string` full node url(example: `tcp://127.0.0.1:26657, tcp://127.0.0.2:26657, ...`
- SER_BC_CHAIN_ID: `required` `string` chain id(example: `rainbow-dev`
- WORKER_NUM_CREATE_TASK: `required` `string` 执行任务创建的线程数(example: `2`
- WORKER_NUM_EXECUTE_TASK: `required` `string` 执行任务执行的线程数(example: `30`
- WORKER_NUM_CREATE_TASK: `required` `string` num of worker to create tasks(example: `2`
- WORKER_NUM_EXECUTE_TASK: `required` `string` num of worker to execute tasks(example: `30`

- NETWORK: `option` `string` network type(example: `testnet,mainnet`

## Note

If you synchronizes irishub data from specify block height(such as:17908 current time:1576208532)
1. At first, stop the irishub-sync and run follow sql in mongodb

```
db.sync_task.insert({'start_height':NumberLong(17908),'end_height':NumberLong(0),'current_height':NumberLong(0),'status':'unhandled','last_update_time':NumberLong(1576208532)})
```

2. Then, start irishub-sync

- NETWORK: `option` `string` 网络类型(example: `testnet,mainnet`
- CRON_SAVE_VALIDATOR_HISTORY: `option` `string` 保存验证人历史的定时任务(default: `@daily`

0 comments on commit 5697a75

Please sign in to comment.