-
Notifications
You must be signed in to change notification settings - Fork 127
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
b0df019
commit dfe112d
Showing
5 changed files
with
143 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
Copyright 2017 Rohith All rights reserved. | ||
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 marathon | ||
|
||
import "time" | ||
|
||
// TaskLostBehaviorType sets action taken when the resident task is lost | ||
type TaskLostBehaviorType string | ||
|
||
const ( | ||
// TaskLostBehaviorTypeWaitForever indicates to not take any action when the resident task is lost | ||
TaskLostBehaviorTypeWaitForever TaskLostBehaviorType = "WAIT_FOREVER" | ||
// TaskLostBehaviorTypeWaitForever indicates to try relaunching the lost resident task on | ||
// another node after the relaunch escalation timeout has elapsed | ||
TaskLostBehaviorTypeRelaunchAfterTimeout TaskLostBehaviorType = "RELAUNCH_AFTER_TIMEOUT" | ||
) | ||
|
||
// Residency defines how terminal states of tasks with local persistent volumes are handled | ||
type Residency struct { | ||
TaskLostBehavior TaskLostBehaviorType `json:"taskLostBehavior,omitempty"` | ||
RelaunchEscalationTimeoutSeconds int `json:"relaunchEscalationTimeoutSeconds,omitempty"` | ||
} | ||
|
||
// SetTaskLostBehavior sets the residency behavior | ||
func (r *Residency) SetTaskLostBehavior(behavior TaskLostBehaviorType) *Residency { | ||
r.TaskLostBehavior = behavior | ||
return r | ||
} | ||
|
||
// SetRelaunchEscalationTimeout sets the residency relaunch escalation timeout with seconds precision | ||
func (r *Residency) SetRelaunchEscalationTimeout(timeout time.Duration) *Residency { | ||
r.RelaunchEscalationTimeoutSeconds = int(timeout.Seconds()) | ||
return r | ||
} |
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,49 @@ | ||
/* | ||
Copyright 2017 Rohith All rights reserved. | ||
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 marathon | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestResidency(t *testing.T) { | ||
app := NewDockerApplication() | ||
|
||
app = app.SetResidency(TaskLostBehaviorTypeWaitForever) | ||
|
||
if assert.NotNil(t, app.Residency) { | ||
res := app.Residency | ||
|
||
assert.Equal(t, res.TaskLostBehavior, TaskLostBehaviorTypeWaitForever) | ||
|
||
res.SetRelaunchEscalationTimeout(2525 * time.Millisecond) | ||
// should be trimmed to seconds precision | ||
assert.Equal(t, app.Residency.RelaunchEscalationTimeoutSeconds, 2) | ||
|
||
res.SetTaskLostBehavior(TaskLostBehaviorTypeRelaunchAfterTimeout) | ||
assert.Equal(t, res.TaskLostBehavior, TaskLostBehaviorTypeRelaunchAfterTimeout) | ||
} | ||
|
||
app = app.EmptyResidency() | ||
|
||
if assert.NotNil(t, app.Residency) { | ||
assert.Equal(t, app.Residency, &Residency{}) | ||
} | ||
} |
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