I am storing my documents as follows:

    
{
    _index: "crash-instances-app1"
    _type: "crash"
    _id: "LmSAjgrvSry2ltvsxAVqcw"
    _source: {
        OsInfo: "osinfo1"
        Exception: "exception1"
        Description: "desc1"
        AppId: "app1"
        StackTraces: "stack1"
        Timestamp: 1395751604
        DeviceInfo: "device91"
        Id: "Id-9829"
        ClientId: "client69"
        CrashId: "crash29"
    }
}

querying via 

{
  "query": {
    "term": {
      "AppId": "app1"
    }
  }
}

works great and i get this document back, yet querying via 

{
  "query": {
    "term": {
      "Id": "Id-9829"
    }
  }
}


return nothing.

-- 
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/6fc839a0-c5e8-45b6-bd49-043c36070455%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to