|
|
hace 2 años | |
|---|---|---|
| .. | ||
| include | 74cb43f8b1 fix(ds): Add unique ID to the key | hace 2 años |
| src | 50f4aba5cd fix(dialyzer): batch 3 | hace 2 años |
| test | d560366c14 test: fix some compile warnings | hace 2 años |
| BSL.txt | 8d6bcc1414 refactor(ds): emqx_replay -> emqx_durable_storage | hace 2 años |
| IMPLEMENTATION.md | c91df2f5cd refactor(ds): Create a prototype of replication layer | hace 2 años |
| README.md | e238602533 fix(ds): Update README | hace 2 años |
| rebar.config | c030188eb7 chore(ds): Add rebar.config file to app/emqx_durable_storage | hace 2 años |
emqx_ds is an application implementing durable storage for MQTT messages within EMQX.
Streams. Stream is an abstraction that encompasses topics, shards, different data layouts, etc. The client application must only aware of the streams.
Batching. All the API functions are batch-oriented.
Iterators. Iterators can be stored durably or transferred over network. They take relatively small space.
Support for various backends. Almost any DBMS that supports range
queries can serve as a emqx_durable_storage backend.
Builtin backend based on RocksDB.
TBD
Currently it's only used to implement persistent sessions.
In the future it can serve as a storage for retained messages or as a generic message buffering layer for the bridges.
emqx_durable_storage doesn't have any configurable parameters.
Instead, it relies on the upper-level business applications to create
a correct configuration and pass it to emqx_ds:open_db(DBName, Config)
function according to its needs.
None
TBD
Please see our contributing.md.