forked from hoffoo/elasticsearch-dump
-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
file.go
158 lines (138 loc) · 3.15 KB
/
file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
Copyright 2016 Medcl (m AT medcl.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"bufio"
"encoding/json"
"github.com/cheggaaa/pb"
log "github.com/cihub/seelog"
"io"
"os"
"strings"
"sync"
)
func checkFileIsExist(filename string) bool {
var exist = true
if _, err := os.Stat(filename); os.IsNotExist(err) {
exist = false
}
return exist
}
func (m *Migrator) NewFileReadWorker(pb *pb.ProgressBar, wg *sync.WaitGroup) {
log.Debug("start reading file")
f, err := os.Open(m.Config.DumpInputFile)
if err != nil {
log.Error(err)
return
}
defer f.Close()
r := bufio.NewReader(f)
lineCount := 0
for {
line, err := r.ReadString('\n')
if io.EOF == err || nil != err {
break
}
lineCount += 1
js := map[string]interface{}{}
err = DecodeJson(line, &js)
if err != nil {
log.Error(err)
continue
}
m.DocChan <- js
pb.Increment()
}
defer f.Close()
log.Debug("end reading file")
close(m.DocChan)
wg.Done()
}
func (c *Migrator) NewFileDumpWorker(pb *pb.ProgressBar, wg *sync.WaitGroup) {
var f *os.File
var err1 error
if checkFileIsExist(c.Config.DumpOutFile) {
flag := os.O_WRONLY
if c.Config.TruncateOutFile {
flag |= os.O_TRUNC
} else {
flag |= os.O_APPEND
}
f, err1 = os.OpenFile(c.Config.DumpOutFile, flag, os.ModeAppend)
if err1 != nil {
log.Error(err1)
return
}
} else {
f, err1 = os.Create(c.Config.DumpOutFile)
if err1 != nil {
log.Error(err1)
return
}
}
w := bufio.NewWriter(f)
skipFields := make([]string, 0)
if len(c.Config.SkipFields) > 0 {
//skip fields
if !strings.Contains(c.Config.SkipFields, ",") {
skipFields = append(skipFields, c.Config.SkipFields)
} else {
fields := strings.Split(c.Config.SkipFields, ",")
for _, field := range fields {
skipFields = append(skipFields, field)
}
}
}
READ_DOCS:
for {
docI, open := <-c.DocChan
// this check is in case the document is an error with scroll stuff
if status, ok := docI["status"]; ok {
if status.(int) == 404 {
log.Error("error: ", docI["response"])
continue
}
}
// sanity check
for _, key := range []string{"_index", "_type", "_source", "_id"} {
if _, ok := docI[key]; !ok {
break READ_DOCS
}
}
for _, key := range skipFields {
if _, found := docI[key]; found {
delete(docI, key)
}
}
jsr, err := json.Marshal(docI)
log.Trace(string(jsr))
if err != nil {
log.Error(err)
}
n, err := w.WriteString(string(jsr))
if err != nil {
log.Error(n, err)
}
w.WriteString("\n")
pb.Increment()
// if channel is closed flush and gtfo
if !open {
goto WORKER_DONE
}
}
WORKER_DONE:
w.Flush()
f.Close()
wg.Done()
log.Debug("file dump finished")
}