Hi all,

I have installed the RabbitMQ plugin and added a user "elasticsearch" with 
administrator rights in RabbitMQ.

The plugin is loaded fine:
[2015-01-22 11:33:01,974][INFO ][plugins                  ] [node2] loaded 
[river-rabbitmq], sites []

I created the river with these settings:

curl -XPUT 'http://10.99.35.231:9200/_river/rabbitriver/_meta' -d '{
    "type" : "rabbitmq",
    "rabbitmq" : {
        "host" : "10.99.35.231",
        "port" : 5672,
        "user" : "elasticsearch",
        "pass" : "elasticsearch",
        "vhost" : "/",
        "queue" : "elasticsearch",
        "exchange" : "elasticsearch",
        "routing_key" : "elasticsearch",
        "exchange_declare" : true,
        "exchange_type" : "direct",
        "exchange_durable" : true,
        "queue_declare" : true,
        "queue_bind" : true,
        "queue_durable" : true,
        "queue_auto_delete" : false,
        "heartbeat" : "30m",
        "qos_prefetch_size" : 0,
        "qos_prefetch_count" : 10,
        "nack_errors" : true
    },
    "index" : {
        "bulk_size" : 100,
        "bulk_timeout" : "10ms",
        "ordered" : false
    }
}'

echo ""

curl -XPUT 'http://10.99.35.231:9200/_river/_settings' -d '{
    "index" : {
        "number_of_replicas" : 0
    }
}'

However, when I index to ES using the Bulk API, no queues are created and 
the status stays idle, but the data gets indexed to ES "normally" 
apparently without using RabbitMQ. I am using the RabbitMQ Web GUI for 
monitoring.

Question: what am I doing wrong here? 

Thanks!

/JZ


-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/d9b1a183-71fa-479e-8577-b870254bd71d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to