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: how-to-guides/cep-norikra.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This article explains how to use [Fluentd](https://www.fluentd.org/) and [Norikr
8
8
9
9
However, Fluentd is not primarily designed for stream processing. We must restart Fluentd after making modifications to its configuration/code, making it unsuitable for running _both_ short-span \(seconds or minutes\) calculations and long-span \(hours or days\) calculations. If we restart Fluentd to perform a short-span calculation, all existing internal statuses of short and long span calculations are lost. For large scale stream processing platforms, code/processes must be added/removed without any such losses.
10
10
11
-
[Norikra](https://norikra.github.io/) is an open-source stream processing server based on [Esper](https://github.com/espertechinc/esper) by [EsperTech](http://www.espertech.com). It allows you to subscribe/unsubscribe to data streams anytime and add/remove SQL queries anytime. [Norikra](https://norikra.github.io/) is written by [@tagomoris](https://github.com/tagomoris), a committer of the Fluentd project.
11
+
[Norikra](https://norikra.github.io/) is an open-source stream processing server based on [Esper](https://github.com/espertechinc/esper) by [EsperTech](https://www.espertech.com/). It allows you to subscribe/unsubscribe to data streams anytime and add/remove SQL queries anytime. [Norikra](https://norikra.github.io/) is written by [@tagomoris](https://github.com/tagomoris), a committer of the Fluentd project.
12
12
13
13
This article will show you how to integrate [Fluentd](https://fluentd.org/), [Norikra](https://norikra.github.io/), and the [Fluentd norikra plugin](https://github.com/norikra/fluent-plugin-norikra) to create a robust stream data processing platform.
14
14
@@ -18,21 +18,23 @@ The figure below shows the high-level architecture:
Fluentd can be installed through RubyGems or via deb/rpm packages.
29
+
You can install Fluentd via major packaging systems.
32
30
33
31
*[Installation](../installation/)
34
32
35
-
`fluent-plugin-norikra` can be installed with the `gem install fluent-plugin-norikra`\(or `fluent-gem`\) command.
33
+
### Installing Fluentd Norikra Plugin
34
+
35
+
If `out_norikra` (fluent-plugin-norikra) is not installed yet, please install it manually.
36
+
37
+
See [Plugin Management](..//installation/post-installation-guide#plugin-management) section how to install fluent-plugin-norikra on your environment.
36
38
37
39
### Installing Norikra
38
40
@@ -60,7 +62,7 @@ You can also check the current Norikra's status via the WebUI \([http://localhos
60
62
61
63
## Fluentd Configuration
62
64
63
-
We'll now configure Fluentd. If you used the deb/rpm package, Fluentd's config file is located at `/etc/td-agent/td-agent.conf`. Otherwise, it is located at `/etc/fluentd/fluentd.conf`.
65
+
We'll now configure Fluentd. If you used the deb/rpm package, Fluentd's config file is located at `/etc/fluent/fluentd.conf`.
0 commit comments