I want to use it like temp table in SQL. That mean, I can create it, update and delete temp type in ElasticSearch with name each type is various. In my case with SQL, temp table can call many time and control them by name with suffix is containerNo. So in ElasticSearch, I don't know how to set name for temp type and control it. I was researched about temp index, temp type.. and I knowed plug in DeleteByQuery for delete type and delete index. But I still used it. I code with ElasticSearch 2.4 and .NET C#. Please help me !
Asked
Active
Viewed 240 times
0
-
There's no notion of temporary index in ES, but any index you create can be treated as a temporary one. An index has the meaning you give it. So very simply: create index, do some stuff on it, delete it, done. – Val Oct 06 '16 at 05:45
-
Thanks for your comment. I will try it – Chí Trung Phan Oct 06 '16 at 06:39