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
1
vote
1 answer

kbmmw Client: 64-bit request stream issue

I have developped a client-server application using 64-bit kbmmw package on Delphi 10.3 IDE. The 64-bit client application send the requests to server by SendRequest method (kbmmwClient class method) setting the request service name and the username…
1
vote
1 answer

continue an interrupted stream python pycurl

I am implementing a pycurl connection to a live datastream, sometimes the connection to the data stream disconnects and I am unsure as to how to continue the interrupted stream right away. I am not worried about the lose of data if the stream is…
Zayn_SE
  • 153
  • 1
  • 1
  • 13
1
vote
1 answer

In the scikit-multiflow EvaluatePrequential class, what is the difference between the paramter n_wait and batch_size?

My first understanding was that batch_size is basically all needed to first test the model(s) on new incoming data and then train it/them on the new data. So, how does n_wait influence that procedure? Docs: evaluate_prequential My first guess would…
kohring
  • 13
  • 2
1
vote
1 answer

Elasticsearch Python client: how to resume connection after node is stopped

I am working on a Elasticsearch cluster upgrade automation tool. For demo purposes (to show that my upgrade can achieve zero downtime), I have written a Python program that constantly streams data into the cluster while it is being upgraded: #get a…
1
vote
1 answer

Data streaming between two processes

I have two java processes and I have to write data generated from one process as an input to the other java process. The data stream generated will be of the size of 5GB . How can I do that. Do I have to use a buffer file and read and write…
ssD
  • 339
  • 2
  • 9
  • 22
1
vote
1 answer

When to close file stream

I reading a file in a zip file using streams like this : public static Stream ReadFile(Models.Document document, string path, string password, string fileName) { FileStream fsIn = System.IO.File.OpenRead(Path.Combine(path,…
Henrik Clausen
  • 679
  • 6
  • 16
1
vote
1 answer

How to use data stream from bash with subprocess in python

I am trying to call a process in linux bash using data stream signal '<' to use a file as input to an application. However, this application do not receives its input from the file. I am using this: #the application do not receives data stream from…
1
vote
2 answers

How do I make Arduino respond to a continuous data stream from Python?

I'm trying to make a tuner. 3 leds are connected to the Arduino Uno board, each one corresponding to one situation (too high, low or correct height). Python handles the detecting of a note according to the mic input, and determines which led should…
sheyy_dt
  • 11
  • 2
1
vote
1 answer

Kafka Consumer - Reset Consumer Poll time

I have a Kafka Consumer with poll time mentioned like kafkaConsumer.poll(polltimeinmilliseconds); I would like to update the poll timer dynamically. Right now I set that to a static variable , and the poll time updates. The problem is , the…
madhairsilence
  • 3,787
  • 2
  • 35
  • 76
1
vote
1 answer

Data is getting lost from the Kinesis Stream. What could be the reason for this?

I am facing an issue. I am testing with 3 consumers and 1 producer. From al keystrokes a producer is producing, consumers are unable to receive all data being sent by the producer. What could be the reason for this? In the following screenshot,…
1
vote
2 answers

Create data stream in Angular

I have a service that uses Observable to get data from database. It seems that it gets data only once . I would that it listen when a user adds data to the DB then stream to Angular. service to get all data getAllProj(): Observable
Hamza Haddad
  • 1,516
  • 6
  • 28
  • 48
1
vote
0 answers

Building a scoring function based on inventory age and value

I need to build a scoring function to rank items as they arrive in the inventory(data streams). The function will represent both the inventory value(V) and the Age of inventory(A)(from the time at which it was bought). Score = 3V + 7A. The scoring…
1
vote
1 answer

Node.JS and Java PUB/SUB

I'm trying to build an application that the communication will be done by a node.js server. This node server will receive messages from others peers. My node.js code is: var zmq = require('zmq'), socket =…
Victor
  • 8,309
  • 14
  • 80
  • 129
1
vote
0 answers

cannot convert string to System.IO.Stream

In this C# Project, I have a JSON file in which I will be serializing data to. As I know, you create a StreamWriter and use that stream writer as a parameter. However, when I create the stream writer with the file path of the JSON file as the…
Sam Bombo
  • 25
  • 5
1
vote
0 answers

Session management in a Neo4J Flink sink

I am developing a data analytics app with Apache Flink and Neo4J (Community Edition). In this application, the Flink sink must save/update relations in Neo4J. Which is the best way for Neo4J session management, and why? First implementation: …