Skip to main content
  1. Posts/

Still Using Wiki/Confluence? You Might Be Producing Garbage

·574 words·2 mins· ·
Xianpeng Shen
Author
Xianpeng Shen
DevOps & Build Engineer | Python Enthusiast | Open Source Maintainer

I don’t know if you’ve used Confluence or similar Wiki tools in your enterprise. When I first encountered it, I thought it was great: powerful features, support for various formatting styles, ability to insert images, videos, icons, and view historical versions—the user experience was far easier than Git.

But slowly, I discovered a huge problem: everyone can create and maintain their own Wiki pages.

Initially, this freedom seemed like an advantage. But over time, problems arose: the same topic might have multiple versions written by different people. Especially when projects or products are transferred from one team to another (common in multinational companies), new team members may not continue maintaining the original documents but instead prefer to start from scratch, recording their own understanding.

As a result, old Wikis become obsolete with personnel turnover (the original authors may have already left), and the new Wiki content is incomplete or even inaccurate. Knowledge sedimentation is not only ununified but even more chaotic.

I’ve always believed that Wiki tools themselves are good, but without a unified management mechanism and a Pull Request approval process like Git, they easily become breeding grounds for garbage information.

In contrast, open-source communities do a much better job.

Take the Python community as an example:

Anyone with suggestions for modifying these documents must submit them via PR, which undergoes review and CI checks before merging. Moreover, because it’s an open-source project, community users actively participate in feedback and improvement, helping to maintain high-quality documentation over the long term.

But in contrast, inside enterprises, it’s completely different:

  • Multiple people write their own Wikis, resulting in inconsistent quality;
  • Many content silos lack maintenance; once personnel turnover occurs, old documents become “obsolete”;
  • More importantly, internal documentation lacks a public review mechanism and external feedback channels, making it difficult to detect or correct errors.

Another point might be more realistic and brutal: within enterprises, employees lack the motivation to maintain documentation. Because a meticulously written, flawless “perfect document” might one day mean you can be “seamlessly replaced.” In contrast, keeping key details in your own head provides a greater sense of “job security.”

Therefore, document governance is fundamentally not about tools but about people. Without cultural and process support, even the most advanced tools can become dumping grounds for information garbage.

Documentation and code are inseparable. My experience in the open-source community has taught me: truly excellent individuals often single-handedly support a team’s quality and rhythm. They are passionate about technology, take proactive responsibility, and are willing to share, driving healthy project development.

In contrast, problems in some enterprise projects often stem from the opposite direction. When team members lack a sense of ownership, personnel turnover is frequent, or individuals with mediocre abilities have the most opinions, the result is only more piling onto the legacy codebase.


Finally, have you had similar experiences? How does your company manage internal documentation and code? Please share your thoughts in the comments.


Please indicate the author and source when reprinting this article. Do not use it for any commercial purposes. Follow the WeChat public account “DevOps攻城狮”.

Related

Still using pip and venv? You're outdated! Try uv!
·570 words·3 mins
uv is a Python package management tool developed by the Astral team. It replaces the functionality of pip, venv, and pip-tools, offering faster dependency resolution and a more modern project management approach.
Microsoft and NASA Use It? My 4-Year-Old Side Project Hit 100 Stars
cpp-linter-action is a GitHub Action that provides C/C++ code formatting and static analysis capabilities. It uses clang-format and clang-tidy, supporting various configurations and custom rules. Since its creation in 2021, the project has been used by several well-known organizations and open-source projects.
My Patience with Accessing GitHub is Wearing Thin
·299 words·1 min
Many programmers, especially those in China, are frustrated by access issues with GitHub. This article shares my personal experiences and reflections on network problems.
Setting up Sphinx + ReadTheDocs from Scratch - Rapidly Deploying Automated Documentation
·562 words·2 mins
In open-source projects or team collaborations, Sphinx + ReadTheDocs provides an easy-to-maintain, automatically deployable documentation system. This article documents the configuration process and considerations.
Markdown — Not So Great Anymore? Why More and More Python Projects Use RST?
·600 words·2 mins
Markdown and reStructuredText (RST) are two commonly used markup languages. This article compares their advantages and disadvantages and shares usage suggestions in different scenarios.
Why Are More and More Enterprise Users Abandoning VMware?
·1259 words·3 mins
Following Broadcom’s acquisition of VMware, many enterprise users are seeking alternatives. Nutanix, as a hyper-converged infrastructure (HCI) solution, offers lower costs and a simpler management interface, making it a good option.