Multiplle index

My requirement is i am having index twitter i need two table in index like twitts,user it is possible

PUT twitters
{
  "mappings": {
    "user": {
      "properties": {
        "name": { "type": "text" },
        "user_name": { "type": "keyword" },
        "email": { "type": "keyword" }
      }
    },
    "tweet": {
      "properties": {
        "content": { "type": "text" },
        "user_name": { "type": "keyword" },
        "tweeted_at": { "type": "date" }
      }
    }
  }
}

No. It's not.

But you can create:

PUT twitters_users
{
  "mappings": {
      "properties": {
        "name": { "type": "text" },
        "user_name": { "type": "keyword" },
        "email": { "type": "keyword" }
      }
  }
}
PUT twitters_tweet
{
  "mappings": {
      "properties": {
        "content": { "type": "text" },
        "user_name": { "type": "keyword" },
        "tweeted_at": { "type": "date" }
      }
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.