Note: I am a native, so I will introduce the use of Kanban in the software industry.
1. What is Kanban?
Regarding the definition of kanban, I searched a laundry list online. This is a sentence from david andersen. Someone may want to ask who this person is. In a word, Taiichi Ohno is the father of Kanban, and David is a pioneer in introducing Kanban into the IT industry.
No matter whether your development mode is agile (such as XP, FDD, TDD) or traditional development mode (such as waterfall and iteration), Kanban can be introduced into any development framework to support and promote continuous software development.
Personal understanding is that this method of software development process management ensures the continuous integration of software and will not overload your development team. I wonder if Cheng would like to hear this sentence "Don't overload your development team". According to team ability, limit the number of tasks in work in process (WIP).
2. Why is Kanban?
1) Visualize your workflow. The progress of all tasks will be displayed on the billboard, and everyone can understand the progress and progress at a glance.
2) Limit the number of tasks in WIP. Generally speaking, this number is equal to the number of developers in the team.
3) Manage and optimize the process. When a task in WIP is completed, the task with the highest priority in ToDo will be moved to WIP, which is why Kanban is selected when the priority of a project needs to be changed frequently.
4) Quantify the development cycle.
5) Shorten the development cycle. This can actually be understood as finding and solving problems, so as to find more scientific methods to improve development efficiency.
6) The variable push system (just in case) is a pull system (just in time). Only when the team has the ability can we start a new case.
3. Kanban model
According to the billboard of our current project, I drew a billboard wall on it.
1) Separate orders, backlog: What is not done is usually the product department (new demand) or your online support customer service staff (bug). Design: The design is being prepared. Generally speaking, this part is the responsibility of the solution architect or UI designer, and not all tasks will appear in this list. Development: This part is obviously the coding part, and the developer is responsible for it. Testing: The tester is responsible for the testing part, and it is finished: finished, waiting to go online. Each project can build its own kanban according to its own needs. This one above is not unique.
2) Set a limited number of tasks in each of the above processes. This is one of the core ideas of Kanban, which means that only so many tasks can be completed at the same time. For example, if the design is 2, there can only be two tasks at this stage. This usually depends on the number of people.
3) Our project has been launched, so there are often some bugs from customers and some new requirements from our product group, and sometimes it is necessary to improve the function of a certain part of the project. So we use different colors to represent different types of needs. Blue is a bug, green is an improvement and purple is a new requirement. This can make the classification clearer.
4) The product group of our project is the project stakeholders, so they generally prioritize tasks in the backlog. Then after completing a task, the team chooses the next task with the highest priority. Product groups can change the priority of tasks in these backlog at any time, except for the following two cases: 1. The task has already started. Cannot replace the task in progress. 2. The remaining time of the project cycle is less than the expected completion time of the task, and this task cannot be changed to the next higher priority.
4. Paper model
? 1) The work order ID is the unique identification of the task. In our project, we use physical kanban (that is, we buy a big whiteboard and draw the content ourselves). When a task is completed online, we will take it down and input it into the system for backup. So every time we enter the system, we will find these tasks according to the ID.
2) Description of the task. This is what this task is to do.
3) Estimated cycle days is the estimated time required to complete this task. According to this time, we can estimate the possible time to complete all tasks. We can also estimate how many tasks can be completed in an iteration, so that we can better prioritize the tasks in the backlog. Generally, the estimated time is given by the development team through collective discussion.
4) The actual cycle days are the actual time required to complete a task. If this time is far from the estimated cycle days, the whole team will review and summarize what went wrong. So as to solve the problem. Generally speaking, in the initial stage of a new organization, there will be a big difference between the estimated cycle days and the actual cycle days. After several iterations, after everyone knows each other, it is estimated that? The number of cycle days will become more and more accurate.
5) Task priority. Used to sort the things that need to be done first to get the task. This is decided by the product owner, who is called the product owner in scrum and the business user in traditional projects. Who will pay for this project? Our project is decided by the people in the product team.
6) Task leader. This is obviously the person who wants to do this task.
5. The difference between Kanban and Scrum.
Some projects may use Scrum, which is much more complicated than Kanban. Scrum has strict role definition and development cycle management. But kanban is not available. Personally, Scrum is a complete development management framework, which is relatively perfect, while Kanban is only a management tool in the development process and can be put into various development frameworks. You can look at the picture below and compare the difference between Kanban and scrum board. It may not include all the differences.
You can also read this article,/iamdll/article/details/18552607.
6. Kanban tools.
Kanban has many tools, so you can find them online yourself. In our project, we mainly use Physics Kanban, Terreiro and JIRA. Because some of our projects are outsourced, we can only use online tools like Terreiro and JIRA to communicate with suppliers. If you are your own development team, I personally suggest using physical kanban.
7. Work agreement
In fact, work agreements are available not only in Kanban, but also in all agile methodologies. Just to adapt to different methodologies or projects, the agreement will be different. This agreement is not aimed at a team or individual. This is for all the teams involved in the project. The agreement can ensure the steady progress of the project. Here are a few examples.
1) After the task starts, it is not allowed to modify the task requirements or replace the task.
2)2) The estimated time of the task cannot be greater than the remaining time of the iteration (including working time only).
3) Arrive at the company before 9 a.m. and start work, and leave the office at 6 p.m. ..
4) During the meeting, don't use the mobile phone and concentrate on the theme of the meeting.
5) During the meeting, only the contents related to the theme of the meeting are discussed to ensure that the meeting can end on time.
abstract
Each project has its own different environment and personnel composition. Kanban is a tool for process management, and each project can find a suitable way to use it according to its own situation. Everyone will learn more in the process of participation.