-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0847ed
commit e75c9a4
Showing
23 changed files
with
879 additions
and
214 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ test/output | |
test/e2e_test_data | ||
default.bkp* | ||
default.etcd* | ||
compctedsnap.bkp* | ||
|
||
# IDE config | ||
.vscode | ||
|
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,93 @@ | ||
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file. | ||
// | ||
// Licensed 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 cmd | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"path/filepath" | ||
|
||
"github.com/gardener/etcd-backup-restore/pkg/compactor" | ||
"github.com/gardener/etcd-backup-restore/pkg/snapstore" | ||
brtypes "github.com/gardener/etcd-backup-restore/pkg/types" | ||
"github.com/sirupsen/logrus" | ||
"github.com/spf13/cobra" | ||
"go.etcd.io/etcd/pkg/types" | ||
) | ||
|
||
// NewCompactCommand compacts the ETCD instance | ||
func NewCompactCommand(ctx context.Context) *cobra.Command { | ||
opts := newCompactOptions() | ||
// compactCmd represents the restore command | ||
compactCmd := &cobra.Command{ | ||
Use: "compact", | ||
Short: "compacts an etcd member data directory from snapshots", | ||
Long: fmt.Sprintf(`Compacts an etcd member data directory from existing backup stored in snapshot store.`), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
/* Compact operation | ||
- Restore from all the latest snapshots (Base + Delta). | ||
- Compact the newly created embedded ETCD instance. | ||
- Defragment | ||
- Save the snapshot | ||
*/ | ||
logger := logrus.New() | ||
if err := opts.validate(); err != nil { | ||
logger.Fatalf("failed to validate the options: %v", err) | ||
return | ||
} | ||
|
||
opts.complete() | ||
|
||
clusterUrlsMap, err := types.NewURLsMap(opts.restorationConfig.InitialCluster) | ||
if err != nil { | ||
logger.Fatalf("failed creating url map for restore cluster: %v", err) | ||
} | ||
|
||
peerUrls, err := types.NewURLs(opts.restorationConfig.InitialAdvertisePeerURLs) | ||
if err != nil { | ||
logger.Fatalf("failed parsing peers urls for restore cluster: %v", err) | ||
} | ||
|
||
restoreStore, err := snapstore.GetSnapstore(opts.snapstoreConfig) | ||
if err != nil { | ||
logger.Fatalf("failed to create restore snapstore from configured storage provider: %v", err) | ||
} | ||
|
||
// Modify the snapstore config to form compaction store | ||
opts.snapstoreConfig.Container = opts.compactContainer | ||
compactStore, err := snapstore.GetSnapstore(opts.snapstoreConfig) | ||
if err != nil { | ||
logger.Fatalf("failed to create compact snapstore from configured storage provider: %v", err) | ||
} | ||
cp := compactor.NewCompactor(restoreStore, compactStore, logrus.NewEntry(logger)) | ||
|
||
options := &brtypes.RestoreOptions{ | ||
Config: opts.restorationConfig, | ||
ClusterURLs: clusterUrlsMap, | ||
PeerURLs: peerUrls, | ||
} | ||
|
||
res, err := cp.Compact(options, opts.needDefragmentation) | ||
if err != nil { | ||
logger.Fatalf("Failed to restore snapshot: %v", err) | ||
return | ||
} | ||
logger.Infof("Compacted snapshot is in: %v", filepath.Join(res.Snapshot.SnapDir, res.Snapshot.SnapName)) | ||
}, | ||
} | ||
|
||
opts.addFlags(compactCmd.Flags()) | ||
return compactCmd | ||
} |
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
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
Oops, something went wrong.