What I don't understand is why you generate an index and want to store it in elasticsearch. You could use the plugin as Jörg suggested, transfer you data to elasticsearch, set index:true for the fields you want and set store:false in the mapping. This way you get an index build by elasticsearch, can search on it, get the id as result and the data is not stored (except metadata, if you set it to be stored). See http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-core-types.html#mapping-core-types.
Cheers, Andrej Am Mittwoch, 6. August 2014 15:34:11 UTC+2 schrieb [email protected]: > > Using this plugin would lead to a migration from mysql data into > Elasticsearch. > > So let me reformulate my question: > > My infrastructure is like this: > > client---->Elasticsearch > | > | > -------->mySQL > > So I have a client which generates an index and some metadata for a > mail(header and body). The mail is stored in mySQL. And the client-side > generated index and metadata is stored in Elasticsearch. > > The reason is because I have > 1 TB of mail content every day. This > content shall still be written to mySQL. Elasticsearch shall keep only the > index. Is that possible? And how? > > Regards > Michael > > > Am Mittwoch, 6. August 2014 13:21:09 UTC+2 schrieb [email protected]: >> >> Hello, >> >> I want to use Elasticsearch or only indexing and searching E-Mails. We >> want to store the meta-info within Elasticsearch, keeping the content/body >> of every Mail in an mySQL database. So Elasticsearch shall have a reference >> to the mail body. >> >> Is that possible and how? >> >> Regards >> Michael >> > -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/d1ffc059-abad-4b11-8179-35ed3c077cbf%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
