That was quite a long discussion you had with
@Brian Pribe 😄
Here some comments:
- go check out benthos-umh (it is also included in UMH Lite), as it will have the required connectivity from s7 to mqtt, kafka, postgres/timescale, etc. available as a docker container, or simplty as a binary (I know
@Diederik is using it even on a windows machine)
- you can also send multiple tags per MQTT message, see also our _historian schema/datacontract
https://umh.docs.umh.app/docs/datamodel/messages/_historian/
- it is perfectly fine to send data in a high frequency into MQTT and Kafka, you just have to know how. What I did a couple of years back was connecting a sound sensor using benthos to MQTT. The trick was to buffer the data for a second and then send it out, so that you dont have 10kHz put instead only 1 message per second. Then FFT etc. could work on the data for a second.