python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Improve performance of .Net core analytics application using Azure
We have an analytics application developed using .net core, which combines the output from two existing data sources and then responds to customer requests for data about specific companies. Applicati...
Venkat
Votes: 0
Answers: 1
How to get the start and end time of a tumbling window?
I get a stream of data that has CreatedOn and UpdatedOn time field.
I need to get a count of Created and Updated records by TumblingWindow of 1 hour.
How can I filter CreatedOn to be between the Tumbl...
Xavier John
Votes: 0
Answers: 1
Stream Analytics: Best parameters to choose for the autopause of a day wise TUMBLINGWINDOW stream job and best trigger time to set for that function
Context
I have a daywise TUMBLINGWINDOW (similar to the one shown below)
SELECT
DATEADD(day, -1, System.Timestamp()) AS WindowStart
System.Timestamp() AS WindowEnd,
TollId,
COUNT(*)
...
Curious
Votes: 0
Answers: 2
Getting EADDRINUSE error while running stream analytics job locally in VS code
I am trying to run a stream analytics job locally in VS code. I am getting this error "Error: listen EADDRINUSE: address already in use 127.0.0.1:8999 : Port 8999 is already used by another local...
Binil
Votes: 0
Answers: 1