Skip to content
New issue

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

Make Fleet Server components resilient if the indices do not exist #68

Merged
merged 2 commits into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions internal/pkg/coordinator/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package coordinator

import (
"context"
"errors"
"net"
"os"
"runtime"
Expand Down Expand Up @@ -184,7 +185,11 @@ func (m *monitorT) ensureLeadership(ctx context.Context) error {
leaders := map[string]model.PolicyLeader{}
policies, err := dl.QueryLatestPolicies(ctx, m.bulker, dl.WithIndexName(m.policiesIndex))
if err != nil {
return err
if errors.Is(err, es.ErrIndexNotFound) {
err = nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we have a debug log here to make it easier to debug issues?

} else {
return err
}
}
if len(policies) > 0 {
ids := make([]string, len(policies))
Expand All @@ -193,7 +198,11 @@ func (m *monitorT) ensureLeadership(ctx context.Context) error {
}
leaders, err = dl.SearchPolicyLeaders(ctx, m.bulker, ids, dl.WithIndexName(m.leadersIndex))
if err != nil {
return err
if errors.Is(err, es.ErrIndexNotFound) {
err = nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above, debug log?

} else {
return err
}
}
}

Expand Down
17 changes: 9 additions & 8 deletions internal/pkg/esboot/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ package esboot

import (
"context"
"github.com/elastic/fleet-server/v7/internal/pkg/es"

"github.com/elastic/go-elasticsearch/v8"
)
Expand All @@ -20,13 +19,15 @@ type indexConfig struct {
}

var indexConfigs = map[string]indexConfig{
".fleet-actions": {mapping: es.MappingAction},
".fleet-actions-results": {mapping: es.MappingActionResult, datastream: true},
".fleet-agents": {mapping: es.MappingAgent},
".fleet-enrollment-api-keys": {mapping: es.MappingEnrollmentApiKey},
".fleet-policies": {mapping: es.MappingPolicy},
".fleet-policies-leader": {mapping: es.MappingPolicyLeader},
".fleet-servers": {mapping: es.MappingServer},
// Commenting out the boostrapping for now here, just in case if it needs to be "enabled" again.
// Will remove all the boostrapping code completely later once all is fully integrated
// ".fleet-actions": {mapping: es.MappingAction},
// ".fleet-actions-results": {mapping: es.MappingActionResult, datastream: true},
// ".fleet-agents": {mapping: es.MappingAgent},
// ".fleet-enrollment-api-keys": {mapping: es.MappingEnrollmentApiKey},
// ".fleet-policies": {mapping: es.MappingPolicy},
// ".fleet-policies-leader": {mapping: es.MappingPolicyLeader},
// ".fleet-servers": {mapping: es.MappingServer},
}

// Bootstrap creates .fleet-actions data stream
Expand Down
14 changes: 12 additions & 2 deletions internal/pkg/migrate/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ package migrate
import (
"context"
"encoding/json"
"errors"

"github.com/elastic/fleet-server/v7/internal/pkg/bulk"
"github.com/elastic/fleet-server/v7/internal/pkg/dl"
"github.com/elastic/fleet-server/v7/internal/pkg/es"
"github.com/elastic/fleet-server/v7/internal/pkg/model"
"github.com/elastic/fleet-server/v7/internal/pkg/saved"
)
Expand Down Expand Up @@ -42,12 +45,19 @@ func MigrateEnrollmentAPIKeys(ctx context.Context, sv saved.CRUD, bulker bulk.Bu
}

var recs []model.EnrollmentApiKey
var resHits []es.HitT
res, err := bulker.Search(ctx, []string{dl.FleetEnrollmentAPIKeys}, raw, bulk.WithRefresh())
if err != nil {
return err
if errors.Is(err, es.ErrIndexNotFound) {
err = nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Debug log?

Could we directly return nil here or do we need to run the rest of the code below?

} else {
return err
}
} else {
resHits = res.Hits
}

for _, hit := range res.Hits {
for _, hit := range resHits {
var rec model.EnrollmentApiKey
err := json.Unmarshal(hit.Source, &rec)
if err != nil {
Expand Down
10 changes: 9 additions & 1 deletion internal/pkg/monitor/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"bytes"
"context"
"encoding/json"
"errors"
"sync/atomic"
"time"

Expand Down Expand Up @@ -291,7 +292,14 @@ func (m *simpleMonitorT) search(ctx context.Context, tmpl *dsl.Tmpl, params map[
}

if res.IsError() {
return nil, es.TranslateError(res.StatusCode, esres.Error)
err = es.TranslateError(res.StatusCode, esres.Error)
}

if err != nil {
if errors.Is(err, es.ErrIndexNotFound) {
return nil, nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Debug log?

}
return nil, err
}

return esres.Hits.Hits, nil
Expand Down
6 changes: 6 additions & 0 deletions internal/pkg/policy/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (

"github.com/elastic/fleet-server/v7/internal/pkg/bulk"
"github.com/elastic/fleet-server/v7/internal/pkg/dl"
"github.com/elastic/fleet-server/v7/internal/pkg/es"
"github.com/elastic/fleet-server/v7/internal/pkg/model"
"github.com/elastic/fleet-server/v7/internal/pkg/monitor"
)
Expand Down Expand Up @@ -125,6 +126,11 @@ LOOP:
func (m *monitorT) process(ctx context.Context) error {
policies, err := m.policyF(ctx, m.bulker, dl.WithIndexName(m.policiesIndex))
if err != nil {
if errors.Is(err, es.ErrIndexNotFound) {
err = nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Debug log?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also return here immediately? There won't be any policies yet.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't know what I was thinking yesterday. will update.

} else {
err = nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be return err?

}
return err
}
if len(policies) == 0 {
Expand Down