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

276 questions
5
votes
5 answers

Flutter DataStream not closing and re-building properly. [Bad state: Stream has already been listened to.]

Okay, so I'm aware that a stream can be manufactured to listen to a stream more than once, using a broadcast system, but that's specifically NOT what I'm trying to do here. I'm also editing this as the one answer I have received isn't currently able…
ArthurEKing
  • 158
  • 2
  • 16
5
votes
4 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 a CSV file to my python code as if it were receiving data from the sensor itself directly. (The code is for taking readings…
M. Ali
  • 51
  • 1
  • 1
  • 2
5
votes
1 answer

what does this mean 'Parsing a text file or data stream' and does it apply with serializables

This is my second post and I am getting used to the function of things on here now! this is more of a theory question for computer science but, my question is what does this mean? 'Parsing a text file or data stream' This is an assignment and the…
4
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…
4
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…
4
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.
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…
3
votes
1 answer

Unable to stream with Flink Streaming

I am new to Flink Streaming framework and I am trying to understand the components and the flow. I am trying to run the basic wordcount example using the DataStream. I am trying to run the code on my IDE. The code runs with no issues when I feed…
Anirban Das
  • 61
  • 1
  • 3
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
Ihor Belehay
  • 49
  • 1
  • 4
3
votes
2 answers

Does perforce supports file streams on Windows?

Does Perforce supports file streams on Windows, on NTFS?
sorin
  • 161,544
  • 178
  • 535
  • 806
3
votes
1 answer

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,705
  • 24
  • 38
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,797
  • 4
  • 20
  • 47
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
  • 487
  • 6
  • 22
1
2
3
18 19