Skip to content

Instantly share code, notes, and snippets.

@omarkhan
Created May 31, 2012 14:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save omarkhan/2843912 to your computer and use it in GitHub Desktop.
Save omarkhan/2843912 to your computer and use it in GitHub Desktop.
Elasticsearch: very long snippets
# Put a document into the index
curl -s -XPUT 'localhost:9200/test/doc/1' -d '{
"text": "Search Advanced Search NAVIGATION Home Government in Action Economy Infrastructures Power, Oil & Gas National Security Rule of Law & Good Governance Education Healthcare Delivery Food Security Diplomacy Anti Corruption Politics and Power Environment Other News News Summary Matters of the Moment Photographs Speeches Last Updated: May 11th, 2012 - 16:13:24 Photographs President Goodluck Jonathan at the 2012 World Economic Forum on Africa in Addis Ababa Photographs of President Goodluck Jonathan at the 2012 World Economic Forum on Africa, in Addis Ababa, Ethiopia, May 9 - 11, 2012 May 11, 2012, 14:22 President Goodluck Jonathan in Abidjan for a one-day visit Photograph of President Goodluck Jonathan in Abidjan, Cote d'\''Ivoire, on a one-day visit, on Wednesday, May 9, 2012 May 9, 2012, 20:58 President Goodluck Jonathan at the Presidential workshop on Power President Goodluck Jonathan at the Presidential Workshop on Power at the Banquet Hall, Presidential Villa, Abuja, on Monday, May 7, 2012 May 7, 2012, 13:10 President Goodluck Jonathan rounds off state visit to Germany Photographs of President Goodluck Jonathan rounding off his 3-day state visit to Germany on Friday, April 20, 2012 Apr 20, 2012, 16:48 President Goodluck Jonathan'\''s 3-day State Visit to Germany Photographs of the three-day state visit of President Goodluck Ebele Jonathan to Germany from Wednesday, April 18 - 20, 2012 Apr 19, 2012, 18:13 More Headlines Top of Page GOVERNMENT President Vice President Office of the First Lady Federal Executive Council The State House"
}' > /dev/null
# Refresh
curl -s -XPOST 'localhost:9200/test/_refresh' > /dev/null
# Search
curl -XGET 'localhost:9200/test/_search?pretty=true' -d '{
"highlight": {
"fields": {
"text": {
"number_of_fragments": 1,
"fragment_size": 150
}
}
},
"query": {
"query_string": {
"query": "\"goodluck jonathan\""
}
}
}'
# Output (note very long snippet):
# --------------------------------
#
# {
# "took" : 9,
# "timed_out" : false,
# "_shards" : {
# "total" : 5,
# "successful" : 5,
# "failed" : 0
# },
# "hits" : {
# "total" : 1,
# "max_score" : 0.10848885,
# "hits" : [ {
# "_index" : "test",
# "_type" : "doc",
# "_id" : "1",
# "_score" : 0.10848885, "_source" : {
# "text": "Search Advanced Search NAVIGATION Home Government in Action Economy Infrastructures Power, Oil & Gas National Security Rule of Law & Good Governance Education Healthcare Delivery Food Security Diplomacy Anti Corruption Politics and Power Environment Other News News Summary Matters of the Moment Photographs Speeches Last Updated: May 11th, 2012 - 16:13:24 Photographs President Goodluck Jonathan at the 2012 World Economic Forum on Africa in Addis Ababa Photographs of President Goodluck Jonathan at the 2012 World Economic Forum on Africa, in Addis Ababa, Ethiopia, May 9 - 11, 2012 May 11, 2012, 14:22 President Goodluck Jonathan in Abidjan for a one-day visit Photograph of President Goodluck Jonathan in Abidjan, Cote d'Ivoire, on a one-day visit, on Wednesday, May 9, 2012 May 9, 2012, 20:58 President Goodluck Jonathan at the Presidential workshop on Power President Goodluck Jonathan at the Presidential Workshop on Power at the Banquet Hall, Presidential Villa, Abuja, on Monday, May 7, 2012 May 7, 2012, 13:10 President Goodluck Jonathan rounds off state visit to Germany Photographs of President Goodluck Jonathan rounding off his 3-day state visit to Germany on Friday, April 20, 2012 Apr 20, 2012, 16:48 President Goodluck Jonathan's 3-day State Visit to Germany Photographs of the three-day state visit of President Goodluck Ebele Jonathan to Germany from Wednesday, April 18 - 20, 2012 Apr 19, 2012, 18:13 More Headlines Top of Page GOVERNMENT President Vice President Office of the First Lady Federal Executive Council The State House"
# },
# "highlight" : {
# "text" : [ " Photographs Speeches Last Updated: May 11th, 2012 - 16:13:24 Photographs President <em>Goodluck</em> <em>Jonathan</em> at the 2012 World Economic Forum on Africa in Addis Ababa Photographs of President <em>Goodluck</em> <em>Jonathan</em> at the 2012 World Economic Forum on Africa, in Addis Ababa, Ethiopia, May 9 - 11, 2012 May 11, 2012, 14:22 President <em>Goodluck</em> <em>Jonathan</em> in Abidjan for a one-day visit Photograph of President <em>Goodluck</em> <em>Jonathan</em> in Abidjan, Cote d'Ivoire, on a one-day visit, on Wednesday, May 9, 2012 May 9, 2012, 20:58 President <em>Goodluck</em> <em>Jonathan</em> at the Presidential workshop on Power President <em>Goodluck</em> <em>Jonathan</em> at the Presidential Workshop on Power at the Banquet Hall, Presidential Villa, Abuja, on Monday, May 7, 2012 May 7, 2012, 13:10 President <em>Goodluck</em> <em>Jonathan</em> rounds off state visit to Germany Photographs of President <em>Goodluck</em> <em>Jonathan</em> rounding off his 3-day state visit to Germany on Friday, April 20, 2012 Apr 20, 2012, 16:48 President Goodluck Jonathan's 3-day State Visit to Germany Photographs of the three-day state visit of President Goodluck Ebele Jonathan to Germany from Wednesday, April 18 - 20, 2012 Apr 19, 2012, 18:13 More Headlines Top of Page GOVERNMENT President Vice President Office of the First Lady Federal Executive Council The State House" ]
# }
# } ]
# }
# }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment