death to the batch job

11
Death to the Batch Job Kyle Baley www.particular.net www.westerndevs.com @kyle_baley

Upload: kyle-baley

Post on 20-Jan-2017

308 views

Category:

Software


0 download

TRANSCRIPT

Page 1: Death to the Batch Job

Death to the Batch Job

Kyle Baleywww.particular.net

www.westerndevs.com @kyle_baley

Page 2: Death to the Batch Job

2

foreach(var customer in customers){ var orderTotal = customer.Orders .Where(o=> o.OrderDate < 365.DaysAgo) .Sum(order => order.OrderValue);

customer.Preferred = orderTotal > 5000;}

Page 3: Death to the Batch Job
Page 4: Death to the Batch Job

4

Page 5: Death to the Batch Job

5

Page 6: Death to the Batch Job

6

Page 7: Death to the Batch Job

7

Page 8: Death to the Batch Job

8

Page 9: Death to the Batch Job

9

Demo

Page 10: Death to the Batch Job

• Not scalable

• Not real-time

• Not terribly efficient10

Summary