gpt4 book ai didi

ruby - Ruby-Elastic Search和RabbitMQ-数据导入丢失,脚本无提示崩溃

转载 作者:行者123 更新时间:2023-12-03 02:08:20 26 4
gpt4 key购买 nike

堆垛机

我在RabbitMQ队列中有很多消息(在我的开发环境中的localhost上运行)。消息的有效负载是一个JSON字符串,我想直接加载到Elastic Search中(目前也正在localhost上运行)。我编写了一个快速的ruby脚本,以将消息从队列中拉出并将它们加载到ES中,如下所示:

#! /usr/bin/ruby
require 'bunny'
require 'json'
require 'elasticsearch'

# Connect to RabbitMQ to collect data
mq_conn = Bunny.new
mq_conn.start
mq_ch = mq_conn.create_channel
mq_q = mq_ch.queue("test.data")

# Connect to ElasticSearch to post the data
es = Elasticsearch::Client.new log: true

# Main loop - collect the message and stuff it into the db.
mq_q.subscribe do |delivery_info, metadata, payload|
begin
es.index index: "indexname",
type: "relationship",
body: payload

rescue
puts "Received #{payload} - #{delivery_info} - #{metadata}"
puts "Exception raised"
exit
end
end
mq_conn.close

队列中大约有4,000,000条消息。

运行脚本时,我看到一堆消息(例如30条)被很好地加载到Elastic Search中。但是,我看到大约500条消息正在排队。
root@beep:~# rabbitmqctl list_queues
Listing queues ...
test.data 4333080
...done.
root@beep:~# rabbitmqctl list_queues
Listing queues ...
test.data 4332580
...done.

然后,脚本会悄悄退出,而不会告诉我一个异常。 begin / rescue块永远不会触发异常,因此我不知道为什么脚本要提早完成或丢失这么多消息。任何提示我下一步应该如何调试。

一种

最佳答案

我在这里添加了一个简单的工作示例:

https://github.com/elasticsearch/elasticsearch-ruby/blob/master/examples/rabbitmq/consumer-publisher.rb

如果不提供测试数据示例,则很难调试示例。

Elasticsearch的“河”功能已被弃用,最终将被删除。如果RabbitMQ和Elasticsearch是基础架构的核心部分,那么您绝对应该花时间编写自己的自定义馈送器。

关于ruby - Ruby-Elastic Search和RabbitMQ-数据导入丢失,脚本无提示崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22172975/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com