File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,14 @@ configure the hardware and software environment.
66
66
``` {literalinclude} ../../docs_src/coiled/coiled_functions_task.py
67
67
```
68
68
69
+ By default, {func}` @coiled.function <coiled.function> `
70
+ [ scales adaptively] ( https://docs.coiled.io/user_guide/usage/functions/index.html#adaptive-scaling )
71
+ to the workload. It means that coiled infers from the number of submitted tasks and
72
+ previous runtimes, how many additional remote workers it should deploy to handle the
73
+ workload. It provides a convenient mechanism to scale without intervention. Also,
74
+ workers launched by {func}` @coiled.function <coiled.function> ` will shutdown quicker
75
+ than a cluster.
76
+
69
77
``` {seealso}
70
78
Serverless functions are more thoroughly explained in
71
79
[coiled's guide](https://docs.coiled.io/user_guide/usage/functions/index.html).
Original file line number Diff line number Diff line change 3
3
There are a couple of things you need to know when using backends that launch workers
4
4
remotely, meaning not on your machine.
5
5
6
- ## Cross-Platform
6
+ ## Cross-platform support
7
7
8
8
Issue: {issue}` 102 ` .
9
9
@@ -19,7 +19,13 @@ Windows users on the other hand should use the
19
19
[ WSL (Windows Subsystem for Linux)] ( https://learn.microsoft.com/en-us/windows/wsl/about )
20
20
to run their projects.
21
21
22
- ## Local Paths
22
+ ## Local files
23
+
24
+ Avoid using local files with remote backends and use storages like S3 for dependencies
25
+ and products. The reason is that every local file needs to be send to the remote workers
26
+ and when your internet connection is slow you will face a hefty penalty on runtime.
27
+
28
+ ## Local paths
23
29
24
30
In most projects you are using local paths to refer to dependencies and products of your
25
31
tasks. This becomes an interesting problem with remote workers since your local files
You can’t perform that action at this time.
0 commit comments