For questions pertaining to the measurement or improvement of latency in a system.
0
votes
1answer
15 views
Icecast and Darkice combination for live streaming
I have successfully installed icecast and darkice on my ubuntu machine and was able to stream live on my lan. but to my disappointment it has a 15sec to 20sec delay.This is very poor performance. I ...
0
votes
1answer
110 views
Fast counting semaphore for JVM [closed]
Looking for implementation of counting semaphore with two methods like below but more efficient - with less latency of parking/unparking of waiting threads:
public class CountingSemaphore {
private ...
1
vote
1answer
55 views
Threaded low latency audio on Android
The short version:
I'm developing a synth app and using Opensl with low latency. I was doing all the audio calculation in the Opensl callback funktion (I know I should not but I did anyway). Now the ...
-3
votes
1answer
49 views
What is the absolutely fastest way to output a signal to external hardware in modern PC? [closed]
I was wondering, what is the absolutely fastest way (lowest latency) to produce external signal (for example CMOS state change from 0 to 1 on electrical wire connected to other device etc.) from PC, ...
1
vote
1answer
61 views
High throughput vs low latency in HDFS
I tried to define what the high throughput vs low latency means in HDFS in my own words, and came up with the following definition:
HDFS is optimized to access batches of data set quicker (high
...
1
vote
1answer
132 views
Looking for ExecutorService with thread pool & minimal schedule latency [closed]
Looking for ExecutorService like ThreadPoolExecutor or ForkJoinPool but with minimal latency for adding tasks to work queue and dequeueing them for execution.
Highly desired for it to be CPU cache ...
0
votes
0answers
38 views
how good c++ clone of disruptor? [closed]
I can not find too much information about c++ clone of disruptor located here Original (Java) version of disruptor is evolving but there are no activity in c++ project.
How good fast and stable c++ ...
0
votes
2answers
120 views
How can I prefetch infrequently used code?
I want to prefetch some code into the instruction cache. The code path is used infrequently but I need it to be in the instruction cache or at least in L2 for the rare cases that it is used. I have ...
0
votes
0answers
50 views
Is “epoll” faster than “select” even when there is only one connection?
I have tried in this way:Create a server and a client in same PC , and send a packet from client to server.Once server side receive the packet , it sends the same packet back to client . I looped this ...
0
votes
0answers
70 views
Low-latency infiniband - Enabling SDP_NODELAY without code changes (Java)
We are looking to use the Sockets Direct Protocol (SDP) for RDMA to acheive the lowest latency network hops possible.
For small packets, lowest latency on a TCP connection is achieved by using the ...
1
vote
0answers
55 views
how to implement arbitration of feed A and feed B in FAST financial protocol?
I need to implement feeds arbitration for FAST protocol. Problem is pretty common and there are even hardware solutions As problem is wide known i do think there should be at least general suggestions ...
-2
votes
1answer
177 views
Why would the Nexus 7 and Nexus 10 have different audio latency with the same OS? [closed]
I have read that audio latency has been reduced to as low as 12ms on the Android 4.2 Jelly Bean OS. However, I have also read that this improvement is available on the Nexus 10 but not on the Nexus ...
1
vote
0answers
110 views
Serial communication with minimal delay
I have a computer which is connected with external devices via serial communication (i.e. RS-232/RS-422 of physical or emulated serial ports). They communicate with each other by frequent data ...
1
vote
3answers
75 views
How to declare function which must be implemented and not virtual?
I'm using class to declare interface. I just want to define method signature. This method must be implemented in any non-abstract subclass. I don't need method to be virtual. This is default behaviour ...
2
votes
3answers
125 views
should I use thread affinity for “latency-critical” threads?
In my HFT trading application I have several places where I receive data from network. In most cases this is just a thread that only receives and process data. Below is part of such processing:
...
7
votes
1answer
248 views
Tomcat sporadic latency
I have been micro-optimizing our page response time on Tomcat and in almost all cases I will see a response time of 50ms if I refresh over and over again but if the page is not hit for a second or two ...
3
votes
2answers
163 views
refactoring code with a lot of “locks” to more lock-free code
upd thanks to Matthew Watson for noticing and note that i plan to port my code to c++-linux so I prefer "platform-independent" code
My trading application is almost lock-free. The code below is the ...
0
votes
0answers
129 views
migrating C# application to ultra-low-latency Linux application [closed]
I've trading system that wrote completely on C#. I do trade Ultra-low latency strategies. It has been found that Windows itself is not suitable for ULL and I plan to migrate to Linux.
My application ...
0
votes
0answers
43 views
Which fiber 1GbE NICs are recommended for low latency applications such as trading? [closed]
I can find many vendors offering low-latency NICs with 10GbE ports.
However, it's not clear which 1GbE cards are appropriate for low-latency applications.
How does fiber compare to copper in terms of ...
1
vote
1answer
165 views
High latencies loading stores in an ExtJS 4.1 MVC application
I'm currently working to turn a web app made with a homemade interface library into a standard ExtJS MVC application. Everything works fine except Ajax requests which suffer higher latencies on page ...
0
votes
2answers
117 views
lowest possible expected HTTPS latency?
On my site, I have an average latency (when not backing up, etc) of ~150ms for a particular AJAX file (the crux of the UI). I've reduced that down from ~250ms by doing a few server-side/databases ...
2
votes
3answers
275 views
should i try to avoid “new” keyword in ultra-low-latency software?
I'm writing HFT trading software. I do care about every single microsecond. Now it written on C# but i will migrate to C++ soon.
Let's consider such code
// Original
class Foo {
....
// method ...
0
votes
1answer
30 views
Which audio APIs can support speculative evaluation and correction?
Speculative evaluation (aka speculative execution) is an effective approach to achieving low-latency code at the cost of occasional rework (inefficiency). Speculative evaluation is a common low-level ...
2
votes
2answers
112 views
Unithreaded design or multithreaded design? [closed]
So here is my scenario:
I read from a socket and based on the contents on the packet i put the packet into an appropriate queue. So if i have 10 queues there will be 10 if- else -ifs or 10 cases of a ...
2
votes
2answers
135 views
Weird garbage production when instantiating Objects in Java
I am profiling the garbage behavior of java.lang.String and it looks like each time you instantiate a string for the first time inside any class it always generate garbage. Would anyone know why?
...
2
votes
2answers
109 views
Is compaction really inevitable for all JVM GC implementations?
On this link it is said that:
These pauses are the result of an inevitable requirement to compact
the heap to free up space. Collectors use different strategies to
delay these events, but ...
3
votes
2answers
228 views
What is the fastest way for two JVMs in the same machine to communicate? [closed]
The ones that come to mind are sockets (localhost) and memory-mapped file. Does anyone know what approach would be the best for a low-latency application?
@trashgod I am looking for latency in ...
0
votes
0answers
59 views
Realtime priority and realtime priority queueing in Flash with very low latency?
Is it possible to perform realtime priority processing and queueing in Flash at exceptionally low latency levels? We have some rather large data streams (they are raw audio and probably should be ...
1
vote
5answers
1k views
Low latency serial communication on Linux
I'm implementing a protocol over serial ports on Linux. The protocol is based on a request answer scheme so the throughput is limited by the time it takes to send a packet to a device and get an ...
2
votes
1answer
988 views
Node.js Live Streaming: Avoid buffering
I've written a small nodeJS server that outputs system audio captured by ffmpeg on Windows (using DirectShow) to the browser as a streaming MP3 file. The audio needs to be as live as possible, with ...
5
votes
2answers
268 views
What is the fastest way to send data from one thread to another in C++?
I have tried an experiment where I built a simple Producer/Consumer program. They run in separate threads. The producer generates some data and the consumer picks it up in another thread. The ...
0
votes
0answers
157 views
Very low latency streaming [closed]
I have question about very high latency streaming method which I need to apply. I need to do such thing:
Stream video frame by frame from MachineA (can be computer or
embedded device) to ...
0
votes
0answers
240 views
compensating latency on ARM interrupts?
I'm working on a project on a STM32F4 CPU, generating signals.
I have a generic timer on CPU clock (no prescaler) on a STM32 triggering interrupts on overflow, to generate a periodic signal with GPIO ...
2
votes
1answer
276 views
Where can I find some sample Java code for SolarFlare OpenOnLoad Kernel Bypass?
Simple questions to get anyone started:
I know I need a special Network Interface Card (nic) to do this. I am assuming it has to be the ones SolarFlare makes. What is the cheapest one I can get that ...
1
vote
1answer
507 views
Java fail-over framework/library
Is there any framework/library that takes care of active/passive failover? Ideally it should be fast, lightweight and embeddable. I've found a few but they don't quite fit the criteria...
...
3
votes
1answer
297 views
sub-millisecond latency in Core Audio
Is it possible to play sounds with sub-millisecond latency using Core Audio?
I've tried using AudioQueues with different sizes and numbers of buffers, and I've tried using AudioUnits, but I have ...
-4
votes
2answers
89 views
What are the real-time compute solutions that can take raw semistructured data as input?
Are there any technologies that can take raw semistructured, schemaless big data input (say from HDFS or S3), perform near-real-time compute on it, and generate output that can be queried or plugged ...
23
votes
1answer
8k views
Node.js, Socket.io, Redis pub/sub high volume, low latency difficulties
When conjoining socket.io/node.js and redis pub/sub in an attempt to create a real-time web broadcast system driven by server events that can handle multiple transports, there seems to be three ...
1
vote
0answers
271 views
Disruptor pattern with variable-duration “business logic”
How can the disruptor be used effectively on processes where there are variable-duration "business logic" tasks? Has it been done before?
Can it be done with a second ring buffer processing the ...
1
vote
1answer
3k views
Why Google public DNS(8.8.8.8)'s ping latency so low?
I use just-ping to ping Google public DNS server, which IP is 8.8.8.8.
just-ping can ping a host from 50 locations worldwide.
I found that DNS's latency is low around the world. Many cities are far ...
2
votes
1answer
291 views
Analyzing jHiccup latency. Source of 57us hiccups
I am measuring "hiccups" using jHiccup tool build by Azul Systems. It collects data to identify the frequency and duration of pause times (hiccups) that occur while a JVM runs a Java application. It ...
1
vote
1answer
601 views
Java: low latency performance measurements
Is the process of measuring performance for low latency Java apps different from that of measuring performance for non low latency Java apps? If yes, how so, and are there any specific tools used for ...
4
votes
3answers
3k views
Windows 8 - low latency audio
I'm considering developing an app for the upcoming Windows 8. The app requires low-latency audio recording and playback, and I'm trying find out whether the OS will support that (as opposed to other ...
0
votes
1answer
547 views
Windows Sleep Microseconds for Low Latency Thread Communication
Is there any way I could suspend the thread for 1-2 microseconds? (Note 1 microsecond = 1/1000 miliseond). I know this question has been asked but so far there is no good answer for this. Here is my ...
9
votes
3answers
3k views
High Frequency Trading in the JVM with Scala/Akka
Let's imagine an hypothetical HFT system in Java, requiring (very) low-latency, with lots of short-lived small objects somewhat due to immutability (Scala?), thousands of connections per second, and ...
0
votes
2answers
172 views
Who manages the threads in Java [closed]
I would like to know who manages the threads created by the JVM in Java?
5
votes
2answers
707 views
In-process communication between wars in the same container
What options are there to achieve low-latency communication between two wars running in the same jetty-container?
I basically need to call a service in one war from the other, but can't afford the ...
3
votes
3answers
195 views
C# to Java latency sensitive class conversion, would TreeMap replace SortedList in my case?
Im replicating a C# class in Java. (Im a Java newbie.)
My class needs to track int values associated with doubles. It then needs to create an Alerter(int) whenever a value crosses below or a above ...
2
votes
1answer
296 views
PyAudiere alternatives for Mac OSX?
I am working on a music application in Python. I am using PyAudiere for low-latency audio playback, but I found that it is not very easy to get working on Mac OSX (I haven't managed to compile it ...
3
votes
1answer
3k views
Java Netty load testing issues
I wrote the server that accepts connection and bombards messages ( ~100 bytes ) using text protocol and my implementation is able to send about loopback 400K/sec messages with the 3rt party client. I ...

