mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-09 19:29:29 +08:00

* Add batch of streams Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Add env variables for batch point setup Fix InfluxDB reader tests. Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Update Compose and Kubernetes config Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Update env variables Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Update docs Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Remove unused const Refactor code and docs. Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Handle NewBatchPoints error Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Reduce wait time in batch save test Fix typos. Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Update tests Use single test with multiple cases to test single point save as well as a batch of points. Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com> * Add an explanation for not resetting ticker Signed-off-by: Dušan Borovčanin <dusan.borovcanin@mainflux.com>
17 lines
691 B
Markdown
17 lines
691 B
Markdown
# Writers
|
|
|
|
Writers provide an implementation of various `message writers`.
|
|
Message writers are services that consume normalized (in `SenML` format)
|
|
Mainflux messages and store them in specific data store.
|
|
|
|
Writers are optional services and are treated as a plugins. In order to
|
|
run writer services, core services must be up and running. For more info
|
|
on the platform core services with its dependencies, please check out
|
|
the [Docker Compose][compose] file.
|
|
|
|
For an in-depth explanation of the usage of `writers`, as well as thorough
|
|
understanding of Mainflux, please check out the [official documentation][doc].
|
|
|
|
[doc]: http://mainflux.readthedocs.io
|
|
[compose]: ../docker/docker-compose.yml
|