Last active
July 2, 2020 07:29
-
-
Save EmmanuelDemey/b917e809301a1e16b1059f32cca248b8 to your computer and use it in GitHub Desktop.
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
DELETE person-v3 | |
PUT person-v3 | |
{ | |
"mappings" : { | |
"properties" : { | |
"about" : { | |
"type" : "text" | |
}, | |
"address" : { | |
"type" : "text" | |
}, | |
"age" : { | |
"type" : "long" | |
}, | |
"balance" : { | |
"type" : "text", | |
"fields" : { | |
"keyword" : { | |
"type" : "keyword", | |
"ignore_above" : 256 | |
} | |
} | |
}, | |
"company" : { | |
"type" : "text" | |
}, | |
"email" : { | |
"type" : "text", | |
"fields" : { | |
"keyword" : { | |
"type" : "keyword", | |
"ignore_above" : 256 | |
} | |
} | |
}, | |
"eyeColor" : { | |
"type" : "keyword" | |
}, | |
"friends" : { | |
"properties" : { | |
"id" : { | |
"type" : "long" | |
}, | |
"name" : { | |
"type" : "text", | |
"fields" : { | |
"keyword" : { | |
"type" : "keyword", | |
"ignore_above" : 256 | |
} | |
} | |
} | |
} | |
}, | |
"gender" : { | |
"type" : "keyword" | |
}, | |
"guid" : { | |
"type" : "text", | |
"index": false | |
}, | |
"id" : { | |
"type" : "text", | |
"index": false | |
}, | |
"index" : { | |
"type" : "long", | |
"index": false | |
}, | |
"isActive" : { | |
"type" : "boolean" | |
}, | |
"location" : { | |
"type": "geo_point" | |
}, | |
"name" : { | |
"type" : "text" | |
}, | |
"phone" : { | |
"type" : "keyword" | |
}, | |
"picture" : { | |
"type" : "text", | |
"index": false | |
}, | |
"registered" : { | |
"type": "date", | |
"format": "yyyy-MM-dd" | |
}, | |
"tags" : { | |
"type" : "text", | |
"fields" : { | |
"keyword" : { | |
"type" : "keyword", | |
"ignore_above" : 256 | |
} | |
} | |
} | |
} | |
} | |
} | |
POST _bulk | |
{ "index": { "_index": "person-v3"}} | |
{"id":"5efc838ae34596031f536ede","index":0,"guid":"a1655eb4-1cf4-43e7-ad78-0c55ed7d5019","isActive":true,"balance":"$1,390.78","picture":"http://placehold.it/32x32","age":31,"eyeColor":"green","name":"Slater Bolton","gender":"male","company":"UNEEQ","email":"[email protected]","phone":"+1 (979) 477-3379","address":"327 Clarkson Avenue, Levant, Montana, 2946","about":"Enim aliquip velit velit in eu ullamco minim consequat dolor. Ut nisi sint tempor esse laboris dolore quis laboris enim cupidatat consequat. Dolore quis voluptate anim nisi elit voluptate dolore occaecat mollit aliqua est quis. Fugiat quis est exercitation dolore magna consequat culpa velit velit ipsum. Excepteur adipisicing dolore ipsum sunt minim. Ad labore enim Lorem eiusmod pariatur deserunt consectetur dolor consectetur incididunt pariatur.\r\n","registered":"2014-01-21","location": {"lat":57.72327,"lon":84.390264},"tags":["ex","elit","commodo","quis","proident","nulla","laboris"],"friends":[{"id":0,"name":"Saunders Duran"},{"id":1,"name":"Lucy Rivers"},{"id":2,"name":"Goodwin Burgess"}]} | |
{ "index": { "_index": "person-v3"}} | |
{"id":"5efc838abe4a882e9347dc0b","index":1,"guid":"b693a19b-4416-42c2-abad-6f4e680c4f82","isActive":false,"balance":"$3,202.50","picture":"http://placehold.it/32x32","age":40,"eyeColor":"brown","name":"Hammond Fields","gender":"male","company":"ZIORE","email":"[email protected]","phone":"+1 (915) 462-2172","address":"270 Losee Terrace, Waterview, Maryland, 9939","about":"Minim fugiat consequat ullamco anim enim ut consectetur officia minim minim. Dolore esse adipisicing ex consequat eiusmod voluptate elit exercitation ad dolor nulla est. Anim non nulla ullamco reprehenderit duis incididunt nulla mollit ullamco occaecat adipisicing.\r\n","registered":"2017-04-19","location": {"lat":58.424858,"lon":140.785309},"tags":["nisi","do","nulla","laboris","sunt","reprehenderit","tempor"],"friends":[{"id":0,"name":"Kathrine Mccullough"},{"id":1,"name":"Faith Michael"},{"id":2,"name":"Carissa Bender"}]} | |
{ "index": { "_index": "person-v3"}} | |
{"id":"5efc838a6bd9f4b4179e7fea","index":2,"guid":"6c843bb1-1076-4d55-a91e-a9b11cbfa462","isActive":true,"balance":"$2,501.72","picture":"http://placehold.it/32x32","age":23,"eyeColor":"brown","name":"Ollie Wade","gender":"female","company":"FURNITECH","email":"[email protected]","phone":"+1 (999) 446-2016","address":"801 Pacific Street, Hiwasse, Maine, 446","about":"Enim est veniam voluptate fugiat nisi ex duis aute veniam sit amet. Labore esse ea ipsum minim reprehenderit deserunt aliqua magna incididunt sit occaecat aliquip. Et laborum excepteur fugiat ullamco adipisicing mollit esse. Consequat proident deserunt non excepteur culpa ea adipisicing enim. Nulla commodo dolore magna velit do aliquip laboris elit. Et ullamco ut sit sit nisi ea occaecat consequat labore deserunt.\r\n","registered":"2015-11-13", "location": {"lat":87.539679,"lon":61.611496},"tags":["ut","dolore","fugiat","aute","enim","esse","enim"],"friends":[{"id":0,"name":"Morrow Orr"},{"id":1,"name":"Griffith Head"},{"id":2,"name":"Carson Mason"}]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment