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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
| package main
import ( "bufio" "bytes" "context" "crypto/tls" "encoding/json" "flag" "fmt" "io" "log" "net/http" "os" "runtime" "strings" "sync" "time"
"github.com/opensearch-project/opensearch-go/v2" "github.com/opensearch-project/opensearch-go/v2/opensearchutil" "github.com/pkg/errors" "github.com/schollz/progressbar/v3" )
var ( verbose *bool docCount int64 )
type GetIndexResponse struct { Aliases map[string]interface{} `json:"aliases"` Mappings map[string]interface{} `json:"mappings"` Settings struct { Index struct { NumberOfShards string `json:"number_of_shards"` RefreshInterval string `json:"refresh_interval"` NumberOfReplicas string `json:"number_of_replicas"` Analysis map[string]interface{} `json:"analysis"` } `json:"index"` } `json:"settings"` }
type Hit struct { ID string `json:"_id"` Source interface{} `json:"_source"` }
type ScrollResponse struct { ScrollID string `json:"_scroll_id"` Took int Hits struct { Total struct { Value int } Hits []Hit } TimedOut bool `json:"timed_out"` }
func main() { sourceURL := flag.String("s", "", "source opensearch instance, ie: http://localhost:9200") targetURL := flag.String("d", "", "target opensearch instance, ie: http://localhost:9201") sourceAuth := flag.String("m", "", "basic auth of source opensearch instance, ie: user:pass") targetAuth := flag.String("n", "", "basic auth of target opensearch instance, ie: user:pass") sourceIndex := flag.String("x", "", "index name to copy, ie: index-name-v1") targetIndex := flag.String("y", "", "index name to save, ie: index-name-v1") query := flag.String("q", "", "query against source opensearch instance, filter data before migrate")
outputFile := flag.String("o", "", "output documents of source index into local file, ie: index-name.json") inputFile := flag.String("i", "", "indexing from local dump file, ie: index-name.json")
verbose = flag.Bool("v", false, "setting log level to debug (default: info)")
flag.Usage = func() { fmt.Fprintf(flag.CommandLine.Output(), "Functions of %s:\n", flag.CommandLine.Name()) fmt.Println(" 1. migrate index docs from source opensearch to target opensearch (auto create target index)") fmt.Println(" 2. backup index docs from source opensearch to local file") fmt.Println(" 3. restore index docs from local file to target opensearch") fmt.Println("Commands:") flag.PrintDefaults() }
flag.Parse()
sourceClient, err := opensearch.NewClient(opensearch.Config{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, }, Addresses: []string{*sourceURL}, Username: strings.Split(*sourceAuth, ":")[0], Password: strings.Join(strings.Split(*sourceAuth, ":")[1:], ""), }) if err != nil { log.Fatalln("cannot initialize source opensearch instance", err) }
targetClient, err := opensearch.NewClient(opensearch.Config{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, }, Addresses: []string{*targetURL}, Username: strings.Split(*targetAuth, ":")[0], Password: strings.Join(strings.Split(*targetAuth, ":")[1:], ""), }) if err != nil { log.Fatalln("cannot initialize target opensearch instance", err) }
var wg sync.WaitGroup wg.Add(2)
documentChan := make(chan interface{})
if *sourceURL != "" && *sourceIndex != "" && *sourceAuth != "" && *targetURL != "" && *targetIndex != "" && *targetAuth != "" { err = createIndex(sourceClient, targetClient, *sourceIndex, *targetIndex) if err != nil { log.Fatal(err) os.Exit(1) } }
if *sourceURL != "" && *sourceIndex != "" && *sourceAuth != "" { go scrollIndex(sourceClient, *sourceIndex, *query, documentChan, &wg) } else if *inputFile != "" { go restoreIndex(*inputFile, documentChan, &wg) }
if *targetURL != "" && *targetIndex != "" && *targetAuth != "" { go bulkIndex(targetClient, *targetIndex, documentChan, &wg) } else if *outputFile != "" { go dumpIndex(*outputFile, documentChan, &wg) }
wg.Wait() }
func createIndex(sourceClient, targetClient *opensearch.Client, sourceIndex, targetIndex string) error { getIndexResp, err := sourceClient.Indices.Get([]string{sourceIndex}, sourceClient.Indices.Get.WithHuman()) if err != nil { return errors.Wrapf(err, "get index") } defer getIndexResp.Body.Close()
resp := map[string]GetIndexResponse{} err = json.NewDecoder(getIndexResp.Body).Decode(&resp) if err != nil { return errors.Wrapf(err, "decode resp") }
if *verbose { log.Println(resp[sourceIndex]) }
var buf bytes.Buffer err = json.NewEncoder(&buf).Encode(resp[sourceIndex]) if err != nil { return errors.Wrapf(err, "encode resp") } createIndexResp, err := targetClient.Indices.Create(targetIndex, targetClient.Indices.Create.WithBody(&buf)) if err != nil { return errors.Wrapf(err, "create index") } defer createIndexResp.Body.Close()
if *verbose { log.Println(createIndexResp) } return nil }
func scrollIndex(client *opensearch.Client, indexName, query string, ch chan interface{}, wg *sync.WaitGroup) error {
defer wg.Done()
resp, err := client.Search( client.Search.WithIndex(indexName), client.Search.WithSize(5000), client.Search.WithBody(strings.NewReader(query)), client.Search.WithScroll(10*time.Minute), client.Search.WithIgnoreUnavailable(true), ) if err != nil { log.Printf("error occurred: [%s]", err.Error()) } defer resp.Body.Close()
var result ScrollResponse err = json.NewDecoder(resp.Body).Decode(&result) if err != nil { return err }
docCount = int64(result.Hits.Total.Value) ch <- docCount bar := progressbar.Default(docCount, "scroll processing") scrollID := result.ScrollID
for { if len(result.Hits.Hits) == 0 { break }
for _, hit := range result.Hits.Hits { bar.Add(1) ch <- hit }
res, err := client.Scroll( client.Scroll.WithContext(context.Background()), client.Scroll.WithScrollID(scrollID), client.Scroll.WithScroll(10*time.Minute), ) if err != nil { log.Fatalf("Error getting response: %s", err) }
defer res.Body.Close() if err := json.NewDecoder(res.Body).Decode(&result); err != nil { return err }
scrollID = result.ScrollID }
clearScrollResponse, err := client.ClearScroll( client.ClearScroll.WithScrollID(scrollID), ) if err != nil { log.Fatalf("Error getting response: %s", err) } if clearScrollResponse.IsError() { log.Printf("Error clearing scroll: %s", clearScrollResponse.String()) } else { }
close(ch)
return nil }
func restoreIndex(fileName string, ch chan interface{}, wg *sync.WaitGroup) error { defer wg.Done()
file, err := os.Open(fileName) if err != nil { return errors.Wrap(err, "Error opening file")
}
var docCount int64 scanner := bufio.NewScanner(file) for scanner.Scan() { docCount++ } if err := scanner.Err(); err != nil { return errors.Wrap(err, "Error reading file") }
defer close(ch)
bar := progressbar.Default(docCount, "restore processing") ch <- docCount
file.Seek(0, 0)
var hit Hit reader := bufio.NewReader(file) for { line, err := reader.ReadBytes('\n') if err != nil { if err == io.EOF { return nil } return err } err = json.Unmarshal(line, &hit) if err != nil { return err } bar.Add(1) ch <- hit } }
func dumpIndex(fileName string, ch chan interface{}, wg *sync.WaitGroup) error { defer wg.Done()
file, err := os.Create(fileName) if err != nil { return errors.Wrap(err, "Error creating file") } defer file.Close()
writer := bufio.NewWriter(file)
docCount := <-ch bar := progressbar.Default(docCount.(int64), "dump processing")
for d := range ch { bar.Add(1) doc, ok := d.(Hit) if !ok { return errors.New("assert error") } docBytes, err := json.Marshal(doc) if err != nil { return err } writer.Write(append(docBytes, '\n')) } return writer.Flush() }
func bulkIndex(client *opensearch.Client, indexName string, ch chan interface{}, wg *sync.WaitGroup) error { defer wg.Done()
indexer, err := opensearchutil.NewBulkIndexer(opensearchutil.BulkIndexerConfig{ Client: client, Index: indexName, NumWorkers: runtime.NumCPU(), FlushBytes: 5e+6, }) if err != nil { log.Fatalf("Error creating the indexer: %s", err) }
docCount := <-ch bar := progressbar.Default(docCount.(int64), "bulk processing")
for d := range ch { bar.Add(1) doc, ok := d.(Hit) if !ok { return errors.New("assert error") } docBytes, err := json.Marshal(doc.Source) if err != nil { return err }
err = indexer.Add( context.Background(), opensearchutil.BulkIndexerItem{ Action: "index",
DocumentID: doc.ID,
Body: bytes.NewReader(docBytes),
OnSuccess: func( ctx context.Context, item opensearchutil.BulkIndexerItem, res opensearchutil.BulkIndexerResponseItem, ) { },
OnFailure: func( ctx context.Context, item opensearchutil.BulkIndexerItem, res opensearchutil.BulkIndexerResponseItem, err error, ) { if err != nil { log.Printf("ERROR: %s", err) } else { log.Printf("ERROR: %s: %s", res.Error.Type, res.Error.Reason) } }, }, ) if err != nil { return errors.Wrapf(err, "add indexer") } }
if err := indexer.Close(context.Background()); err != nil { log.Fatalf("Unexpected error: %s", err) }
stats := indexer.Stats() if stats.NumFailed > 0 { log.Fatalf("Indexed [%d] documents with [%d] errors", stats.NumFlushed, stats.NumFailed) } else { } return nil }
|