diff --git a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/backup/BackupCommand.kt b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/backup/BackupCommand.kt index df66427..bb97467 100644 --- a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/backup/BackupCommand.kt +++ b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/backup/BackupCommand.kt @@ -138,7 +138,7 @@ class BackupCommand( .filter { path: Path -> Files.isRegularFile(path) } .filter { path -> !matchers.any { it.matches(Paths.get(path.normalize().toString())) } } .toList() - val buffer = ByteArray(1024) + val buffer = ByteArray(16 * 1024) val backupsPath = backupsPath.toRealPath() for (path in paths) {