Nil*_*ana 1 bulkinsert elasticsearch nest
我正在尝试使用.Net APIin 进行批量插入Elasticsearch,这是我在执行操作时得到的错误;
Error {Type: es_rejected_execution_exception Reason: "rejected execution of org.elasticsearch.transport.TransportService$6@604b47a4 on EsThreadPoolExecutor[bulk, queue capacity = 50, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@51f4f734[Running, pool size = 4, active threads = 4, queued tasks = 50, completed tasks = 164]]" CausedBy: ""} Nest.BulkError
Run Code Online (Sandbox Code Playgroud)
是因为我的系统空间不足还是批量插入功能本身不起作用?我的NEST版本是5.0,Elasticsearch版本也是5.0.
批量插入逻辑的代码;
public void bulkInsert(List<BaseData> recordList, List<String> listOfIndexName) {
BulkDescriptor descriptor = new BulkDescriptor();
foreach (var j in Enumerable.Range(0, recordList.Count)) {
descriptor.Index<BaseData>(op => op.Document(recordList[j])
.Index(listOfIndexName[j]));
}
var result = clientConnection.Bulk(descriptor);
}
Run Code Online (Sandbox Code Playgroud)
正如Val在评论中所说,您可能一次发送的数据超出了集群可以处理的数据.看起来您可能尝试在一个批量请求中发送所有文档,这对于许多文档或大型文档可能无法正常工作.
使用时_bulk,您需要在多个批量请求中将数据发送到群集,并找到可以在每个批量请求中发送的最佳文档数,以及可以同时发送到群集的批量请求数.
这里没有适用于最佳大小的硬性规则,因为它可能会因文档的复杂程度,分析方式,群集硬件,群集设置,索引设置等而有所不同.
最好的办法是从一个合理的数字开始,比如在一个请求中说500个文档(或者在你的上下文中有意义的一些数字),然后从那里开始.计算每个批量请求的总大小(以字节为单位)也是一种很好的方法.如果性能和吞吐量不足,则增加文档数,请求字节大小或并发请求,直到您开始看到es_rejected_execution_exception.
使用IObservable<T>和Observable设计模式,NEST 5.x附带了一个方便的帮助程序,使批量请求更容易
void Main()
{
var client = new ElasticClient();
// can cancel the operation by calling .Cancel() on this
var cancellationTokenSource = new CancellationTokenSource();
// set up the bulk all observable
var bulkAllObservable = client.BulkAll(GetDocuments(), ba => ba
// number of concurrent requests
.MaxDegreeOfParallelism(8)
// in case of 429 response, how long we should wait before retrying
.BackOffTime(TimeSpan.FromSeconds(5))
// in case of 429 response, how many times to retry before failing
.BackOffRetries(2)
// number of documents to send in each request
.Size(500)
.Index("index-name")
.RefreshOnCompleted(),
cancellationTokenSource.Token
);
var waitHandle = new ManualResetEvent(false);
Exception ex = null;
// what to do on each call, when an exception is thrown, and
// when the bulk all completes
var bulkAllObserver = new BulkAllObserver(
onNext: bulkAllResponse =>
{
// do something after each bulk request
},
onError: exception =>
{
// do something with exception thrown
ex = exception;
waitHandle.Set();
},
onCompleted: () =>
{
// do something when all bulk operations complete
waitHandle.Set();
});
bulkAllObservable.Subscribe(bulkAllObserver);
// wait for handle to be set.
waitHandle.WaitOne();
if (ex != null)
{
throw ex;
}
}
// Getting documents should be lazily enumerated collection ideally
public static IEnumerable<Document> GetDocuments()
{
return Enumerable.Range(1, 10000).Select(x =>
new Document
{
Id = x,
Name = $"Document {x}"
}
);
}
public class Document
{
public int Id { get; set; }
public string Name { get; set; }
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1416 次 |
| 最近记录: |