Store ES query output

I want to store ES query output back to ES. will it possible?

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/047e145b-b9ec-4cfa-ae91-826127e887b0%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

On a client level. Not by elasticsearch on its own.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 17 janv. 2014 à 07:18, abhi patel abhiage@gmail.com a écrit :

I want to store ES query output back to ES. will it possible?

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/047e145b-b9ec-4cfa-ae91-826127e887b0%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/25796A8C-6872-4034-ABEC-1474542B9EBC%40pilato.fr.
For more options, visit https://groups.google.com/groups/opt_out.

Why not consider using memcached,redis?

2014/1/17 abhi patel abhiage@gmail.com

I want to store ES query output back to ES. will it possible?

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/047e145b-b9ec-4cfa-ae91-826127e887b0%40googlegroups.com
.
For more options, visit https://groups.google.com/groups/opt_out.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CALkU6TLDnY1dAXykxd9eu61%3DQqCkc3ad9X0%3DD_qrZrW0aNDRUg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

You can use the knapsack plugin
https://github.com/jprante/elasticsearch-knapsack to create another index
out of the results of a query.

Example:

curl -XPOST 'http://localhost:9200/fromindex/_export/copy?map={"fromindex":"toindex"}'
-d '
{
"query" : {
...
}
}
'

Jörg

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CAKdsXoGrYMGwqHKTJ1dNh0dWWJpqSvi35r9xoWMQvFec8RvRPA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.