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: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ Can produce more then 150k messages per second and consume more then 140k messag
8
8
* Kafka producer and consumer implementations.
9
9
* Fiber friendly.
10
10
* Mostly errorless functions and methods. Error handling in Tarantool ecosystem is quite a mess,
11
-
some libraries throws lua native `error` while others throws `box.error` instead. `kafka` returns
12
-
noncritical errors as strings which allows you to decide how to handle it.
11
+
some libraries throw lua native `error` while others throws `box.error` instead. `kafka` returns
12
+
non-critical errors as strings which allows you to decide how to handle it.
13
13
14
14
## Requirements
15
15
* Tarantool >= 1.10.2
@@ -24,22 +24,22 @@ non critical errors as strings which allows you to decide how to handle it.
24
24
25
25
## Installation
26
26
```bash
27
-
tarantoolctl rocks install kafka
27
+
tt rocks install kafka
28
28
```
29
29
30
30
### Build module with statically linked librdkafka
31
31
32
-
To install kafka module with builtin librdkafka dependency, use option`STATIC_BUILD`:
32
+
To install the kafka module with builtin `librdkafka` dependency, use the`STATIC_BUILD` option:
33
33
34
34
```bash
35
-
tarantoolctl rocks STATIC_BUILD=ON install kafka
35
+
tt rocks STATIC_BUILD=ON install kafka
36
36
```
37
37
38
-
Be aware, that this approach doesn't include static openssl.
38
+
Be aware that this approach doesn't include static openssl.
39
39
Instead, it assumes tarantool has openssl symbols exported.
40
40
That means, kafka static build is only usable with static tarantool build.
41
41
42
-
For successful static build you need to compile kafka
42
+
For a successful static build, you need to compile kafka
43
43
against the [same version of openssl](https://github.com/tarantool/tarantool/blob/800e5ed617f7cd352ec597ce16973c7e4cad76c8/static-build/CMakeLists.txt#L11) that tarantool does.
0 commit comments