Sybren A. Stüvel
e2bca9ad61
Add a Worker configuration option to configure the Linux out-of-memory behaviour. Add `oom_score_adjust=500` to `flamenco-worker.yaml` to increase the chance that Blender gets killed when the machine runs out of memory, instead of Flamenco Worker itself.
14 lines
808 B
Go
14 lines
808 B
Go
// package website contains references to the Flamenco website.
|
|
// Constants defined here can be used in the rest of Flamenco, for example for log messages.
|
|
package website
|
|
|
|
const (
|
|
DocVariablesURL = "https://flamenco.blender.org/usage/variables/blender/"
|
|
WorkerCredsUnknownHelpURL = "https://flamenco.blender.org/faq/#what-does-unknown-worker-is-trying-to-communicate-mean"
|
|
CannotFindManagerHelpURL = "https://flamenco.blender.org/faq/#my-worker-cannot-find-my-manager-what-do-i-do"
|
|
BugReportURL = "https://flamenco.blender.org/get-involved"
|
|
ShamanRequirementsURL = "https://flamenco.blender.org/usage/shared-storage/shaman/#requirements"
|
|
WorkerConfigURL = "https://flamenco.blender.org/usage/worker-configuration/"
|
|
OOMScoreAdjURL = WorkerConfigURL
|
|
)
|