-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(clusters): dont delete servers immediately with linode
- Loading branch information
1 parent
965f10e
commit ceef59f
Showing
4 changed files
with
55 additions
and
28 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Gotchas | ||
|
||
## Provider Billing Intervals | ||
|
||
Server providers bill for usage based on different billing cycles. It is important to know when scaling | ||
because if the cycle is too long, autoscaling quickly will end up wasting money due to unused billing time. | ||
|
||
### Linode | ||
|
||
Linode bills hourly. Servers running for 1 minute, 59 minutes, or 60 minutes all cost the user the same | ||
amount. Internally, we do not immediately delete servers when scaling down and instead start draining them. | ||
This means if we have to scale up again within an hour we can undrain an existing server instead of | ||
provisioning a new one, saving the user money. | ||
|
||
When using Linode, you should choose your drain timeout to be close to (but not over) intervals of an hour | ||
(3_600_000 ms). |
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