Skip to content

Instantly share code, notes, and snippets.

@jedrazb
Last active March 21, 2025 09:03
Show Gist options
  • Save jedrazb/60e9400cbe40addfd9e4337749c28431 to your computer and use it in GitHub Desktop.
Save jedrazb/60e9400cbe40addfd9e4337749c28431 to your computer and use it in GitHub Desktop.
Orders in Elasticsearch index (paste to ES dev concole)
PUT orders
POST _bulk
{ "index" : { "_index" : "orders", "_id" : "1007" } }
{ "id": "1007", "customer": "David Wilson", "date": "2025-02-26", "total": 429.99, "status": "processing", "items": ["Bike Computer", "Heart Rate Monitor"] }
{ "index" : { "_index" : "orders", "_id" : "1004" } }
{ "id": "1004", "customer": "Sarah Williams", "date": "2025-02-22", "total": 859.97, "status": "processing", "items": ["Carbon Fiber Wheelset", "Tubeless Tire Setup"] }
{ "index" : { "_index" : "orders", "_id" : "1010" } }
{ "id": "1010", "customer": "Jennifer Anderson", "date": "2025-02-28", "total": 449.75, "status": "completed", "items": ["Bike Repair Stand"] }
{ "index" : { "_index" : "orders", "_id" : "1008" } }
{ "id": "1008", "customer": "Lisa Martinez", "date": "2025-02-27", "total": 379.50, "status": "completed", "items": ["Road Bike Saddle", "Handlebar Tape"] }
{ "index" : { "_index" : "orders", "_id" : "1001" } }
{ "id": "1001", "customer": "John Smith", "date": "2025-02-15", "total": 752.99, "status": "completed", "items": ["Carbon Fiber Frame", "Clipless Pedals"] }
{ "index" : { "_index" : "orders", "_id" : "1006" } }
{ "id": "1006", "customer": "Emily Davis", "date": "2025-02-25", "total": 419.98, "status": "shipped", "items": ["Cycling Shorts"] }
{ "index" : { "_index" : "orders", "_id" : "1005" } }
{ "id": "1005", "customer": "Michael Brown", "date": "2025-02-24", "total": 349.95, "status": "completed", "items": ["MTB Tires", "Inner Tubes", "Tire Levers"] }
{ "index" : { "_index" : "orders", "_id" : "1003" } }
{ "id": "1003", "customer": "Robert Johnson", "date": "2025-02-20", "total": 399.98, "status": "shipped", "items": ["Hydraulic Disc Brakes", "Bike Maintenance Kit"] }
{ "index" : { "_index" : "orders", "_id" : "1009" } }
{ "id": "1009", "customer": "James Taylor", "date": "2025-02-28", "total": 689.99, "status": "shipped", "items": ["Premium Cycling Jersey", "Road Bike Pedals", "Power Meter"] }
{ "index" : { "_index" : "orders", "_id" : "1002" } }
{ "id": "1002", "customer": "Jane Doe", "date": "2025-02-18", "total": 329.99, "status": "completed", "items": ["Mountain Bike Handlebar", "Grips"] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment