2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-02-25 21:01:13 -05:00
|
|
|
|
|
|
|
package target
|
|
|
|
|
|
|
|
import (
|
2019-10-11 20:46:03 -04:00
|
|
|
"context"
|
2019-02-25 21:01:13 -05:00
|
|
|
"errors"
|
2019-04-10 08:46:01 -04:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2019-07-05 05:51:41 -04:00
|
|
|
"syscall"
|
2019-04-10 08:46:01 -04:00
|
|
|
"time"
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/event"
|
2022-07-27 12:44:59 -04:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2019-02-25 21:01:13 -05:00
|
|
|
)
|
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
const retryInterval = 3 * time.Second
|
|
|
|
|
|
|
|
// errNotConnected - indicates that the target connection is not active.
|
|
|
|
var errNotConnected = errors.New("not connected to target server/service")
|
2019-02-25 21:01:13 -05:00
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
// errLimitExceeded error is sent when the maximum limit is reached.
|
|
|
|
var errLimitExceeded = errors.New("the maximum store limit reached")
|
|
|
|
|
2019-02-25 21:01:13 -05:00
|
|
|
// Store - To persist the events.
|
|
|
|
type Store interface {
|
|
|
|
Put(event event.Event) error
|
|
|
|
Get(key string) (event.Event, error)
|
2019-10-11 20:46:03 -04:00
|
|
|
List() ([]string, error)
|
2019-04-10 08:46:01 -04:00
|
|
|
Del(key string) error
|
2019-02-25 21:01:13 -05:00
|
|
|
Open() error
|
|
|
|
}
|
2019-04-10 08:46:01 -04:00
|
|
|
|
|
|
|
// replayEvents - Reads the events from the store and replays.
|
2022-09-27 20:23:28 -04:00
|
|
|
func replayEvents(store Store, doneCh <-chan struct{}, loggerOnce logger.LogOnce, id string) <-chan string {
|
2019-04-10 08:46:01 -04:00
|
|
|
eventKeyCh := make(chan string)
|
|
|
|
|
|
|
|
go func() {
|
2022-07-27 12:44:59 -04:00
|
|
|
defer close(eventKeyCh)
|
|
|
|
|
2019-10-11 20:46:03 -04:00
|
|
|
retryTicker := time.NewTicker(retryInterval)
|
|
|
|
defer retryTicker.Stop()
|
2022-07-27 12:44:59 -04:00
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
for {
|
2019-10-11 20:46:03 -04:00
|
|
|
names, err := store.List()
|
2022-07-27 12:44:59 -04:00
|
|
|
if err != nil {
|
2022-09-27 20:23:28 -04:00
|
|
|
loggerOnce(context.Background(), fmt.Errorf("eventStore.List() failed with: %w", err), id)
|
2022-07-27 12:44:59 -04:00
|
|
|
} else {
|
2019-10-11 20:46:03 -04:00
|
|
|
for _, name := range names {
|
|
|
|
select {
|
|
|
|
case eventKeyCh <- strings.TrimSuffix(name, eventExt):
|
2022-07-27 12:44:59 -04:00
|
|
|
// Get next key.
|
2019-10-11 20:46:03 -04:00
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
2019-04-10 08:46:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-27 12:44:59 -04:00
|
|
|
select {
|
|
|
|
case <-retryTicker.C:
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
2019-04-10 08:46:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return eventKeyCh
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:22:08 -04:00
|
|
|
// IsConnRefusedErr - To check fot "connection refused" error.
|
|
|
|
func IsConnRefusedErr(err error) bool {
|
2019-10-11 20:46:03 -04:00
|
|
|
return errors.Is(err, syscall.ECONNREFUSED)
|
2019-07-23 13:22:08 -04:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:55:48 -04:00
|
|
|
// IsConnResetErr - Checks for connection reset errors.
|
|
|
|
func IsConnResetErr(err error) bool {
|
|
|
|
if strings.Contains(err.Error(), "connection reset by peer") {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
// incase if error message is wrapped.
|
2019-10-11 20:46:03 -04:00
|
|
|
return errors.Is(err, syscall.ECONNRESET)
|
2019-07-05 05:51:41 -04:00
|
|
|
}
|
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
// sendEvents - Reads events from the store and re-plays.
|
2022-07-27 12:44:59 -04:00
|
|
|
func sendEvents(target event.Target, eventKeyCh <-chan string, doneCh <-chan struct{}, loggerOnce logger.LogOnce) {
|
2019-10-11 20:46:03 -04:00
|
|
|
retryTicker := time.NewTicker(retryInterval)
|
|
|
|
defer retryTicker.Stop()
|
2019-04-10 08:46:01 -04:00
|
|
|
|
|
|
|
send := func(eventKey string) bool {
|
|
|
|
for {
|
|
|
|
err := target.Send(eventKey)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-09-05 16:55:48 -04:00
|
|
|
if err != errNotConnected && !IsConnResetErr(err) {
|
2019-10-11 20:46:03 -04:00
|
|
|
loggerOnce(context.Background(),
|
2019-12-02 12:28:01 -05:00
|
|
|
fmt.Errorf("target.Send() failed with '%w'", err),
|
2022-07-27 12:44:59 -04:00
|
|
|
target.ID().String())
|
2019-04-10 08:46:01 -04:00
|
|
|
}
|
|
|
|
|
2020-03-23 15:34:39 -04:00
|
|
|
// Retrying after 3secs back-off
|
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
select {
|
2019-10-11 20:46:03 -04:00
|
|
|
case <-retryTicker.C:
|
2019-04-10 08:46:01 -04:00
|
|
|
case <-doneCh:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case eventKey, ok := <-eventKeyCh:
|
|
|
|
if !ok {
|
|
|
|
// closed channel.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !send(eventKey) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-27 20:23:28 -04:00
|
|
|
|
|
|
|
func streamEventsFromStore(store Store, target event.Target, doneCh <-chan struct{}, loggerOnce logger.LogOnce) {
|
|
|
|
go func() {
|
|
|
|
// Replays the events from the store.
|
|
|
|
eventKeyCh := replayEvents(store, doneCh, loggerOnce, target.ID().String())
|
|
|
|
// Send events from the store.
|
|
|
|
sendEvents(target, eventKeyCh, doneCh, loggerOnce)
|
|
|
|
}()
|
|
|
|
}
|