Skip to content

Commit

Permalink
add tips
Browse files Browse the repository at this point in the history
  • Loading branch information
medcl authored Mar 4, 2022
1 parent 46873ec commit 99b7728
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,22 @@ Bulk 10062602 / 10064570 [==================================================] 9
Migrated 10,000,000 documents within a minute, Nginx log generated from kibana_sample_data_logs.


## Before ESM

Before running the esm, please manually prepare the target index with mapping and optimized settings to improve the speed, for example:

```
PUT your-new-index
{
"settings": {
"index.translog.durability": "async",
"refresh_interval": "-1",
"number_of_shards": 10,
"number_of_replicas": 0
}
}
```

## Example:

copy index `index_name` from `192.168.1.x` to `192.168.1.y:9200`
Expand Down

0 comments on commit 99b7728

Please sign in to comment.