Elastic Search : Mapping date format and sort by date
While working on the job board for Socketloop.com recently, I need to sort the Elastic Search result based on the date when the entry is created.
Before the sorting part can happen, first the mappings need to be configured with the type "date" with a proper formatting.
"postDate": {"type": "date", "format" : "yyyy-MM-dd HH:mm:ss"}
and below is a snippet from the Elastic Search mapping.
"mappings" : {
"people": {
"properties": {
"username": {"type": "string"},
"postDate": {"type": "date", "format" : "yyyy-MM-dd HH:mm:ss"}
}
}
and add the 'sort' section in my Elastic Search query
$searchquery = '{
"size" : 9999,
"sort" : [
{ "postDate" : {"order" : "desc"}}
]
}';
and the result be seen at https://profession.socketloop.com/people (still pretty new and not many records to sort for the moment - March 2015)
Reference :
http://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-date-format.html
See also : PHP : How to parse ElasticSearch JSON ?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.1k Golang : Delete certain files in a directory
+12k Golang : Encrypt and decrypt data with x509 crypto
+23k Golang : Get ASCII code from a key press(cross-platform) example
+13.5k Golang : unknown escape sequence error
+4.8k Golang : Get a list of crosses(instruments) available to trade from Oanda account
+5.2k Golang *File points to a file or directory ?
+14.9k Golang : How to add color to string?
+4.6k HTTP common errors and their meaning explained
+13k Golang : Date and Time formatting
+6k Golang : Process non-XML/JSON formatted ASCII text file example
+20.4k PHP : Convert(cast) int to double/float