-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update filebeat registrar to use statestore (#19633)
Update filebeat registrar, initialization and testing to use the statestore as new persistent storage backend between restarts. This PR swaps out the storage backend, adds support for migrating old registry files to the statestore, and updates existing tests in filebeat. The migration support extends the already existing migration support, supporting old registry files from the 6.x release as well (system tests start at 6.3).
- Loading branch information
Steffen Siering
authored
Jul 6, 2020
1 parent
a57e390
commit 5c719cf
Showing
13 changed files
with
596 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you 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 beater | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/elastic/beats/v7/filebeat/config" | ||
"github.com/elastic/beats/v7/libbeat/beat" | ||
"github.com/elastic/beats/v7/libbeat/logp" | ||
"github.com/elastic/beats/v7/libbeat/paths" | ||
"github.com/elastic/beats/v7/libbeat/statestore" | ||
"github.com/elastic/beats/v7/libbeat/statestore/backend/memlog" | ||
) | ||
|
||
type filebeatStore struct { | ||
registry *statestore.Registry | ||
storeName string | ||
cleanInterval time.Duration | ||
} | ||
|
||
func openStateStore(info beat.Info, logger *logp.Logger, cfg config.Registry) (*filebeatStore, error) { | ||
memlog, err := memlog.New(logger, memlog.Settings{ | ||
Root: paths.Resolve(paths.Data, cfg.Path), | ||
FileMode: cfg.Permissions, | ||
}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &filebeatStore{ | ||
registry: statestore.NewRegistry(memlog), | ||
storeName: info.Beat, | ||
cleanInterval: cfg.CleanInterval, | ||
}, nil | ||
} | ||
|
||
func (s *filebeatStore) Close() { | ||
s.registry.Close() | ||
} | ||
|
||
func (s *filebeatStore) Access() (*statestore.Store, error) { | ||
return s.registry.Get(s.storeName) | ||
} | ||
|
||
func (s *filebeatStore) CleanupInterval() time.Duration { | ||
return s.cleanInterval | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.