Skip to content

Instantly share code, notes, and snippets.

@shrink0r
Last active August 29, 2015 14:01
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrink0r/82af462b281b4b547f0b to your computer and use it in GitHub Desktop.
Save shrink0r/82af462b281b4b547f0b to your computer and use it in GitHub Desktop.

create index

curl -XPUT localhost:9200/localnews/ -d @localnews.index.json

create mapping

curl -XPUT localhost:9200/localnews/news_item/_mapping -d @localnews.mapping.json

bulk index documents

curl -XPOST localhost:9200/_bulk -d @localnews.bulk --data-binary
{
"settings": {
"number_of_shards": 2,
"number_of_replicas": 1,
"analysis": {
"analyzer": {
"DefaultAnalyzer": {
"type": "custom",
"tokenizer": "whitespace",
"filter": [
"lowercase"
]
},
"AutoCompleteAnalyzer": {
"type": "custom",
"tokenizer": "whitespace",
"filter": [
"lowercase",
"edge"
]
},
"IcuAnalyzer_DE": {
"type": "custom",
"tokenizer": "keyword",
"filter": [
"collation_de"
]
}
},
"filter": {
"snowball": {
"type": "snowball",
"language": "German2"
},
"edge": {
"type": "edgeNGram",
"min_gram": 1,
"max_gram": 10,
"side": "front"
},
"collation_de": {
"type": "icu_collation",
"language": "de",
"country": "DE",
"alternate": "shifted",
"caseLevel": true,
"caseFirst": "upper",
"numeric": true,
"hiraganaQuaternaryMode": false
}
}
}
}
}

Local News of Berlin (Dataset)

Download the raw data here: https://s3-us-west-2.amazonaws.com/elasticsearch-hackfest/localnews.bulk

This LocalNews dataset contains 32606 records of local news for Berlin. Each item is related to a district and has a (lon/lat) geo coordinate. For information on Berlin's district/neighborhood structure see:

http://berlin.barwick.de/information/districts/index.html

Further more every item has a category and optional tags.

One news item has the following fields:

  • id:text An id which is unique inside this dataset.
  • title:text A news item's title.
  • text:text The news item's text/content.
  • teaser:text Shorter than text, can be used for teasers...
  • publish_date:date Point of time at which an item was published (ISO8601 date format)
  • source:text Holds a news item's source, reporting entity.
  • category:text A news item's category; one of: Polizeimeldungen, Kiezleben, Kiezkultur, Bekanntmachungen, Stadtteilentwicklung
  • tags:text A list of arbitrary tags.
  • location:object An object describing a news item's location.
  • coordinates:geopoint Holds the WGS84 longitude & latitude values that localize a news item's.
  • street:text
  • zipcode:text
  • administrative_district:text An news item's disrict's official/administrative name.
  • district:text Holds an item's "old" district name (for example Prenzlauer Berg was it's own district not so long ago)
  • neighborhood:text Holds the neighborhood in Berlin that a news item relates to. (Grunewald, Niederschönhausen etc.)
  • city:text
  • name:text

Below an example news item in the JSON format:

{
    "id": "localnews-10001",
    "location": {
        "coordinates": {
            "lat": 52.48127,
            "lon": 13.43558
        },
        "administrative_district": "Neukölln",
        "district": "Neukölln",
        "neighborhood": "Neukölln",
        "street": "Karl-Marx-Straße 83",
        "name": "Rathaus Neukölln",
        "city": "Berlin",
        "zipcode": "12043"
    },
    "title": "Aktuelle Bebauungspläne liegen im Rathaus aus",
    "tags": [],
    "category": "bekanntmachungen",
    "teaser": "Die Bebauungspläne für die Grundstücke Hermannstraße 134 bis 137A sowie eine Teilfläche des Grundstücks Hermannstraße 133 liegen im Fachbereich Stadtplanung aus. Bewohner können sich hier bis 25. Oktober 2012 über den Stand der Dinge informieren.",
    "text": "Wesentliches Ziel ist die planungsrechtliche Sicherung der vorhandenen Wohnbebauung sowie der Schaffung neuer Wohnbauflächen im Ortsteil Neukölln durch die Festsetzung von Allgemeinen Wohngebieten (WA). Die Erschließung wird mittels privater Verkehrsflächen und Straßenverkehrsflächen gesichert.\nDas Verfahren wird gemäß § 13a des Baugesetzbuchs als beschleunigtes Verfahren ohne Durchführung einer Umweltprüfung nach § 2 Abs. 4 des Baugesetzbuchs durchgeführt.\n\nDie Bürger sind innerhalb der Auslegungszeit aufgefordert, Anregungen vorzubringen. Dabei besteht auch die Möglichkeit, sich unmittelbar online zu beteiligen.\n\nDer Plan kann von Montag bis Donnerstag von 8.30 Uhr bis 16.30 Uhr und freitags von 8.30 Uhr bis 15.30 Uhr im Rathaus Neukölln eingesehen werden.\nDer Bebauungsplanentwurf kann auch im Internet eingesehen werden unter: http://www.berlin.de/ba-neukoelln/verwaltung/bebauungsplaene/bplan.html",
    "source": "Bezirksamt Neukölln",
    "publish_date": "2012-10-09T12:32:31+0200"
}
{
"news_item" : {
"dynamic": false,
"index_analyzer": "DefaultAnalyzer",
"search_analyzer": "DefaultAnalyzer",
"properties" : {
"title": {
"type" : "multi_field",
"fields": {
"title": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"text": {"type": "string"},
"teaser": {"type": "string"},
"publish_date": {
"type": "date",
"format": "date_optional_time"
},
"category": {
"type" : "multi_field",
"fields": {
"category": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"tags": {
"type" : "multi_field",
"fields": {
"tags": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"location": {
"type": "object",
"properties": {
"coordinates": {"type": "geo_point"},
"zipcode": {
"type" : "multi_field",
"fields": {
"postCode": {
"type": "string"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"street": {
"type" : "multi_field",
"fields": {
"street": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"administrative_district": {
"type" : "multi_field",
"fields": {
"administrative_district": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"district": {
"type" : "multi_field",
"fields": {
"district": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"neighborhood": {
"type" : "multi_field",
"fields": {
"neighborhood": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"city": {
"type" : "multi_field",
"fields": {
"city": {
"type": "string"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
},
"name": {
"type" : "multi_field",
"fields": {
"name": {
"type": "string"
},
"suggest": {
"type": "string",
"analyzer": "AutoCompleteAnalyzer"
},
"raw": {
"type": "string",
"analyzer": "IcuAnalyzer_DE"
}
}
}
}
}
}
}
}
@graste
Copy link

graste commented May 28, 2014

The mapping.json file specifies a ICU plugin for sorting correctly in german etc. You can remove that part from the mapping or install the necessary plugin:

bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.0.0

This should make the indexing work then.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment