vote up 3 vote down star
1

I am quite new to Lean/Kanban, but have poured over online resources over the last few weeks and have come up with a question that I haven't found a good answer for. Lean/Kanban seems otherwise such a good fit for our company, who is already using Scrum, but have reached some limitations inside that methodology. I hope someone here can give me a good idea.

As I see it, one of the biggest advantages of Scrum over Waterfall is the use of sprints. By having everything ready every 14 days you get short feedback cycles and can release often. However, as I have understood from reading about Lean, there are some costs associated with this (for example, time spent in sprint planning meetings, team commitment meetings & some problems with finding something useful for everyone at the end of the sprints).

Lean/Kanban will remove these wastes, but only at the cost of not being able to release every 14 days. Or have I missed an important point? For, in Kanban, how can you work on new development tasks and release at the same time? How do you make sure you don't ship something that is only halfway done? And how can you test it properly?

My best "solutions/ideas" so far are:

  • Don't release often and allow the waste associated with running out of new development tasks. Not really a solution to the question asked though.
  • Develop in branches and then merge into the main trunk. Makes you have to support at least two branches continuously internally.
  • Use some smart automatic labelling system to automatically build only certain finished tasks and not others.

As a summary, my question is: When you use Lean/Kanban, can you release often without introducing waste? Or is release often not part of Lean/Kanban?

Additional info specific to my company: We use Team Foundation System & Source Control and have previously had some bad experiences in regards to branching and merging. Could this be solved simply by bringing in some expertise in this area?

flag

3 Answers

vote up 2 vote down check

The problem you describe seems more a source control program -- how to separate done features from features in-progress, than about Kanban. You seem to put a heavy penalty on running many branches -- which is the case for source control systems not based around the idea of multiple branches. On Distributed Source Control systems, such as GIT and Mercury, everything is a branch, and having them and working with them is lightweight.

I assume you read this blog about Kanban vs SCRUM, and the associated practical guide?

And, in answer to your question, yes, you can release often with Kanban.

link|flag
Yes, well noted! I do put a penalty on running many branches. I should perhaps have stated that we use Team Foundation System & Source Control and have had some costs related to branches previously. – Halvard Aug 7 at 15:25
I have read the guide before, but didn't find anything concrete in it about how to release often. As I realize after reading your response, and thinking about it, I have been restricted in my thinking on concrete problems related to my company, and that you are of course correct in saying that you can release often with Kanban. – Halvard Aug 7 at 19:00
vote up 0 vote down

For source control I'd highly recommend Perforce. It makes branching and integrating changes from other branches relatively straightforward, and provides the best interface for source control that I've seen so far.

Continuous integration helps as well - i.e. lots of small, more than daily commits, instead of huge and potentially challenging merges. Tools like CruiseControl can help highlight when the source gets broken by a bad commit. Also, if everyone makes many small changes then conflicting changes will be rare.

I'd also advice not to try to follow things like lean, scrum, kanban & co. too closely. Just solve the problems yourself, looking to these ideas for guidance rather than instruction. The specifics of your problems will more than likely require some flexibility for the best management.

link|flag
vote up 0 vote down

The team I manage uses Kanban and we release around every two weeks. If you're strict about what gets integrated into your mainline code branch (tests passing, customer approved, etc.), Kanban allows you to release whenever you want. You need to make sure that the stories moving through your system aren't co-dependent in order to do this, but on my team that's usually not a problem - a large part of our work involves maintenance, which consists of several unrelated bug fixes / features per release.

link|flag
Thanks for the feedback! As a side note: We have decided to try Kanban from October on, for a trial period, to see if we like it. – Halvard Aug 25 at 20:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.