We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In bulk_indexer.go, I see logic below:
func (w *worker) run() { go func() { ... if err := w.flush(ctx); err != nil { w.mu.Unlock() if w.bi.config.OnError != nil { w.bi.config.OnError(ctx, err) } continue } ... }() } func (w *worker) flush(ctx context.Context) error { ... if res.IsError() { atomic.AddUint64(&w.bi.stats.numFailed, uint64(len(w.items))) // TODO(karmi): Wrap error (include response struct) if w.bi.config.OnError != nil { w.bi.config.OnError(ctx, fmt.Errorf("flush: %s", err)) } return fmt.Errorf("flush: %s", res.String()) } ... }
When flush fails, bi.config.OnError is called twice. One happens in flush function, and the other in the run function.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In bulk_indexer.go, I see logic below:
When flush fails, bi.config.OnError is called twice. One happens in flush function, and the other in the run function.
The text was updated successfully, but these errors were encountered: