37 lines
604 B
Go
37 lines
604 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
|
||
|
"fmt"
|
||
|
|
||
|
"gitea.difrex.ru/Umbrella/fetcher/i2es"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
es, index, esType string
|
||
|
step int
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
flag.StringVar(&es, "es", "http://127.0.0.1:9200", "Elasticsearch URL")
|
||
|
flag.StringVar(&index, "index", "idec", "Elasticsearch index")
|
||
|
flag.StringVar(&esType, "esType", "post", "Elasticsearch document type")
|
||
|
flag.IntVar(&step, "step", 100, "Scroll step")
|
||
|
flag.Parse()
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
conf := Conf{
|
||
|
ES: i2es.ESConf{
|
||
|
Host: es,
|
||
|
Index: index,
|
||
|
Type: esType,
|
||
|
},
|
||
|
Step: step,
|
||
|
}
|
||
|
|
||
|
count := conf.getDocsCount()
|
||
|
fmt.Println(count)
|
||
|
}
|