Elastic.Ingest.Elasticsearch 0.11.3
Elastic.Ingest.Elasticsearch
Elastic.Channels
implementations of BufferedChannelBase
that allows data to pushed to either indices or data streams
DataStreamChannel<TEvent>
A channel that specializes to writing data with a timestamp to Elasticsearch data streams. E.g given the following document.
public class TimeSeriesDocument
{
[JsonPropertyName("@timestamp")]
public DateTimeOffset Timestamp { get; set; }
[JsonPropertyName("message")]
public string Message { get; set; }
}
A channel can be created to push data to the logs-dotnet-default
data stream.
var dataStream = new DataStreamName("logs", "dotnet");
var bufferOptions = new BufferOptions { }
var options = new DataStreamChannelOptions<TimeSeriesDocument>(transport)
{
DataStream = dataStream,
BufferOptions = bufferOptions
};
var channel = new DataStreamChannel<TimeSeriesDocument>(options);
NOTE: read more about Elastic's data stream naming convention here: https://www.elastic.co/blog/an-introduction-to-the-elastic-data-stream-naming-scheme
we can now push data to Elasticsearch using the DataStreamChannel
var doc = new TimeSeriesDocument
{
Timestamp = DateTimeOffset.Now,
Message = "Hello World!",
}
channel.TryWrite(doc);
Bootstrap target data stream
Optionally the target data stream can be bootstrapped using the following.
await channel.BootstrapElasticsearchAsync(BootstrapMethod.Failure, "7-days-default");
This will try and set up the target data stream with the 7-days-default
ILM policy.
Throwing exceptions if it fails to do so because BootstrapMethod.Failure
was provided
An index template with accompanying component templates will be created based on the type and dataset portion of the target datastream.
IndexChannel<TEvent>
A channel that specializes in writing catalog data to Elastic indices. Catalog data is typically data that has an id of sorts.
Given the following minimal document
public class CatalogDocument
{
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("title")]
public string Title { get; set; }
[JsonPropertyName("created")]
public DateTimeOffset Created { get; set; }
}
We can create an IndexChannel<>
to push CatalogDocument
instances.
var options = new IndexChannelOptions<CatalogDocument>(transport)
{
IndexFormat = "catalog-data-{0:yyyy.MM.dd}",
BulkOperationIdLookup = c => c.Id,
TimestampLookup = c => c.Created,
};
var channel = new IndexChannel<CatalogDocument>(options);
now we can push data using:
var doc = new CatalogDocument
{
Created = date,
Title = "Hello World!",
Id = "hello-world"
}
channel.TryWrite(doc);
This will push data to catalog-data-2023.01.1
because TimestampLookup
yields Created
to IndexFormat
.
IndexFormat
can also simply be a fixed string to write to an Elasticsearch alias/index.
BulkOperationIdLookup
determines if the document should be pushed to Elasticsearch using a create
or index
operation.
Bootstrap target index
Optionally the target index can be bootstrapped using the following.
await channel.BootstrapElasticsearchAsync(BootstrapMethod.Failure, "7-days-default");
This will try and set up the target data stream with the 7-days-default
ILM policy.
Throwing exceptions if it fails to do so because BootstrapMethod.Failure
was provided
An index template with accompanying component templates will be created based named using IndexFormat
.
CatalogChannel<TDocument>
(experimental)
Where IndexChannel<>
and DataStreamChannel<>
are build for time-series
use-cases CatalogChannel<TDocument>
is build
for cases where we expect to write all data to a single index during the limited lifetime of the application.
It inherits IndexChannel<>
and therefor equally ensures index and component templates get registered.
var options = new CatalogIndexChannelOptions<MyDocument>(transport)
{
SerializerContext = ExampleJsonSerializerContext.Default,
GetMapping = () => // language=json
$$"""
{
"properties": {
"message": {
"type": "text"
}
}
}
"""
};
var c = new CatalogIndexChannel<MyDocument>(options);
await c.BootstrapElasticsearchAsync(BootstrapMethod.Failure);
This will by default write all documents to mydocument-{DateTimeOffset.UtcNow:yyyy.MM.dd.HHmmss}
where the DateTimeOffset.UtcNow
gets queried only once during the channel's instantiation.
You can wait for documents to be indexed and refresh elasticsearch at your expected termination point.
await c.WaitForDrainAsync();
await c.RefreshAsync();
After which you can use you apply the following aliases:
mydocument-latest
the last written indexmydocument
the active search alias
await c.ApplyAliasesAsync();
You can also do this separately:
await c.ApplyLatestAliasAsync();
// Call this later to swap search alias over over to the latest index
await c.ApplyActiveSearchAliasAsync();
SemanticIndexChannel<TDocument>
(experimental)
A specialization of CatalogIndexChannel<TDocument>
var options = new SemanticIndexChannelOptions<MyDocument>(transport)
{
BufferOptions = bufferOptions,
CancellationToken = cancellationTokenSource.Token,
SerializerContext = ExampleJsonSerializerContext.Default,
InferenceCreateTimeout = TimeSpan.FromMinutes(5),
GetMapping = (inferenceId, searchInferenceId) => // language=json
$$"""
{
"properties": {
"message": {
"type": "text",
"fields": {
"semantic": {
"type": "semantic_text",
"inference_id": "{{inferenceId}}"
}
}
}
}
}
"""
};
var c = new SemanticIndexChannel<MyDocument>(options);
The bootstrapping of which by default ensures that inference endpoints using default Elastic-built LLM providers are registered.
However, external inference identifiers can be provided as well.
var options = new SemanticIndexChannelOptions<MyDocument>(transport)
{
UsePreexistingInferenceIds = true
InferenceId = "my-inference-id",
SearchInferenceId = "my-search-inference-id"
};
Showing the top 20 packages that depend on Elastic.Ingest.Elasticsearch.
Packages | Downloads |
---|---|
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
2 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
10 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
11 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
12 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
13 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
14 |
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description
|
16 |
.NET 8.0
- Elastic.Ingest.Transport (>= 0.11.3)
.NET Standard 2.0
- Elastic.Ingest.Transport (>= 0.11.3)
.NET Standard 2.1
- Elastic.Ingest.Transport (>= 0.11.3)
Version | Downloads | Last updated |
---|---|---|
0.11.3 | 3 | 06/03/2025 |
0.11.2 | 1 | 06/04/2025 |
0.11.1 | 1 | 05/29/2025 |
0.11.0 | 1 | 06/04/2025 |
0.10.0 | 2 | 05/24/2025 |
0.9.0 | 1 | 05/22/2025 |
0.8.0 | 12 | 02/23/2025 |
0.7.5 | 12 | 01/01/2025 |
0.7.4 | 13 | 01/01/2025 |
0.7.3 | 12 | 01/01/2025 |
0.7.2 | 13 | 01/01/2025 |
0.7.1 | 12 | 01/01/2025 |
0.7.0 | 12 | 01/01/2025 |
0.6.0 | 12 | 01/01/2025 |
0.5.7 | 13 | 01/01/2025 |
0.5.6 | 12 | 01/01/2025 |
0.5.5 | 12 | 01/01/2025 |
0.5.4 | 13 | 01/01/2025 |
0.5.3 | 13 | 01/01/2025 |
0.5.2 | 13 | 01/01/2025 |
0.5.1 | 12 | 01/01/2025 |
0.5.0 | 12 | 01/01/2025 |
0.4.3 | 11 | 01/01/2025 |
0.4.2 | 12 | 01/01/2025 |
0.4.1 | 12 | 01/01/2025 |
0.4.0 | 13 | 01/01/2025 |
0.3.2 | 12 | 01/01/2025 |
0.3.1 | 13 | 01/01/2025 |
0.3.0 | 11 | 01/01/2025 |
0.2.2 | 12 | 01/01/2025 |
0.2.1 | 12 | 01/01/2025 |
0.2.0 | 13 | 01/01/2025 |
0.1.0 | 11 | 01/01/2025 |