You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
696 B

4 years ago
# Hastic analytics
4 years ago
Python service which gets tasks from [hastic-server-node](https://github.com/hastic/hastic-server/tree/master/server) like
4 years ago
* train statistical models
4 years ago
* detect patterns in time series data
4 years ago
See more
4 years ago
## Arhitecture
4 years ago
Analytics gets tasks by websockets tasks asynchoriously, then launches threads in [actors with zmq messaging](https://github.com/hastic/analytics/blob/master/analytics/utils/concurrent.py)
4 years ago
* [asyncio](https://docs.python.org/3/library/asyncio.html)
4 years ago
* [concurrency](https://docs.python.org/3.6/library/concurrent.futures.html#module-concurrent.futures)
4 years ago
* [pyzmq](https://pyzmq.readthedocs.io/en/latest/)
* [websockets](https://github.com/aaugustin/websockets)