You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/architecture/watchdog.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,14 @@ Technical documentation on the classic watchdog is available belong along with a
18
18
19
19
## of-watchdog
20
20
21
-
of-watchdog is our next-generation watchdog which is in incubation within our[openfaas-incubator organisation](https://github.com/openfaas-incubator).
21
+
of-watchdog is the next-generation of the OpenFaaS watchdog component hosted in the[openfaas-incubator organisation](https://github.com/openfaas-incubator).
*Pictured: various modes for the of-watchdog component*
26
26
27
-
This version of the of-watchdog brings new features for high-throughput systems. The primary difference is the ability to keep a process warm between invocations. The classic watchdog forks one process per request giving the highest level of portability, but the newer version enables a mode where that same process can be re-used repeatedly to offset the latency of forking.
27
+
This version of the of-watchdog brings new features for high-throughput and enables re-use of expensive resources such as database connection pools or machine-learning models. The primary difference is the ability to keep the function process warm between invocations. The classic watchdog forks one process per request giving the highest level of portability, but the newer version enables a`http` mode where that same process can be re-used repeatedly to offset the latency of forking.
28
28
29
29
*[Read more on the of-watchdog](https://github.com/openfaas-incubator/of-watchdog)
30
30
31
+
The `http` mode of the of-watchdog uses [custom templates](https://github.com/openfaas-incubator/of-watchdog#2-http-modehttp).
0 commit comments