Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have a model(mongoid), in which there are some indexed fields, including created_at(date_time), to_date(date_time) and active (boolean).

On search not getting required result.

Need to search for all active (active == true)records which were created in the last 15 days (created_at > today - 15.days) and to_date should greater that today (to_date > today)

The first two criteria are getting matched, however the to_date criteria is not working

This is the post done from Tire to elasticsearch when record is updated

curl -X POST "http://localhost:9200/project/asset/50ffffc0e13823292c000033" -d '{"active":true,"category":"Share office/Machinary","city":null,"created_at":"2013-01-23T20:50:32+05:30","description":"What","from_date":"2013-01-01T05:30:00+05:30","name":"Surgical Instruments","to_date":"2013-01-25T05:29:59+05:30"}'

This is the query sent on search from Tire to elastic search.

curl -X GET 'http://localhost:9200/project/_search?load=true&pretty' -d '{"query":{"bool":{"must":[{"range":{"to_date":{"gte":"2013-02-03T00:00:00+05:30"}}},{"range":{"created_at":{"gte":"2013-01-09T00:00:00+05:30"}}},{"term":{"active":{"term":true}}}]}}}'

Note that the to_date in the query is to_date":{"gte":"2013-02-03T00:00:00+05:30"}

Resulting in the following hit

"hits" : {
"total" : 1,
"max_score" : 3.6077876,
"hits" : [ {
  "_index" : "project",
  "_type" : "asset",
  "_id" : "50ffffc0e13823292c000033",
  "_score" : 3.6077876, "_source" : {"active":true,"category":"Share office/Machinary","city":null,"created_at":"2013-01-23T20:50:32+05:30","description":"What","from_date":"2013-01-01T05:30:00+05:30","name":"Surgical Instruments","to_date":"2013-01-25T05:29:59+05:30"}
} ]

response has record "to_date":"2013-01-25T05:29:59+05:30"

Model gist

mapping do

  indexes :to_date, :boost => 10, :type => 'date'
  indexes :created_at, :boost => 10, :type => 'date'
  indexes :from_date, :boost => 10, :type => 'date'
  indexes :active, :boost => 10, :type => 'boolean'
end

search_result = Tire.search "project", :load => true do

  query do
     boolean do
      must { range :to_date, { gte: (Date.today.beginning_of_day) } }
      must { range :created_at, { gte: (Date.today.beginning_of_day - 15.days)} }
      must { term :active, true }
     end
  end
end

Have been pulling my hair for quite sometime. Any help would be appreciated. If created_at search is working, then why isn't the to_date search working similarly.

Edit:

found the issue. The index was created with incorrect mapping earlier indexes :to_date, :boost => 10, :type => 'String'

 "to_date" : {
    "type" : "string",
    "boost" : 10.0,
    "analyzer" : "standard"
  }

dropped and recreated the index with correct mapping

indexes :to_date, :boost => 10, :type => 'date'

  "to_date" : {
    "type" : "date",
    "boost" : 10.0,
    "format" : "dateOptionalTime"
  }

Its fixed, now. thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.