Skip to content

antonfirsov/Tmds.LinuxAsync

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo is meant for trying out implementations for the async engine that powers .NET Core Socket implementation on Linux. The .NET Core implementation is in SocketAsyncEngine.Unix.cs and related classes.

To compare implementations they need to be benchmarks, so the repo will expose a Socket class that provides a subset of System.Net.Sockets.Socket members. These members need to have the same semantics as those of the real Socket. Having this Socket type should allow re-using existing benchmarks written against the Socket class. On top of this Socket we'll also make an ASP.NET Transport implementation, which will allow to run ASP.NET Core benchmarks (like TechEmpower scenarios).

The async engine implementation should also allow implementing async operations for pipe-type FileStream.

For accessing native system functions Tmds.LibC is used. This avoid having to include a native shim library. tkp1n/IoUring is used for io_uring APIs.

Tmds.LinuxAsync

Two async engines implementations are provided. They can be configured an used by setting AsyncEngine.SocketEngine:

// epoll-based with linux AIO for batching
AsyncEngine.SocketEngine = new EPollAsyncEngine(
                                threadCount: Environment.ProcessorCount,
                                useLinuxAio: true);

// io_uring-based
AsyncEngine.SocketEngine = new IOUringAsyncEngine(
                                threadCount: Environment.ProcessorCount);

To use the Socket from this package, add these to the top of your code file:

using Socket = Tmds.LinuxAsync.Socket;
using SocketAsyncEventArgs = Tmds.LinuxAsync.SocketAsyncEventArgs;

Additional properties are provided on SocketAsyncEventArgs:

class SocketAsyncEventArgs
{
  public bool RunContinuationsAsynchronously { get; set; } = true;
  public bool PreferSynchronousCompletion { get; set; } = true;
}

Setting RunContinuationsAsynchronously to false allows SocketAsyncEngine to invoke callbacks directly from the epoll/io_uring thread. This avoid context switching to the ThreadPool.

Tmds.LinuxAsync.Transport

This is a copy of ASP.NET Core Transport.Sockets that uses Tmds.LinuxAsync.Socket instead of System.Net.Sockets.Socket.

The Transport can be used in ASP.NET Core by calling the UseLinuxAsyncSockets IWebHostBuilder extension methods.

class SocketTransportOptions
{
  public bool DispatchContinuations { get; set; } = true; // Sets RunContinuationsAsynchronously
  public bool DeferSends { get; set; } = false;           // Sets !PreferSynchronousCompletion for sends
  public bool DeferReceives { get; set; } = false;        // Sets !PreferSynchronousCompletion for receives
  public bool CoalesceWrites { get; set; } = true;
  public bool ApplicationCodeIsNonBlocking { get; set; } = false;
  public bool DontAllocateMemoryForIdleConnections { get; set; } = true;
}

Setting CoalesceWrites to true defers write operations to an IOQueue. If more data is written to the Pipe before the operation is executed on the IOQueue, it will be part of a single write operation.

Setting ApplicationCodeIsNonBlocking to true causes reads from ASP.NET Core to not get deferred to the ThreadPool. Note something in ASP.NET Core still defers the HTTP Handler to run on the ThreadPool.

Setting DontAllocateMemoryForIdleConnections to false will allocate a buffer for every connection up-front. For idle connections, this is a waste of memory. Setting this to true eliminates a syscall to wait for data to be available.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%