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: _posts/2020-07-08-event-driven-functions-with-openfaas-and-nats.md
+27-21
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ dark_background: true
12
12
---
13
13
14
14
In this blog post, I will show how you can invoke OpenFaaS function in response to messages sent on NATS topics in publish-subscribe model.
15
-
OpenFaaS functions are accessible over HTTP endpoints via gateway service but OpenFaaS provides several other way to invoke OpenFaaS functions with help of [connector-sdk](https://github.com/openfaas-incubator/connector-sdk).
15
+
OpenFaaS functions are accessible over HTTP endpoints via gateway service but OpenFaaS provides several other way to invoke OpenFaaS functions with help of the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk).The connector sdk provides a reusable and tested interface and implementation that allows developers to quickly create a new event source. The code that is unique to OpenFaaS is standardized so that the develop can focus on the details of the receiving message from the event source.
16
16
17
17
*[kafka-connector](https://github.com/openfaas-incubator/kafka-connector) connects OpenFaaS functions to Kafka topics.
18
18
*[nats-connector](https://github.com/openfaas-incubator/nats-connector) an OpenFaaS event-connector to trigger functions from NATS.
@@ -24,17 +24,14 @@ There are several other connectors which allows you to trigger OpenFaaS function
24
24
25
25
## NATS
26
26
27
-
[NATS](https://nats.io) is a simple, secure and high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures. In this blog post, I will be using NATS publish-subscribe concept where publishers publishes a message on a topic/subject and subscribers consumes that message by subscribing to that topic/subject.
27
+
[NATS](https://nats.io) is a simple, secure and high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures. In this blog post, I will be using NATS publish-subscribe concept where publishers publishes a message on a topic/subject and subscribers consumes that message by subscribing to that subject (sometimes called topics in other event systems).
*[k3d](https://github.com/rancher/k3d) to create a [k3s](https://github.com/rancher/k3s) cluster. k3s is lightweight distribution of kubernetes from Rancher Labs.
34
-
*`kubectl` to manage kubernetes cluster.
35
-
*`helm` to install `nats-connector` using helm chart
36
-
*[arkade](https://github.com/alexellis/arkade) to install OpenFaaS. `arkade` is simple CLI tool to install helm charts and apps to your cluster in one command.
37
-
*[faas-cli](https://github.com/openfaas/faas-cli) CLI tool to manage OpenFaaS functions.
34
+
*[arkade](https://github.com/alexellis/arkade) to install OpenFaaS, nats-connector, kubectl and faas-cl. `arkade` is simple CLI tool to install helm charts and apps to your cluster in one command.
38
35
39
36
> Please make sure you have these tools installed before you proceed next.
40
37
@@ -57,19 +54,26 @@ Install OpenFaaS using `arkade`
> Note: You can also build and deploy this function using the stack.yml and code present in nats-connector repository. But for simplicity, I am using pre built and published images of these functions.
114
120
121
+
## Verify the installation
115
122
Invoke `publish-message` function to publish a test message
When `publish-message` was invoked, it would have pushed `test-message` to the `nats-test` topic on NATS, which would have invoked `receive-message`. We can verify that by checking logs of `receive-message` function.
122
129
123
130
```
124
131
faas-cli logs receive-message
125
132
126
-
ARNING! Communication is not secure, please consider using HTTPS. Letsencrypt.org offers free SSL/TLS certificates.
127
-
Handling connection for 8080
128
133
2020-05-29T15:41:17Z 2020/05/29 15:41:17 Started logging stderr from function.
129
134
2020-05-29T15:41:17Z 2020/05/29 15:41:17 Started logging stdout from function.
130
135
2020-05-29T15:41:17Z Forking - ./handler []
@@ -137,10 +142,11 @@ Handling connection for 8080
137
142
2020-05-29T15:42:24Z 2020/05/29 15:42:24 POST / - 200 OK - ContentLength: 28
138
143
```
139
144
140
-
### What Next ?
145
+
## What Next ?
146
+
* Do you have a cool "event driven" use case you want to share? Let us know and become a guest blogger!
141
147
142
-
If you are new to OpenFaaS, I would recommend you trying [OpenFaaS workshop](https://github.com/openfaas/workshop) .
148
+
*If you are new to OpenFaaS, I would recommend you trying [OpenFaaS workshop](https://github.com/openfaas/workshop) .
143
149
144
-
If you don't find connector for messaging platform you are using, checkout the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk) which allows you to build event-connectors for OpenFaaS.
150
+
*If you don't find connector for messaging platform you are using, checkout the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk) which allows you to build event-connectors for OpenFaaS.
145
151
146
-
If you are looking to contribute to open source project, please join OpenFaaS community [slack channel](https://docs.openfaas.com/community/) and start contributing.
152
+
*If you are looking to contribute to open source project, please join OpenFaaS community [slack channel](https://docs.openfaas.com/community/) and start contributing.
0 commit comments