Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
31d3892d89 | |||
16df5b6b7e | |||
eb97f7b0a3 | |||
5acad1096f | |||
76312a0e56 | |||
f06782bd9d | |||
9c4c7f5690 | |||
8f901f74bd | |||
32384148f2 | |||
6c34ab15b2 | |||
34d1915718 | |||
ef17c78fd0 | |||
887f450cf8 | |||
77f0bbebe2 |
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
@ -13,10 +13,16 @@ jobs:
|
|||||||
pull-requests: write
|
pull-requests: write
|
||||||
repository-projects: write
|
repository-projects: write
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: fill version
|
||||||
|
run: sed -i -E "s/v[0-9]+.[0-9]+.[0-9]+/${{ github.ref_name }}/g" internal/opt/version.go
|
||||||
|
|
||||||
- name: install golang
|
- name: install golang
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: '1.18'
|
||||||
|
|
||||||
- name: build linux amd64
|
- name: build linux amd64
|
||||||
run: CGO_ENABLE=0 GOOS=linux GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_linux_amd64 .
|
run: CGO_ENABLE=0 GOOS=linux GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_linux_amd64 .
|
||||||
@ -27,6 +33,9 @@ jobs:
|
|||||||
- name: build windows amd64
|
- name: build windows amd64
|
||||||
run: CGO_ENABLE=0 GOOS=windows GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_windows_amd64.exe .
|
run: CGO_ENABLE=0 GOOS=windows GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_windows_amd64.exe .
|
||||||
|
|
||||||
|
- name: build windows arm64
|
||||||
|
run: CGO_ENABLE=0 GOOS=windows GOARCH=arm64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_windows_arm64.exe .
|
||||||
|
|
||||||
- name: build darwin amd64
|
- name: build darwin amd64
|
||||||
run: CGO_ENABLE=0 GOOS=darwin GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_darwin_amd64 .
|
run: CGO_ENABLE=0 GOOS=darwin GOARCH=amd64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_darwin_amd64 .
|
||||||
|
|
||||||
@ -34,15 +43,16 @@ jobs:
|
|||||||
run: CGO_ENABLE=0 GOOS=darwin GOARCH=arm64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_darwin_arm64 .
|
run: CGO_ENABLE=0 GOOS=darwin GOARCH=arm64 go build -ldflags='-s -w' -o dist/esgo2dump_${{ github.ref_name }}_darwin_arm64 .
|
||||||
|
|
||||||
- name: create releases
|
- name: create releases
|
||||||
id: create_release
|
id: create_releases
|
||||||
uses: "marvinpinto/action-automatic-releases@latest"
|
uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
with:
|
with:
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
title: "Release_${{ github.ref_name }}"
|
title: "Release_${{ github.ref_name }}"
|
||||||
|
prerelease: false
|
||||||
files: |
|
files: |
|
||||||
dist/esgo2dump_${{ github.ref_name }}_linux_amd64
|
dist/esgo2dump_${{ github.ref_name }}_linux_amd64
|
||||||
dist/esgo2dump_${{ github.ref_name }}_linux_arm64
|
dist/esgo2dump_${{ github.ref_name }}_linux_arm64
|
||||||
dist/esgo2dump_${{ github.ref_name }}_windows_amd64.exe
|
dist/esgo2dump_${{ github.ref_name }}_windows_amd64.exe
|
||||||
dist/esgo2dump_${{ github.ref_name }}_darwin_amd64
|
dist/esgo2dump_${{ github.ref_name }}_windows_arm64.exe
|
||||||
dist/esgo2dump_${{ github.ref_name }}_darwin_amd64
|
dist/esgo2dump_${{ github.ref_name }}_darwin_amd64
|
||||||
dist/esgo2dump_${{ github.ref_name }}_darwin_arm64
|
dist/esgo2dump_${{ github.ref_name }}_darwin_arm64
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ mapping.json
|
|||||||
setting.json
|
setting.json
|
||||||
output.json
|
output.json
|
||||||
*.txt
|
*.txt
|
||||||
|
dist
|
4
go.mod
4
go.mod
@ -1,9 +1,10 @@
|
|||||||
module esgo2dump
|
module github.com/loveuer/esgo2dump
|
||||||
|
|
||||||
go 1.18
|
go 1.18
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/elastic/go-elasticsearch/v7 v7.17.10
|
github.com/elastic/go-elasticsearch/v7 v7.17.10
|
||||||
|
github.com/samber/lo v1.39.0
|
||||||
github.com/sirupsen/logrus v1.9.3
|
github.com/sirupsen/logrus v1.9.3
|
||||||
github.com/spf13/cobra v1.8.0
|
github.com/spf13/cobra v1.8.0
|
||||||
)
|
)
|
||||||
@ -12,5 +13,6 @@ require (
|
|||||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/spf13/pflag v1.0.5 // indirect
|
github.com/spf13/pflag v1.0.5 // indirect
|
||||||
github.com/stretchr/testify v1.8.4 // indirect
|
github.com/stretchr/testify v1.8.4 // indirect
|
||||||
|
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
|
||||||
golang.org/x/sys v0.14.0 // indirect
|
golang.org/x/sys v0.14.0 // indirect
|
||||||
)
|
)
|
||||||
|
4
go.sum
4
go.sum
@ -9,6 +9,8 @@ github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLf
|
|||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||||
|
github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA=
|
||||||
|
github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA=
|
||||||
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
||||||
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
||||||
github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
|
github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
|
||||||
@ -19,6 +21,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
|
|||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
|
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||||
|
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 h1:3MTrJm4PyNL9NBqvYDSj3DHl46qQakyfqfWo4jgfaEM=
|
||||||
|
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE=
|
||||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q=
|
golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q=
|
||||||
golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
|
@ -2,7 +2,8 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"esgo2dump/internal/opt"
|
|
||||||
|
"github.com/loveuer/esgo2dump/internal/opt"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -20,24 +21,36 @@ esgo2dump --input=http://127.0.0.1:9200/some_index --output=http://192.168.1.1:9
|
|||||||
|
|
||||||
esgo2dump --input=https://username:password@127.0.0.1:9200/some_index --output=./data.json
|
esgo2dump --input=https://username:password@127.0.0.1:9200/some_index --output=./data.json
|
||||||
|
|
||||||
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json --query='{"match": {"name": "some_name"}}'`,
|
esgo2dump --input=http://127.0.0.1:9200/some_index --source='id;name;age;address' --output=./data.json
|
||||||
|
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json --query='{"match": {"name": "some_name"}}'
|
||||||
|
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json --query_file=my_queries.json`,
|
||||||
}
|
}
|
||||||
|
|
||||||
f_input string
|
f_input string
|
||||||
f_output string
|
f_output string
|
||||||
f_limit int
|
f_limit int
|
||||||
f_type string
|
f_type string
|
||||||
|
f_source string
|
||||||
f_query string
|
f_query string
|
||||||
|
|
||||||
|
f_query_file string
|
||||||
|
|
||||||
|
f_version bool
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
rootCommand.Flags().BoolVar(&opt.Debug, "debug", false, "")
|
rootCommand.Flags().BoolVar(&opt.Debug, "debug", false, "")
|
||||||
|
rootCommand.Flags().BoolVarP(&f_version, "version", "v", false, "print esgo2dump version")
|
||||||
rootCommand.Flags().IntVar(&opt.Timeout, "timeout", 30, "max timeout seconds per operation with limit")
|
rootCommand.Flags().IntVar(&opt.Timeout, "timeout", 30, "max timeout seconds per operation with limit")
|
||||||
|
|
||||||
rootCommand.Flags().StringVarP(&f_input, "input", "i", "http://127.0.0.1:9200/my_index", "")
|
rootCommand.Flags().StringVarP(&f_input, "input", "i", "", "*required: input file or es url (example :data.json / http://127.0.0.1:9200/my_index)")
|
||||||
rootCommand.Flags().StringVarP(&f_output, "output", "o", "output.json", "")
|
rootCommand.Flags().StringVarP(&f_output, "output", "o", "output.json", "")
|
||||||
rootCommand.Flags().StringVarP(&f_type, "type", "t", "data", "data/mapping/setting")
|
rootCommand.Flags().StringVarP(&f_type, "type", "t", "data", "data/mapping/setting")
|
||||||
|
rootCommand.Flags().StringVarP(&f_source, "source", "s", "", "query source, use ';' to separate")
|
||||||
rootCommand.Flags().StringVarP(&f_query, "query", "q", "", `query dsl, example: {"bool":{"must":[{"term":{"name":{"value":"some_name"}}}],"must_not":[{"range":{"age":{"gte":18,"lt":60}}}]}}`)
|
rootCommand.Flags().StringVarP(&f_query, "query", "q", "", `query dsl, example: {"bool":{"must":[{"term":{"name":{"value":"some_name"}}}],"must_not":[{"range":{"age":{"gte":18,"lt":60}}}]}}`)
|
||||||
|
rootCommand.Flags().StringVar(&f_query_file, "query_file", "", `query json file (will execute line by line)`)
|
||||||
rootCommand.Flags().IntVarP(&f_limit, "limit", "l", 100, "")
|
rootCommand.Flags().IntVarP(&f_limit, "limit", "l", 100, "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,21 +1,46 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
|
||||||
"esgo2dump/internal/interfaces"
|
|
||||||
"esgo2dump/internal/opt"
|
|
||||||
"esgo2dump/internal/xes"
|
|
||||||
"esgo2dump/internal/xfile"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/sirupsen/logrus"
|
|
||||||
"github.com/spf13/cobra"
|
|
||||||
"io"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/loveuer/esgo2dump/internal/interfaces"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/opt"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/xes"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/xfile"
|
||||||
|
"github.com/samber/lo"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func check(cmd *cobra.Command) error {
|
||||||
|
if f_input == "" {
|
||||||
|
return cmd.Help()
|
||||||
|
//return fmt.Errorf("must specify input(example: data.json/http://127.0.0.1:9200/my_index)")
|
||||||
|
}
|
||||||
|
|
||||||
|
if f_limit == 0 || f_limit > 10000 {
|
||||||
|
return fmt.Errorf("invalid limit(1 - 10000)")
|
||||||
|
}
|
||||||
|
|
||||||
|
if f_query != "" && f_query_file != "" {
|
||||||
|
return fmt.Errorf("cannot specify both query and query_file at the same time")
|
||||||
|
}
|
||||||
|
|
||||||
|
switch f_type {
|
||||||
|
case "data", "mapping", "setting":
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("unknown type=%s", f_type)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func run(cmd *cobra.Command, args []string) error {
|
func run(cmd *cobra.Command, args []string) error {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
@ -27,10 +52,13 @@ func run(cmd *cobra.Command, args []string) error {
|
|||||||
logrus.SetLevel(logrus.DebugLevel)
|
logrus.SetLevel(logrus.DebugLevel)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch f_type {
|
if f_version {
|
||||||
case "data", "mapping", "setting":
|
logrus.Infof("esgo2dump (Version: %s)", opt.Version)
|
||||||
default:
|
return nil
|
||||||
return fmt.Errorf("unknown type=%s", f_type)
|
}
|
||||||
|
|
||||||
|
if err = check(cmd); err != nil {
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if ioi, err = newIO(f_input, interfaces.IOInput); err != nil {
|
if ioi, err = newIO(f_input, interfaces.IOInput); err != nil {
|
||||||
@ -46,23 +74,49 @@ func run(cmd *cobra.Command, args []string) error {
|
|||||||
_ = ioo.Close()
|
_ = ioo.Close()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
if (f_query_file != "" || f_query != "") && ioi.IsFile() {
|
||||||
|
return fmt.Errorf("with file input, query or query_file can't be supported")
|
||||||
|
}
|
||||||
|
|
||||||
|
if (f_source != "") && ioi.IsFile() {
|
||||||
|
return fmt.Errorf("with file input, source can't be supported")
|
||||||
|
}
|
||||||
|
|
||||||
switch f_type {
|
switch f_type {
|
||||||
case "data":
|
case "data":
|
||||||
return executeData(cmd.Context(), ioi, ioo)
|
if err = executeData(cmd.Context(), ioi, ioo); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Info("Dump: write data succeed!!!")
|
||||||
|
|
||||||
|
return nil
|
||||||
case "mapping":
|
case "mapping":
|
||||||
var mapping map[string]any
|
var mapping map[string]any
|
||||||
if mapping, err = ioi.ReadMapping(cmd.Context()); err != nil {
|
if mapping, err = ioi.ReadMapping(cmd.Context()); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return ioo.WriteMapping(cmd.Context(), mapping)
|
if err = ioo.WriteMapping(cmd.Context(), mapping); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Info("Dump: write mapping succeed!!!")
|
||||||
|
|
||||||
|
return nil
|
||||||
case "setting":
|
case "setting":
|
||||||
var setting map[string]any
|
var setting map[string]any
|
||||||
if setting, err = ioi.ReadSetting(cmd.Context()); err != nil {
|
if setting, err = ioi.ReadSetting(cmd.Context()); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return ioo.WriteSetting(cmd.Context(), setting)
|
if err = ioo.WriteSetting(cmd.Context(), setting); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Info("Dump: write setting succeed!!!")
|
||||||
|
|
||||||
|
return nil
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unknown type=%s", f_type)
|
return fmt.Errorf("unknown type=%s", f_type)
|
||||||
}
|
}
|
||||||
@ -71,34 +125,138 @@ func run(cmd *cobra.Command, args []string) error {
|
|||||||
func executeData(ctx context.Context, input, output interfaces.DumpIO) error {
|
func executeData(ctx context.Context, input, output interfaces.DumpIO) error {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
|
ch = make(chan []*interfaces.ESSource, 1)
|
||||||
|
errCh = make(chan error)
|
||||||
|
queries = make([]map[string]any, 0)
|
||||||
|
sources = make([]string, 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
if f_source != "" {
|
||||||
|
sources = lo.Map(strings.Split(f_source, ";"), func(item string, idx int) string {
|
||||||
|
return strings.TrimSpace(item)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if f_query != "" {
|
||||||
|
query := make(map[string]any)
|
||||||
|
if err = json.Unmarshal([]byte(f_query), &query); err != nil {
|
||||||
|
return fmt.Errorf("invalid query err=%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
queries = append(queries, query)
|
||||||
|
}
|
||||||
|
|
||||||
|
if f_query_file != "" {
|
||||||
|
var (
|
||||||
|
qf *os.File
|
||||||
|
)
|
||||||
|
|
||||||
|
if qf, err = os.Open(f_query_file); err != nil {
|
||||||
|
return fmt.Errorf("open query_file err=%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
_ = qf.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
scanner := bufio.NewScanner(qf)
|
||||||
|
scanner.Buffer(make([]byte, 1*1024*1024), 5*1024*1024)
|
||||||
|
lineCount := 1
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
oq := make(map[string]any)
|
||||||
|
if err = json.Unmarshal([]byte(line), &oq); err != nil {
|
||||||
|
return fmt.Errorf("query file line=%d invalid err=%v", lineCount, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
queries = append(queries, oq)
|
||||||
|
|
||||||
|
if len(queries) > 10000 {
|
||||||
|
return fmt.Errorf("query_file support max lines=%d", 10000)
|
||||||
|
}
|
||||||
|
|
||||||
|
lineCount++
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(queries) == 0 {
|
||||||
|
queries = append(queries, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
go func(c context.Context) {
|
||||||
|
var (
|
||||||
lines []*interfaces.ESSource
|
lines []*interfaces.ESSource
|
||||||
|
)
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
close(ch)
|
||||||
|
}()
|
||||||
|
|
||||||
|
Loop:
|
||||||
|
for _, query := range queries {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-c.Done():
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
if lines, err = input.ReadData(c, f_limit, query, sources); err != nil {
|
||||||
|
errCh <- err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("executeData: input read_data got lines=%d", len(lines))
|
||||||
|
|
||||||
|
if len(lines) == 0 {
|
||||||
|
input.ResetOffset()
|
||||||
|
if query != nil {
|
||||||
|
bs, _ := json.Marshal(query)
|
||||||
|
logrus.Infof("Dump: query_file query=%s read done!!!", string(bs))
|
||||||
|
}
|
||||||
|
continue Loop
|
||||||
|
}
|
||||||
|
|
||||||
|
ch <- lines
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}(ctx)
|
||||||
|
|
||||||
|
var (
|
||||||
succeed int
|
succeed int
|
||||||
|
total int
|
||||||
|
docs []*interfaces.ESSource
|
||||||
|
ok bool
|
||||||
)
|
)
|
||||||
|
|
||||||
for {
|
for {
|
||||||
|
select {
|
||||||
if lines, err = input.ReadData(ctx, f_limit); err != nil {
|
case <-ctx.Done():
|
||||||
if errors.Is(err, io.EOF) {
|
case err = <-errCh:
|
||||||
return nil
|
return err
|
||||||
}
|
case docs, ok = <-ch:
|
||||||
|
if !ok {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(lines) == 0 {
|
if len(docs) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if succeed, err = output.WriteData(ctx, lines); err != nil {
|
if succeed, err = output.WriteData(ctx, docs); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if succeed != len(lines) {
|
logrus.Debugf("executeData: output write_data succeed lines=%d", succeed)
|
||||||
return fmt.Errorf("cmd.run: got lines=%d, only succeed=%d", len(lines), succeed)
|
|
||||||
|
if succeed != len(docs) {
|
||||||
|
return fmt.Errorf("cmd.run: got lines=%d, only succeed=%d", len(docs), succeed)
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("Dump: %d docs succeed!!!", succeed)
|
total += succeed
|
||||||
|
|
||||||
|
logrus.Infof("Dump: succeed=%d total=%d docs succeed!!!", succeed, total)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,7 +294,7 @@ func newIO(source string, ioType interfaces.IO) (interfaces.DumpIO, error) {
|
|||||||
|
|
||||||
logrus.Debugf("newIO.%s: source as url=%+v", ioType.Code(), *iurl)
|
logrus.Debugf("newIO.%s: source as url=%+v", ioType.Code(), *iurl)
|
||||||
|
|
||||||
return xes.NewClient(iurl, ioType, qm)
|
return xes.NewClient(iurl, ioType)
|
||||||
|
|
||||||
ClientByFile:
|
ClientByFile:
|
||||||
if ioType == interfaces.IOOutput {
|
if ioType == interfaces.IOOutput {
|
||||||
|
@ -3,9 +3,11 @@ package interfaces
|
|||||||
import "context"
|
import "context"
|
||||||
|
|
||||||
type DumpIO interface {
|
type DumpIO interface {
|
||||||
ReadData(context.Context, int) ([]*ESSource, error)
|
ReadData(context.Context, int, map[string]any, []string) ([]*ESSource, error)
|
||||||
WriteData(ctx context.Context, docs []*ESSource) (int, error)
|
WriteData(ctx context.Context, docs []*ESSource) (int, error)
|
||||||
|
|
||||||
|
ResetOffset()
|
||||||
|
|
||||||
ReadMapping(context.Context) (map[string]any, error)
|
ReadMapping(context.Context) (map[string]any, error)
|
||||||
WriteMapping(context.Context, map[string]any) error
|
WriteMapping(context.Context, map[string]any) error
|
||||||
|
|
||||||
|
@ -7,4 +7,7 @@ const (
|
|||||||
var (
|
var (
|
||||||
Debug bool
|
Debug bool
|
||||||
Timeout int
|
Timeout int
|
||||||
|
|
||||||
|
BuffSize = 5 * 1024 * 1024 // 5M
|
||||||
|
MaxBuffSize = 100 * 1024 * 1024 // 100M, default elastic_search doc max size
|
||||||
)
|
)
|
||||||
|
3
internal/opt/version.go
Normal file
3
internal/opt/version.go
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
package opt
|
||||||
|
|
||||||
|
const Version = "v0.1.2"
|
@ -5,48 +5,56 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"esgo2dump/internal/interfaces"
|
|
||||||
"esgo2dump/internal/opt"
|
|
||||||
"esgo2dump/internal/util"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
elastic "github.com/elastic/go-elasticsearch/v7"
|
"net"
|
||||||
"github.com/elastic/go-elasticsearch/v7/esapi"
|
|
||||||
"github.com/elastic/go-elasticsearch/v7/esutil"
|
|
||||||
"github.com/sirupsen/logrus"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
elastic "github.com/elastic/go-elasticsearch/v7"
|
||||||
|
"github.com/elastic/go-elasticsearch/v7/esapi"
|
||||||
|
"github.com/elastic/go-elasticsearch/v7/esutil"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/interfaces"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/opt"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/util"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewClient(url *url.URL, iot interfaces.IO, qm map[string]any) (interfaces.DumpIO, error) {
|
func NewClient(url *url.URL, iot interfaces.IO) (interfaces.DumpIO, error) {
|
||||||
|
|
||||||
var (
|
var (
|
||||||
err error
|
address = fmt.Sprintf("%s://%s", url.Scheme, url.Host)
|
||||||
endpoint = fmt.Sprintf("%s://%s", url.Scheme, url.Host)
|
urlIndex = strings.TrimPrefix(url.Path, "/")
|
||||||
c *elastic.Client
|
urlUsername string
|
||||||
infoResp *esapi.Response
|
urlPassword string
|
||||||
index = strings.TrimPrefix(url.Path, "/")
|
errCh = make(chan error)
|
||||||
username string
|
cliCh = make(chan *elastic.Client)
|
||||||
password string
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if url.User != nil {
|
if url.User != nil {
|
||||||
username = url.User.Username()
|
urlUsername = url.User.Username()
|
||||||
if p, ok := url.User.Password(); ok {
|
if p, ok := url.User.Password(); ok {
|
||||||
password = p
|
urlPassword = p
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Debugf("xes.NewClient: endpoint=%s index=%s (username=%s password=%s)", endpoint, index, username, password)
|
logrus.Debugf("xes.NewClient: endpoint=%s index=%s (username=%s password=%s)", address, urlIndex, urlUsername, urlPassword)
|
||||||
|
|
||||||
if index == "" {
|
if urlIndex == "" {
|
||||||
return nil, fmt.Errorf("please specify index name: (like => http://127.0.0.1:9200/my_index)")
|
return nil, fmt.Errorf("please specify index name: (like => http://127.0.0.1:9200/my_index)")
|
||||||
}
|
}
|
||||||
|
|
||||||
if c, err = elastic.NewClient(
|
ncFunc := func(endpoints []string, username, password, index string) {
|
||||||
|
var (
|
||||||
|
err error
|
||||||
|
cli *elastic.Client
|
||||||
|
infoResp *esapi.Response
|
||||||
|
)
|
||||||
|
|
||||||
|
if cli, err = elastic.NewClient(
|
||||||
elastic.Config{
|
elastic.Config{
|
||||||
Addresses: []string{endpoint},
|
Addresses: endpoints,
|
||||||
Username: username,
|
Username: username,
|
||||||
Password: password,
|
Password: password,
|
||||||
CACert: nil,
|
CACert: nil,
|
||||||
@ -55,32 +63,48 @@ func NewClient(url *url.URL, iot interfaces.IO, qm map[string]any) (interfaces.D
|
|||||||
RetryBackoff: nil,
|
RetryBackoff: nil,
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
||||||
|
DialContext: (&net.Dialer{Timeout: 10 * time.Second}).DialContext,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
); err != nil {
|
); err != nil {
|
||||||
logrus.Debugf("xes.NewClient: elastic new client with endpont=%s err=%v", endpoint, err)
|
logrus.Debugf("xes.NewClient: elastic new client with endpont=%s err=%v", endpoints, err)
|
||||||
return nil, err
|
errCh <- err
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if infoResp, err = c.Info(); err != nil {
|
if infoResp, err = cli.Info(); err != nil {
|
||||||
logrus.Debugf("xes.NewClient: ping err=%v", err)
|
logrus.Debugf("xes.NewClient: ping err=%v", err)
|
||||||
return nil, err
|
errCh <- err
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if infoResp.StatusCode != 200 {
|
if infoResp.StatusCode != 200 {
|
||||||
return nil, fmt.Errorf("info xes status=%d", infoResp.StatusCode)
|
err = fmt.Errorf("info xes status=%d", infoResp.StatusCode)
|
||||||
|
logrus.Debugf("xes.NewClient: status err=%v", err)
|
||||||
|
errCh <- err
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
return &client{c: c, index: index, queryMap: qm, iot: iot}, nil
|
cliCh <- cli
|
||||||
|
}
|
||||||
|
|
||||||
|
go ncFunc([]string{address}, urlUsername, urlPassword, urlIndex)
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-util.Timeout(10).Done():
|
||||||
|
return nil, fmt.Errorf("dial es=%s err=%v", address, context.DeadlineExceeded)
|
||||||
|
case c := <-cliCh:
|
||||||
|
return &client{c: c, index: urlIndex, iot: iot}, nil
|
||||||
|
case e := <-errCh:
|
||||||
|
return nil, e
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type client struct {
|
type client struct {
|
||||||
c *elastic.Client
|
c *elastic.Client
|
||||||
iot interfaces.IO
|
iot interfaces.IO
|
||||||
index string
|
index string
|
||||||
from int
|
|
||||||
scrollId string
|
scrollId string
|
||||||
queryMap map[string]any
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) checkResponse(r *esapi.Response) error {
|
func (c *client) checkResponse(r *esapi.Response) error {
|
||||||
@ -103,11 +127,34 @@ func (c *client) Close() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *client) ResetOffset() {
|
||||||
|
defer func() {
|
||||||
|
c.scrollId = ""
|
||||||
|
}()
|
||||||
|
|
||||||
|
bs, _ := json.Marshal(map[string]string{
|
||||||
|
"scroll_id": c.scrollId,
|
||||||
|
})
|
||||||
|
|
||||||
|
rr, err := c.c.ClearScroll(
|
||||||
|
c.c.ClearScroll.WithContext(util.Timeout(3)),
|
||||||
|
c.c.ClearScroll.WithBody(bytes.NewReader(bs)),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warnf("ResetOffset: clear scroll id=%s err=%v", c.scrollId, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if rr.StatusCode != 200 {
|
||||||
|
logrus.Warnf("ResetOffset: clear scroll id=%s msg=%s", c.scrollId, rr.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (int, error) {
|
func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (int, error) {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
indexer esutil.BulkIndexer
|
indexer esutil.BulkIndexer
|
||||||
count int
|
count int
|
||||||
|
be error
|
||||||
)
|
)
|
||||||
if indexer, err = esutil.NewBulkIndexer(esutil.BulkIndexerConfig{
|
if indexer, err = esutil.NewBulkIndexer(esutil.BulkIndexerConfig{
|
||||||
Client: c.c,
|
Client: c.c,
|
||||||
@ -124,13 +171,14 @@ func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (in
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Debugf("xes.Write: doc content=%s", string(bs))
|
|
||||||
|
|
||||||
if err = indexer.Add(context.Background(), esutil.BulkIndexerItem{
|
if err = indexer.Add(context.Background(), esutil.BulkIndexerItem{
|
||||||
Action: "index",
|
Action: "index",
|
||||||
Index: c.index,
|
Index: c.index,
|
||||||
DocumentID: doc.DocId,
|
DocumentID: doc.DocId,
|
||||||
Body: bytes.NewReader(bs),
|
Body: bytes.NewReader(bs),
|
||||||
|
OnFailure: func(ctx context.Context, item esutil.BulkIndexerItem, item2 esutil.BulkIndexerResponseItem, bulkErr error) {
|
||||||
|
be = bulkErr
|
||||||
|
},
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
@ -141,15 +189,19 @@ func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (in
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if be != nil {
|
||||||
|
return 0, be
|
||||||
|
}
|
||||||
|
|
||||||
stats := indexer.Stats()
|
stats := indexer.Stats()
|
||||||
if stats.NumFailed > 0 {
|
if stats.NumFailed > 0 {
|
||||||
return count, fmt.Errorf("write to xes failed=%d", stats.NumFailed)
|
return count, fmt.Errorf("write to xes failed_count=%d bulk_count=%d", stats.NumFailed, count)
|
||||||
}
|
}
|
||||||
|
|
||||||
return count, nil
|
return count, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) ReadData(ctx context.Context, i int) ([]*interfaces.ESSource, error) {
|
func (c *client) ReadData(ctx context.Context, i int, query map[string]any, source []string) ([]*interfaces.ESSource, error) {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
resp *esapi.Response
|
resp *esapi.Response
|
||||||
@ -162,11 +214,15 @@ func (c *client) ReadData(ctx context.Context, i int) ([]*interfaces.ESSource, e
|
|||||||
c.c.Search.WithIndex(c.index),
|
c.c.Search.WithIndex(c.index),
|
||||||
c.c.Search.WithSize(i),
|
c.c.Search.WithSize(i),
|
||||||
c.c.Search.WithFrom(0),
|
c.c.Search.WithFrom(0),
|
||||||
c.c.Search.WithScroll(time.Duration(opt.ScrollDurationSeconds) * time.Second),
|
c.c.Search.WithScroll(time.Duration(opt.Timeout*2) * time.Second),
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(c.queryMap) > 0 {
|
if len(source) > 0 {
|
||||||
queryBs, _ := json.Marshal(map[string]any{"query": c.queryMap})
|
qs = append(qs, c.c.Search.WithSourceIncludes(source...))
|
||||||
|
}
|
||||||
|
|
||||||
|
if query != nil && len(query) > 0 {
|
||||||
|
queryBs, _ := json.Marshal(map[string]any{"query": query})
|
||||||
qs = append(qs, c.c.Search.WithBody(bytes.NewReader(queryBs)))
|
qs = append(qs, c.c.Search.WithBody(bytes.NewReader(queryBs)))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,7 +246,7 @@ func (c *client) ReadData(ctx context.Context, i int) ([]*interfaces.ESSource, e
|
|||||||
|
|
||||||
if resp, err = c.c.Scroll(
|
if resp, err = c.c.Scroll(
|
||||||
c.c.Scroll.WithScrollID(c.scrollId),
|
c.c.Scroll.WithScrollID(c.scrollId),
|
||||||
c.c.Scroll.WithScroll(time.Duration(opt.ScrollDurationSeconds)*time.Second),
|
c.c.Scroll.WithScroll(time.Duration(opt.Timeout*2)*time.Second),
|
||||||
); err != nil {
|
); err != nil {
|
||||||
return result.Hits.Hits, nil
|
return result.Hits.Hits, nil
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
package xes
|
package xes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"esgo2dump/internal/util"
|
"bufio"
|
||||||
elastic "github.com/elastic/go-elasticsearch/v7"
|
"fmt"
|
||||||
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
elastic "github.com/elastic/go-elasticsearch/v7"
|
||||||
|
"github.com/loveuer/esgo2dump/internal/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetESMapping(t *testing.T) {
|
func TestGetESMapping(t *testing.T) {
|
||||||
@ -36,3 +40,68 @@ func TestGetESMapping(t *testing.T) {
|
|||||||
|
|
||||||
t.Log("get source:", r.String())
|
t.Log("get source:", r.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestScanWithInterrupt(t *testing.T) {
|
||||||
|
filename := "test_scan.txt"
|
||||||
|
f, err := os.OpenFile(filename, os.O_RDWR|os.O_CREATE, 0644)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(1, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
os.Remove(filename)
|
||||||
|
}()
|
||||||
|
f.WriteString(`line 01
|
||||||
|
line 02
|
||||||
|
line 03
|
||||||
|
line 04
|
||||||
|
line 05
|
||||||
|
line 06
|
||||||
|
line 07
|
||||||
|
line 08
|
||||||
|
line 09
|
||||||
|
line 10
|
||||||
|
line 11
|
||||||
|
line 12
|
||||||
|
line 13
|
||||||
|
line 14
|
||||||
|
line 15`)
|
||||||
|
f.Close()
|
||||||
|
|
||||||
|
of, err := os.Open(filename)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(2, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
scanner := bufio.NewScanner(of)
|
||||||
|
|
||||||
|
count := 0
|
||||||
|
for scanner.Scan() {
|
||||||
|
text := scanner.Text()
|
||||||
|
fmt.Printf("[line: %2d] = %s\n", count, text)
|
||||||
|
count++
|
||||||
|
|
||||||
|
if count > 5 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
count = 0
|
||||||
|
for scanner.Scan() {
|
||||||
|
text := scanner.Text()
|
||||||
|
fmt.Printf("[line: %2d] = %s\n", count, text)
|
||||||
|
count++
|
||||||
|
|
||||||
|
if count > 5 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
count = 0
|
||||||
|
for scanner.Scan() {
|
||||||
|
text := scanner.Text()
|
||||||
|
fmt.Printf("[line: %2d] = %s\n", count, text)
|
||||||
|
count++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -4,10 +4,12 @@ import (
|
|||||||
"bufio"
|
"bufio"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"esgo2dump/internal/interfaces"
|
|
||||||
"github.com/sirupsen/logrus"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"github.com/loveuer/esgo2dump/internal/opt"
|
||||||
|
|
||||||
|
"github.com/loveuer/esgo2dump/internal/interfaces"
|
||||||
)
|
)
|
||||||
|
|
||||||
type client struct {
|
type client struct {
|
||||||
@ -84,6 +86,8 @@ func (c *client) IsFile() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *client) ResetOffset() {}
|
||||||
|
|
||||||
func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (int, error) {
|
func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (int, error) {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
@ -108,7 +112,7 @@ func (c *client) WriteData(ctx context.Context, docs []*interfaces.ESSource) (in
|
|||||||
return count, nil
|
return count, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) ReadData(ctx context.Context, i int) ([]*interfaces.ESSource, error) {
|
func (c *client) ReadData(ctx context.Context, i int, _ map[string]any, _ []string) ([]*interfaces.ESSource, error) {
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
count = 0
|
count = 0
|
||||||
@ -118,8 +122,6 @@ func (c *client) ReadData(ctx context.Context, i int) ([]*interfaces.ESSource, e
|
|||||||
for c.scanner.Scan() {
|
for c.scanner.Scan() {
|
||||||
line := c.scanner.Text()
|
line := c.scanner.Text()
|
||||||
|
|
||||||
logrus.Debugf("xfile.Read: line=%s", line)
|
|
||||||
|
|
||||||
item := new(interfaces.ESSource)
|
item := new(interfaces.ESSource)
|
||||||
if err = json.Unmarshal([]byte(line), item); err != nil {
|
if err = json.Unmarshal([]byte(line), item); err != nil {
|
||||||
return list, err
|
return list, err
|
||||||
@ -149,6 +151,8 @@ func NewClient(file *os.File, ioType interfaces.IO) (interfaces.DumpIO, error) {
|
|||||||
|
|
||||||
if ioType == interfaces.IOInput {
|
if ioType == interfaces.IOInput {
|
||||||
c.scanner = bufio.NewScanner(c.f)
|
c.scanner = bufio.NewScanner(c.f)
|
||||||
|
buf := make([]byte, opt.BuffSize)
|
||||||
|
c.scanner.Buffer(buf, opt.MaxBuffSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
return c, nil
|
return c, nil
|
||||||
|
3
main.go
3
main.go
@ -2,10 +2,11 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"esgo2dump/internal/cmd"
|
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
|
"github.com/loveuer/esgo2dump/internal/cmd"
|
||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
41
readme.md
41
readme.md
@ -15,24 +15,37 @@
|
|||||||
|
|
||||||
- download pre-build release:
|
- download pre-build release:
|
||||||
|
|
||||||
[release](https://github.com/loveuer/esgo2dump/releases)
|
[releases](https://github.com/loveuer/esgo2dump/releases)
|
||||||
|
|
||||||
### usage
|
### usage
|
||||||
|
|
||||||
`esgo2dump -h`
|
`esgo2dump -h`
|
||||||
|
|
||||||
|
```bash
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json
|
||||||
|
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=http://192.168.1.1:9200/some_index --limit=5000
|
||||||
|
|
||||||
|
esgo2dump --input=https://username:password@127.0.0.1:9200/some_index --output=./data.json
|
||||||
|
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json --query='{"match": {"name": "some_name"}}'
|
||||||
|
|
||||||
|
esgo2dump --input=http://127.0.0.1:9200/some_index --output=./data.json --query_file=my_queries.json
|
||||||
|
```
|
||||||
|
|
||||||
|
- example_queries.json
|
||||||
|
```json
|
||||||
|
{"bool":{"should":[{"term":{"user_id":{"value":"123"}}},{"term":{"user_id":{"value":"456"}}}]}}
|
||||||
|
{"bool":{"should":[{"term":{"user_id":{"value":"abc"}}},{"term":{"user_id":{"value":"def"}}}]}}
|
||||||
|
{"bool":{"should":[{"term":{"user_id":{"value":"ABC"}}},{"term":{"user_id":{"value":"DEF"}}}]}}
|
||||||
|
```
|
||||||
|
|
||||||
### roadmap
|
### roadmap
|
||||||
|
|
||||||
[*] data dump
|
- [x] data dump
|
||||||
|
- [x] mapping dump
|
||||||
[*] mapping dump
|
- [x] es to file
|
||||||
|
- [x] es to es
|
||||||
[*] es to file
|
- [x] auto create index with mapping
|
||||||
|
- [ ] auto create index with mapping,setting
|
||||||
[*] es to es
|
- [ ] support es8
|
||||||
|
|
||||||
[*] auto create index with mapping
|
|
||||||
|
|
||||||
[ ] auto create index with mapping,setting
|
|
||||||
|
|
||||||
[ ] support es8
|
|
Reference in New Issue
Block a user