Elastic.Channels 0.30.0

Prefix Reserved
dotnet add package Elastic.Channels --version 0.30.0
                    
NuGet\Install-Package Elastic.Channels -Version 0.30.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Elastic.Channels" Version="0.30.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Elastic.Channels" Version="0.30.0" />
                    
Directory.Packages.props
<PackageReference Include="Elastic.Channels" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Elastic.Channels --version 0.30.0
                    
#r "nuget: Elastic.Channels, 0.30.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Elastic.Channels@0.30.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Elastic.Channels&version=0.30.0
                    
Install as a Cake Addin
#tool nuget:?package=Elastic.Channels&version=0.30.0
                    
Install as a Cake Tool

Elastic.Channels

A thread-safe, batching ChannelWriter for high-throughput data pipelines.

Most users install Elastic.Ingest.Elasticsearch which pulls this package in as a transitive dependency.

What it provides

  • Automatic batching — flushes when the buffer hits a max count or a max age, whichever comes first
  • Concurrent export — configurable parallelism for sending batches
  • Retry with backoff — configurable retry count and backoff function
  • Backpressure — bounded inbound buffer with BoundedChannelFullMode control (drop or wait)

BufferOptions

Each channel exposes a BufferOptions instance that controls buffering behavior:

Option Description
InboundBufferMaxSize The maximum number of in flight instances that can be queued in memory. If this threshold is reached, events will be dropped
OutboundBufferMaxSize The number of events a local buffer should reach before sending the events in a single call to Elasticsearch.
OutboundBufferMaxLifetime The maximum age of buffer before its flushed
ExportMaxConcurrency Controls how many concurrent Export operations may occur
ExportMaxRetries The maximum number of retries over Export
ExportBackOfPeriod Func that calculates an appropriate backoff time for a retry
ExportBufferCallback Called once whenever a buffer is flushed, excluding retries
WaitHandle Inject a waithandle that will be signalled after each flush, excluding retries.

Documentation

Full documentation: https://elastic.github.io/elastic-ingest-dotnet/

  • Architecture — how the two-stage buffered pipeline works
  • Channels — buffer tuning, callbacks, serialization
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Elastic.Channels:

Package Downloads
Elastic.Ingest.Transport

Provides components to build a buffer-backed channel for publishing events to distributed systems over HTTP through Elastic.Transport

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.30.0 206 2/26/2026
0.29.0 331 2/24/2026
0.28.0 213 2/24/2026
0.27.0 330 2/23/2026
0.26.0 216 2/23/2026
0.25.0 207 2/23/2026
0.24.0 354 2/22/2026
0.23.0 197 2/22/2026
0.21.0 211 2/22/2026
0.20.0 329 2/20/2026
0.19.0 473 2/17/2026
0.18.1 233 2/17/2026
0.18.0 222 2/16/2026
0.17.1 36,117 11/13/2025
0.17.0 497 11/13/2025
0.16.3 12,457 10/21/2025
0.16.2 444 10/21/2025
0.16.1 437 10/21/2025
0.16.0 808 10/20/2025
0.15.1 1,439 10/14/2025
Loading failed