haskell-hummingbird
haskell-hummingbird copied to clipboard
Multi-threaded MQTT broker written in Haskell.
It shall be possible to create a cluster of several broker instances in order to have high-availability. As a first shot, here's the plan: - The cluster is configured statically...
I'm trying to follow the README file, but this instruction is not clear: ```bash mosquitto_pub -h localhost -p 8883 -V mqttv311 \ --cafile "resources/hummingbird_ca.crt" \ --cert "resources/mqtt-default.crt" \ --key "resources/mqtt-default.key"...
I try to run hummingbird for the first time: ``` $ sudo hummingbird broker [2019-01-28 10:54:53 CET : hummingbird : INFO] Started hummingbird MQTT message broker. [2019-01-28 10:54:53 CET :...
Hello, I just installed the Debian distribution on my Ubuntu 16.04: ``` sudo dpkg -i hummingbird_0.8.1.0-1_amd64.deb sudo cp /usr/share/hummingbird/resources/principals/mqtt-default.yml /etc/hummingbird/principals/ sudo hummingbird pwhash ``` But nothing happens next. It hangs...
Hello, I would like to run a MQTT server with my own callbacks. Is it possible with Hummingbird/haskell-mqtt? Thanks
A feature would be nice, breaking with the mqtt-spec though, which allows to set a config option on user base which enables distinct message routing per topic to multiple connected...
Note to self: Users should have a way to find out who they are and what they are allowed to do (permissions and quotas etc.).
```` aep@derp: ~/Downloads/haskell-hummingbird-0.4.2.0 docker build . -t humingbird Sending build context to Docker daemon 159.7kB Step 1/14 : FROM ubuntu:16.04 ---> 747cb2d60bbe Step 2/14 : MAINTAINER Lars Petersen ---> Running...
stream cli responses instead of transmitting en bloc. For example with 20.000 connected clients one probably wants to transmit these, at least, chunked. This would result in less waiting time...