Questions tagged [data-stream]

In Connection-oriented communication, a data stream is a sequence of digitally encoded coherent signals (packets of data or data packets) used to transmit or receive information that is in the process of being transmitted.

In Connection-oriented communication, a data stream is a sequence of digitally encoded coherent signals (packets of data or data packets) used to transmit or receive information that is in the process of being transmitted.

In electronics and computer architecture, a data flow determines for which time which data item is scheduled to enter or leave which port of a systolic array, a Reconfigurable Data Path Array or similar pipe network, or other processing unit or block.

Often the data stream is seen as the counterpart of an instruction stream, since the von Neumann machine is instruction-stream-driven, whereas its counterpart, the Anti machine, is data stream driven.

The term "data stream" has many more meanings, such as by the definition from the context of systolic arrays.

Wikipedia: http://en.wikipedia.org/wiki/Data_stream

211 questions
4
votes
3 answers

Realtime data stream to python from CSV file

I have a CSV file that has data from a random sensor recorded over a few minutes time. Now i want to stream that data from CSV file to my pyhton code as if it were receiving data from the sensor itself directly. (the code is for taking readings from…
M. Ali
  • 41
  • 1
  • 2
4
votes
0 answers

How can I use MongoDB as data source for Spark Streaming? Can I send data from MongoDB to Apache Streaming via Kafka?

I stored time-series sensor data in MongoDB and I want to use MongoDB data in Spark Streaming. I tried to connect Apache Kafka but I couldn't find anything. So, can I send data from MongoDB to Spark Streaming via Kafka or other stream tools? Is it…
4
votes
1 answer

Implementing the Alon-Matias-Szegedy Algorithm For The Second Moment Stream Approximation

I'm trying to recreate a function in python for an estimate of the second moment of a data stream. As stated by the Ullman Book, "Mining of Massive Datasets", a second moment: Is the sum of the squares of the m_i ’s. It is some- times called the…
Nikaido
  • 3,671
  • 5
  • 29
  • 40
3
votes
0 answers

Flutter Stream with Spring WebFlux

I'm stating one study with Spring WebFlux and I'd like to integrate it with Flutter to build one entire Reactive App. On every site I found about Flutter Stream it shows Flutter + Firebase Stream, but I don't have needs about Firebase to build a…
3
votes
1 answer

What is the difference between AWS Kinesis and EventBridge

I'm an AWS noob, I'm trying to figure out what the difference between Amazon's Kinesis Data Stream and EventBridge products. Can someone explain this for someone not familiar with the AWS tech stack?
3
votes
1 answer

Apache Flink - End to End testing how to terminate input source

I've used apache flink in batch processing for a while but now we want to convert this batch job to a streaming job. The problem I run into is how to run end-to-end tests. How it worked in a batch job When using batch processing we created…
3
votes
2 answers

Is there any different between two types of union in spark streaming

Dstream provide two types of union : StreamingContext.union(Dstreams) Dstream.union(anotherDstream) So I want to know what is the different, especially in parallelism performance.
3
votes
4 answers

Find The Longest Consecutive Subsequence Of Distinct Items In A Sequence

How do you find the longest row of different(!) elements in an array? We have a matrix Our task is to find a row in this matrix where is the longest row of different elements For example 0 1 2 3 4 1 2 3 Should count 0 1 2 3 4 = 5 elements
3
votes
2 answers

Does perforce supports file streams on Windows?

Does Perforce supports file streams on Windows, on NTFS?
sorin
  • 137,198
  • 150
  • 472
  • 707
3
votes
0 answers

State of the art incremental decision tree learners

What are the state of the art algorithms for incremental decision tree learning? The only algorithm that works well and that I'm aware of is the Domingos-Hulten VFDT and its extensions.
blazs
  • 4,352
  • 18
  • 36
3
votes
1 answer

Sending live-data from a servlet

I'm developing a web-application in which I have a constant stream of data that is being received every 5 seconds or so in a java servlet (being read from a file written by another application). I want to push this data onto an html page and get it…
zdani
  • 31
  • 2
3
votes
1 answer

Capturing printer data stream in ruby

anyone knows where a printer data stream is stored, and how to capture it a ruby executable? (for later pdf conversion for example) I'm questioning this one, related to another question of mine. So transparent that i can't catch it...Using Rghost…
MrWater
  • 1,705
  • 3
  • 19
  • 44
2
votes
1 answer

Download PDFs through proxy

I have a list of URLs linking directly to PDFs on a database website. It would be very easy to automate the download process, except for the fact that I have to access the website through a proxy server. The code I've been trying to use has been…
Agni451
  • 21
  • 1
2
votes
1 answer

Streaming data and updating screen in C#

I am dealing with a stream of data on serial port. The baud rate is 19200 kbps, leaving a shot time (about 100 ms) to process data and display the result on the screen. There is no issue with data processing performance. The main problem is updating…
Afshin
  • 467
  • 5
  • 19
2
votes
1 answer

Mulesoft with Salesforce Streaming API using CDC

I am working on a Mule API flow testing out the Salesforce event streams. I have my connector set up and subscribed to a streaming channel. This is working just fine when I create / update / delete contact records, the events come through and I…
SBB
  • 7,079
  • 27
  • 82
  • 181
1
2
3
14 15