Last active
June 4, 2019 15:53
-
-
Save djptek/475e6b850cea63d7f2a1fe4787b8ea7a to your computer and use it in GitHub Desktop.
desert island disks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT desert_island_disks | |
{ | |
"mappings": { | |
"_doc": { | |
"properties": { | |
"album": { | |
"type": "keyword" | |
}, | |
"artist": { | |
"type": "keyword" | |
}, | |
"year": { | |
"type": "date", | |
"format": "yyyy" | |
} | |
} | |
} | |
} | |
} | |
POST desert_island_disks/_doc/_bulk | |
{"index": {} } | |
{"year": "1958", "artist": "John Coltrane", "album": "Blue Train"} | |
{"index": {} } | |
{"year": "1959", "artist": "Kenny Burrell", "album": "A Night at the Vanguard"} | |
{"index": {} } | |
{"year": "1962", "artist": "Nina Simone", "album": "At The Village Gate"} | |
{"index": {} } | |
{"year": "1966", "artist": "The Beatles", "album": "Revolver"} | |
{"index": {} } | |
{"year": "1970", "artist": "B.B. King", "album": "Indianola Mississippi Seeds"} | |
{"index": {} } | |
{"year": "1976", "artist": "Joan Armatrading", "album": "Joan Armatrading"} | |
{"index": {} } | |
{"year": "1978", "artist": "Queen", "album": "Jazz"} | |
{"index": {} } | |
{"year": "1981", "artist": "Joan Jett", "album": "I Love Rock 'n' Roll"} | |
{"index": {} } | |
{"year": "1983", "artist": "Eurythmics", "album": "Sweet Dreams are made of this)"} | |
{"index": {} } | |
{"year": "1994", "artist": "Portishead", "album": "Dummy"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment