real time - Realtime data processing in Django/Python -
we working on project involving realtime data processing. plan use django/python. actual process is:
- tens of thousands of devices take 4 samples per seconds (0, 0.25, 0.5, 0.75) , continuously send our django server, time series timestamp , value
- we need align samples devices according timestamp (need have milliseconds precision) , simple average of time series
- all these needs done in realtime (maximum 1 second delay) , send away using thread
we looking rrdtool , scikits.timeseries, don't have precision of milliseconds, couldn't align our time series.
just wondering there tools/data structure can use django/python type of realtime data processing. , thread safe important, sending result away done in thread.
thanks in advance.
your options real time web services in python are: twisted, tornado , eventlet
you can integrate work python/django. tutorial on that.
Comments
Post a Comment