-
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
4f1f191
commit 1134755
Showing
28 changed files
with
1,033 additions
and
352 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,62 @@ | ||
// Copyright (c) 2021 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" | ||
|
||
"github.com/gardener/etcd-backup-restore/pkg/compactor" | ||
"github.com/sirupsen/logrus" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// 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 multiple incremental snapshots in etcd backup into a single full snapshot", | ||
Long: fmt.Sprintf(`Compacts an 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() | ||
|
||
options, store, err := BuildRestoreOptionsAndStore(opts) | ||
if err != nil { | ||
return | ||
} | ||
|
||
cp := compactor.NewCompactor(store, logrus.NewEntry(logger)) | ||
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(opts.snapstoreConfig.Container, res.Snapshot.SnapDir, res.Snapshot.SnapName)) | ||
logger.Infof("Compacted snapshot is in: %v", res.Path) | ||
|
||
}, | ||
} | ||
|
||
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
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.