Skip to content

Commit

Permalink
Drop expected stat ram to 200MB (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
sb10 authored Dec 17, 2024
1 parent 3b951cf commit 90fab5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/walk.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const (
defaultInodesPerJob = 1000000
walkLogOutputBasename = "walk.log"
statTime = 12 * time.Hour
statRAM = 7000
statRAM = 200
)

// options for this cmd.
Expand Down
6 changes: 3 additions & 3 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ func TestWalk(t *testing.T) {
RepGroup: "wrstat-stat-" + filepath.Base(tmp) + "-" + time.Now().Format("20060102"),
ReqGroup: "wrstat-stat",
Requirements: &scheduler.Requirements{
RAM: 7000,
RAM: 200,
Time: 12 * time.Hour,
Cores: 1,
Disk: 1,
Expand Down Expand Up @@ -341,7 +341,7 @@ func TestWalk(t *testing.T) {
RepGroup: "wrstat-stat-" + filepath.Base(tmp) + "-" + time.Now().Format("20060102"),
ReqGroup: "wrstat-stat",
Requirements: &scheduler.Requirements{
RAM: 7000,
RAM: 200,
Time: 12 * time.Hour,
Cores: 1,
Disk: 1,
Expand All @@ -357,7 +357,7 @@ func TestWalk(t *testing.T) {
RepGroup: "wrstat-stat-" + filepath.Base(tmp) + "-" + time.Now().Format("20060102"),
ReqGroup: "wrstat-stat",
Requirements: &scheduler.Requirements{
RAM: 7000,
RAM: 200,
Time: 12 * time.Hour,
Cores: 1,
Disk: 1,
Expand Down

0 comments on commit 90fab5b

Please sign in to comment.