Questions tagged [real-time-data]

Real-time data is information that is delivered immediately after collection. For questions regarding the real-time data feature of Excel, choose the 'RTD' tag.

Real-time data is information that is delivered immediately after collection. There is no delay in the timeliness of the information provided, save of technical limitations such as transmission delay. Areas of application are navigation, tracking or charting.

311 questions
12
votes
7 answers

AngularFire2: Realtime Database: how to get key and value

I use AngularFire2 to get data from Firebase Database (realtime). What I have done: Firebase Database { “class” : { “student” : { “Tom” : “male”, “Mary” : “female”, “Peter” : “male”, “Laura” : “female” …
Phong Vu
  • 2,726
  • 6
  • 24
  • 52
11
votes
2 answers

Spark cluster fails on bigger input, works well for small

I'm playing with Spark. It is the default, pre-built distribution (0.7.0) from the website, with default config, cluster mode, one worker (my localhost). I read the docs on installing and everything seems fine. I have a CSV file (various sizes, 1000…
gyorgyabraham
  • 2,550
  • 1
  • 28
  • 46
9
votes
1 answer

How to stream opencv frame with django frame in realtime?

I'm trying to use raspberry pi capture the image from USB camera and stream it with Django framework I have tried to use StreamingHttpResponse to stream the frame from Opencv2. However, it just shows 1 frame and not replacing the image. How can I…
luvwinnie
  • 499
  • 1
  • 6
  • 23
8
votes
2 answers

Can we connect more than 10 devices with wi-fi hot-spot in Android

I am working on project push to talk over wifi hotspot or wifi direct in real time, but I am unable to connect more than 10 devices through one hotspot as android given this limitation. but I want to connect 40 - 50 devices, so can anyone tell me…
Ankit
  • 191
  • 1
  • 2
  • 8
7
votes
2 answers

(Twitter) Storm's Window On Aggregation

I'm playing around with Storm, and I'm wondering where Storm specifies (if possible) the (tumbling/sliding) window size upon an aggregation. E.g. If we want to find the trending topics for the previous hour on Twitter. How do we specify that a bolt…
gronnbeck
  • 993
  • 1
  • 7
  • 16
6
votes
1 answer

Real-Time aggregation not up to date

I am experiencing real time aggregation not to be up to date in real time. Is there something I am missing? A reproducible example on version 2.4.2 using the current docker image timescale/timescaledb:latest-pg12: CREATE TABLE data ( time …
Pasukaru
  • 1,050
  • 1
  • 10
  • 22
6
votes
1 answer

AppSync/Graphql Multiple subscriptions or one subscriptions for multiple ids?

Problem : We are trying to make a chat application using AWS product AppSync and we want to achive the best performance but we're facing problem with real time subscriptions in AppSync and Graphql where a single user will need to handle hundereds…
5
votes
3 answers

High-performance realtime data display

I'm trying to find a tool for plotting data (mostly line graphs and such) that can be used for high performance applications. My data window typically contains between 500 to several thousand points, and I'd be happy with a framerate of 10 or so. I…
Jake
  • 15,007
  • 22
  • 70
  • 86
5
votes
3 answers

How to specify the number of rows a pandas dataframe will have?

I have a Pandas dataframe and I am continually appending a row of data each second as below. df.loc[time.strftime("%Y-%m-%d %H:%M:%S")] = [reading1, reading2, reading3] >>>df sensor1 sensor2 sensor3 2015-04-14 08:50:23 5.4 …
ps.george
  • 53
  • 1
  • 1
  • 7
5
votes
2 answers

How to get Acknowledgement from Kafka

How to I exactly get the acknowledgement from Kafka once the message is consumed or processed. Might sound stupid but is there any way to know the start and end offset of that message for which the ack has been received ?
Hild
  • 2,625
  • 3
  • 22
  • 22
4
votes
1 answer

How to Show Live Location of User in SignalR?

I am building a user location tracking application for a client. I am getting the location via Client (Android) using SignalR Hub Method and Saving in MongoDb My Code public async Task UpdateLocation(double latitude, double longitude) { await…
test noob
  • 43
  • 1
  • 5
4
votes
2 answers

Is there a way to get YouTube real time analytics API data?

I'm wondering if is there a way to access YouTube real time analytics data like in your personal analytics section. The YouTube Analytics API doesn't mention anything about getting real time data, but I can see that some company like SproutSocial…
maxdelia
  • 858
  • 2
  • 14
  • 35
4
votes
0 answers

Real time data in Google Analytics is now showing

I have a problem with real-time data using Google Analytics v3.1 Users, events, e-commerce is working fine, but real-time features like screen tracking is not showing. Here is GAI initialiser code: [GAI sharedInstance].trackUncaughtExceptions =…
4
votes
1 answer

Android real time messaging

i m trying to develop an aap. in android which behaves like a client/server architecture. my app communicates messages to server to rout to specified clients.. i have heard that this could be accomplished by a REAL TIME MESSAGING client. i have to…
DareDevil
  • 5,249
  • 6
  • 50
  • 88
3
votes
1 answer

Real time websites scraping with selenium and python

I am doing trading in a real time website. Now I want to scrap it continuously to extract real time stock or currency data for calculations using selenium and python. How do I approach the same. The webpage data is getting updated continuously and…
1
2 3
20 21