real time - Realtime data processing in Django/Python -


we working on project involving realtime data processing. plan use django/python. actual process is:

  1. 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
  2. we need align samples devices according timestamp (need have milliseconds precision) , simple average of time series
  3. 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

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -