- Imprescindible:
- Theory of Constraints”, Agileee conference, 2009 J. B. Rainsberger A must for any software developer that wants to really understand Agile and Lean.
- Technical Debt related:
- Technical Debt Trap Agile India 2017 Doc Norton (@DocOnDev)
- Debt Metaphor Ward Cunningham
- Microservices:
- Managing Data in Microservices Randy Shoup
- How to Break the Rules GOTO 2017 Dan North
- KEYNOTE: Velocity and Volume (or Speed Wins) Adrian Cockcroft
- Effective Microservices in a Data-Centric World Craft Conf Randy Shoup
- Effective Microservices in a Data-Centric World GOTO 2017 Randy Shoup
- The Virtuous Cycle of Velocity: What I Learned About Going Fast at eBay and Google Randy Shoup
- General technical knowledge:
- Property-based Testing in Practice Alex Chan
- AI as a Service at Scale: Retail Case Study Eldar Sadikov
- Blockades – Treasures of improvements Klaus Leopold and Troy Magennis at LKCE14
- #NoEstimates Allen Holub
Eduardo Ferro Aldama (eferro) personal blog... Expanding my comfort zone. Agile mindset. Software Developer #Python #Go #FLOSS #agile #extremeprogramming https://github.com/eferro https://linktr.ee/eferro Development, Agile, Software Crafter, and random tech and nontech stuff. Opinions are my own.
Monday, August 21, 2017
Good talks/podcasts (Purging the queue III)
Friday, August 18, 2017
Good talks/podcasts (Purging the queue II)
- Jepsen Talk Kyle Kingsbury - JOTB17 Very interesting to understand DBs and related problems/limitations.
- Python: Keynote PyCon 2017 Lisa Guo, Hui Ding Instagram migration to Python3.6
- Go: NewStore TechTalk - Advanced Testing with Go Mitchell Hashimoto
- Podcast: Episode 066: From OO to FP & All the Things in Between w/ Sandi Metz The Elixir Fountain Podcast
- DDD related
- The elephant in the room Greg Young
- Socratic Architecture: Simple Heuristics for Designing Complex Systems DDD eXchange 2017 Vladik Khononov
- Using sagas to maintain data consistency in a microservice architecture Chris Richardson
- Distributed Sagas: A Protocol for Coordinating Microservices JOTB17 Caitie McCaffrey
- General / Non-Technicals:
- How To Multiply Your Time TEDxDouglasville Rory Vaden
- Story telling - The art of delighting your audience Ester de Nicolas
Tuesday, August 15, 2017
Good talks/podcasts (Purging the queue I)
- Agility - Not Enough? Too Much? Trying to Find Just Right
- Lone Star Ruby Conference 2010 Real Software Engineering Glenn Vanderburg
- RailsConf 2016 - Get a Whiff of This Sandi Metz
- Why are people stupid? A scientific approach Eternally Curious #1
- Achieving High Load in Advertising Technology
- Event Sourcing on the JVM Greg Young
- Podcasts:
- The ServerlessCast #6 - Event-Driven Design Thinking
- Boss Level Podcast John Seddon and freedom from command and control
- Agile Architecture with Martin Fowler and Rebecca Wirfs-Brock
- Episode 241 | Tom Gilb - Impactful Value
- .Net Rocks! 1436 DevOps Readiness Assessment with Jez Humble and Nicole Forsgren
- Software engineering daily Gitlab with Pablo Carranza
- Craft Conf 2017
- Effective Microservices in a Data-Centric World Randy Shoup
- Software (r)Evolution: A Crystal Ball to Prioritize Technical Debt Adam Tornhill
- Being Software Driven: It Takes a Platform Cornelia Davis
- Why Actor-Based Systems Are The Best For Microservices Yaroslav Tkachenko
- Machine Learning for Developers Danilo Poccia
Sunday, August 13, 2017
Books I have read lately and Reads In Progress (RIP)
Continuing with my process of recovering my previous reading habit (books-i-have-read-in-last-12-months http://www.eferro.net/search/label/books) these are the books that I read lately:
Read in progress (RIP) :)
- "Nonviolent Communication: A Language of Life" Marshall B. Rosenberg Review
- "The Power of Habit: Why We Do What We Do in Life and Business" Charles Duhigg
- "Los 7 Habitos de la Gente Altamente Efectiva" Stephen R. Covey
- "The Toyota Way" Jeffrey Liker
- "Algorithms to Live By: The Computer Science of Human Decisions" Brian Christian, Tom Griffiths
- "El Arte de Vivir: Meditación Vipassana tal y como la enseña S.N. Goenka [The Art of Living]" William Hart
- "The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life" Mark Manson
- "Tribes: We Need You to Lead Us" Seth Godin
- "The Five Dysfunctions of a Team: A Leadership Fable" Patrick M. Lencioni Review
- "The Happiness Hypothesis: Finding Modern Truth in Ancient Wisdom" Jonathan Haidt
- "Team of Teams: New Rules of Engagement for a Complex World" General Stanley McChrystal, Tantum Collins, David Silverman, Chris Fussell Review
- "Focus: A Simplicity Manifesto in the Age of Distraction" Leo Babauta
- "The Sales Bible: The Ultimate Sales Resource" Jeffrey Gitomer
- "The Ideal Team Player: How to Recognize and Cultivate the Three Essential Virtues: A Leadership Fable" Patrick M. Lencioni
- "Ego Is the Enemy" Ryan Holiday
- "Barking up the Wrong Tree: The Surprising Science Behind Why Everything You Know About Success Is (Mostly) Wrong" Eric Barker
- "Scrum" Jeff Sutherland, JJ Sutherland
Read in progress (RIP) :)
- "The Lean Product Playbook: How to Innovate with Minimum Viable Products and Rapid Customer Feedback" Dan Olsen
- "This is Lean: Resolving the Efficiency Paradox" Niklas Modig, Par Ahlstrom
- "Implementation Patterns" Kent Beck (2º reading)
- "The real startup Book" v0.3
Friday, August 11, 2017
Scalable design pattern sample (tech pill)
Any feedback or improvements of the design will be more than welcomed :)
The problem:
We have to implement a business process with the following characteristics:- The business process (Job1) can be divided into three different sequential phases (S1, S2, S3). For example, we can think about the generation and mailing of all the invoices for all the customer of one account manager.
- The second phase (S2) can be divided in several (hundreds or thousands) individual and independent sub-jobs (S2.1, S2.2, ...). This sub-jobs can be executed/processed in any order. For example, generate and email one invoice. Each sub-job require one minute of process time.
- The complete process should complete in less than 90 minutes without being affected by the number of sub-jobs of the second step (up to 10k sub-jobs).
We also need to:
- Notify when each step starts and when each step finished.
- Generate some statistics of each the process.
- Access to the detailed status of the process at any moment.
- We can have several numbers of concurrent business processes of this type for each customer.
- For the sub-jobs at step 2:
- We have retries for the sub-job execution.
- We can balance the time of the process and the cost.
- We have horizontal scalability.
The Design:
After analyzing the requirements and make a fast web storming session we consider the following events:If we need to include more information about the detailed state of the process we can also signal the starting point of each step using a StepXStarted event. But these Starting Events are not required because we already know when a step started (just when the previous step finished).
Implementation
As we want to implement several functionalities for the same events and we want to have each one completely separated, we can use a distributed log / stream that allows us to design a simple solution to manage the workflow, calculate statistics, compute a detailed status.
The distributed log / stream and the corresponding services can scale using as partition/sharding key the job id or the customer id (assuming that each customer can generate several jobs at the same time).
The Step2 require additional design.
It can be subdivided in several individual jobs (S2.2, S2.2, ...), this jobs can be processed in any order and in parallel so we can have a queue for dispatching this subjobs to a pool workers that can be scaled out if needed.
We can balance the number of workers (and the corresponding cost) with the duration of the Step2 that we want. Each worker get a job description from the queue, execute the job, and include the result in an event (Step2SubjobCompleted) published in the distributed log / stream.
The Workflow Manager should implement a response for each event and generate corresponding events to make the job progress.
The responses for each event are:
Job1Requested:
- Execute Step1
- Publish Step1Completed
Step1Completed:
- Split the Step2 in several subjobs (S2.1, S2.2, ...)
- Store the identifiers of the jobs created (S2.1, S2.2, ...)
- Send the subjobs to the queue of S2 subjobs
Step2SubjobCompleted:
- Mark the id of the job as no longer pending
- Validate if we have jobs pending
- if there is no more jobs pending, publish Step2Completed
Step2Completed:
- Execute Step3
- Publish Step3Completed
Step3Completed:
- Do any garbage recollection needed
- Publish Job1Completed
Job1Completed:
- Nothing, Everything is already done :)
Notes and complementary designs:
- The queue allows duplication so the workflow should be prepared to receive several events Step2SubjobCompleted for the same subjob.
- We can have retries for the queue jobs, so we should include a mechanism to detect when we should stop waiting for Step2SubjobCompleted. For example, we can use a periodic tick event and use this event to decide if we should continue with the next step (for example marking a subjob as an error).
- Is also possible to continue receiving Step2SubjobCompleted even if we are at Step3, the easy solution is to ignore this messages.
- If we select the Job id as the sharding/partition key for the distributed log / stream we can easily scale out the number of workflow processors. We only need to add more stream shards and the corresponding new processes.
- For the fault tolerance of the workflow we can store the events that we already processed and recover in case of failure from this events.
Related references (very recommended):
- Distributed Sagas: A Protocol for Coordinating Microservices Caitie McCaffrey
- Confusion about Saga pattern Roman Liutikov
- Applying the Saga Pattern Caitie McCaffrey
Monday, August 07, 2017
Some good talks from the GOTO 2017 conference
From the GOTO 2017 conference, these are the talks that I liked:
- Debugging Under Fire: Keep your Head when Systems have Lost their Mind Bryan Cantrill
- Idée Fixe David Nolen
- Managing Manager‐less Processes Fred George
- Patterns of Effective Teams Dan North
- The Many Meanings of Event-Driven Architecture Martin Fowler
Subscribe to:
Posts (Atom)