[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-9870":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":10,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":24,"topics":25,"createdAt":10,"pushedAt":10,"updatedAt":38,"readmeContent":39,"aiSummary":40,"trendingCount":16,"starSnapshotCount":16,"syncStatus":41,"lastSyncTime":42,"discoverSource":43},9870,"redpanda","redpanda-data\u002Fredpanda","redpanda-data","Redpanda is a streaming data platform for developers. Kafka API compatible. 10x faster. No ZooKeeper. No JVM!","https:\u002F\u002Fredpanda.com",null,"C++",12200,749,133,280,0,6,28,136,25,101.63,false,"dev",true,[26,27,28,29,30,31,32,33,5,34,35,36,37],"containers","cpp","event-driven","go","kafka","kubernetes","microservices","realtime","seastar","storage-engine","stream-processing","streaming","2026-06-12 04:00:47","# Redpanda\n\n[![Documentation](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdocumentation-black)](https:\u002F\u002Fredpanda.com\u002Fdocumentation)\n[![Slack](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fslack-purple)](https:\u002F\u002Fredpanda.com\u002Fslack)\n[![Twitter](https:\u002F\u002Fimg.shields.io\u002Ftwitter\u002Ffollow\u002Fredpandadata.svg?style=social&label=Follow)](https:\u002F\u002Ftwitter.com\u002Fintent\u002Ffollow?screen_name=redpandadata)\n[![Redpanda University](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FRedpanda%20University-black)](https:\u002F\u002Funiversity.redpanda.com\u002F)\n\u003Cp align=\"center\">\n\u003Ca href=\"https:\u002F\u002Fwww.redpanda.com\u002F\">\u003Cimg src=\"docs\u002Ficon-redpanda.svg\" alt=\"redpanda icon\" width=\"400\">\u003C\u002Fa>\n\u003C\u002Fp>\n\nRedpanda is the most complete, Apache Kafka®-compatible streaming data platform, designed from the ground up to be lighter, faster, and simpler to operate. Free from ZooKeeper™ and JVMs, it prioritizes an end-to-end developer experience with a huge ecosystem of connectors, configurable tiered storage, and more.\n\n# Table of Contents\n\n- [Get started](#get-started)\n  - [Prebuilt packages](#prebuilt-packages)\n    - [Debian\u002FUbuntu](#debianubuntu)\n    - [Fedora\u002FRedHat\u002FAmazon Linux](#fedoraredhatamazon-linux)\n    - [macOS](#macos)\n    - [Other Linux environments](#other-linux-environments)\n  - [Build manually](#build-manually)\n  - [Release candidate builds](#release-candidate-builds)\n    - [RC releases on Debian\u002FUbuntu](#rc-releases-on-debianubuntu)\n    - [RC releases on Fedora\u002FRedHat\u002FAmazon Linux](#rc-releases-on-fedoraredhatamazon-linux)\n    - [RC releases on Docker](#rc-releases-on-docker)\n- [Community](#community)\n- [Resources](#resources)\n\n# Get started\n\n## Prebuilt packages\n\nRedpanda Data recommends using the following free, prebuilt stable releases.\n\n### Debian\u002FUbuntu\n\n```\ncurl -1sLf \\\n  'https:\u002F\u002Fdl.redpanda.com\u002Fnzc4ZYQK3WRGd9sy\u002Fredpanda\u002Fcfg\u002Fsetup\u002Fbash.deb.sh' \\\n  | sudo -E bash\n\nsudo apt-get install redpanda\n```\n\n### Fedora\u002FRedHat\u002FAmazon Linux\n\n```\ncurl -1sLf \\\n  'https:\u002F\u002Fdl.redpanda.com\u002Fnzc4ZYQK3WRGd9sy\u002Fredpanda\u002Fcfg\u002Fsetup\u002Fbash.rpm.sh' \\\n  | sudo -E bash\n\nsudo yum install redpanda\n```\n\n### macOS\n\nDownload the `rpk` [binary here](https:\u002F\u002Fgithub.com\u002Fredpanda-data\u002Fredpanda\u002Freleases). Docker is required on MacOS.\n\n```\nbrew install redpanda-data\u002Ftap\u002Fredpanda && rpk container start\n```\n\n### Other Linux environments\n\nTo install from a `.tar.gz` archive, download the file and extract it into `\u002Fopt\u002Fredpanda`.\n\nFor amd64:\n\n```\ncurl -LO https:\u002F\u002Fvectorized-public.s3.us-west-2.amazonaws.com\u002Freleases\u002Fredpanda\u002F25.2.7\u002Fredpanda-25.2.7-amd64.tar.gz\n```\n\nFor arm64:\n\n```\ncurl -LO https:\u002F\u002Fvectorized-public.s3.us-west-2.amazonaws.com\u002Freleases\u002Fredpanda\u002F25.2.7\u002Fredpanda-25.2.7-arm64.tar.gz\n```\n\nReplace `25.2.7` with the version you want to download. See [Release Notes](https:\u002F\u002Fgithub.com\u002Fredpanda-data\u002Fredpanda\u002Freleases) for available releases.\n\n## Build Manually\n\nRedpanda Data uses [Bazel](https:\u002F\u002Fbazel.build\u002F) as the build system. Bazel automatically manages most of the toolchains and third-party dependencies.\n\nWe rely on [bazelisk](https:\u002F\u002Fgithub.com\u002Fbazelbuild\u002Fbazelisk) to get the right\nversion of bazel needed for the build. You can for example install it as follows\nand add it to your $PATH (or use one of the other suggested ways from their\nrepo).\n\n```\nwget -O ~\u002Fbin\u002Fbazel https:\u002F\u002Fgithub.com\u002Fbazelbuild\u002Fbazelisk\u002Freleases\u002Flatest\u002Fdownload\u002Fbazelisk-linux-amd64 && chmod +x ~\u002Fbin\u002Fbazel\n```\n\nThere are a few system libraries and preinstalled tools our build assumes are\navailable locally. To bootstrap and build redpanda along with all its tests.\n\n```bash\nsudo .\u002Fbazel\u002Finstall-deps.sh\nbazel build --config=release \u002F\u002F...\n```\n\nFor more build configurations, see `.bazelrc`.\n\n## Release candidate builds\n\nRedpanda Data creates a release candidate (RC) build when we get close to a new release, and we publish it to make new features available for testing.\nRC builds are not recommended for production use.\n\n### RC releases on Debian\u002FUbuntu\n\n```bash\ncurl -1sLf \\\n  'https:\u002F\u002Fdl.redpanda.com\u002FE4xN1tVe3Xy60GTx\u002Fredpanda-unstable\u002Fsetup.deb.sh' \\\n  | sudo -E bash\n\nsudo apt-get install redpanda\n```\n\n### RC releases on Fedora\u002FRedHat\u002FAmazon Linux\n\n```bash\ncurl -1sLf \\\n  'https:\u002F\u002Fdl.redpanda.com\u002FE4xN1tVe3Xy60GTx\u002Fredpanda-unstable\u002Fsetup.rpm.sh' \\\n  | sudo -E bash\n\nsudo yum install redpanda\n```\n\n### RC releases on Docker\n\nExample with `v25.1.1-rc1`:\n\n```bash\ndocker pull docker.redpanda.com\u002Fredpandadata\u002Fredpanda-unstable:v25.1.1-rc1\n```\n\n# Community\n\n- [Slack](https:\u002F\u002Fredpanda.com\u002Fslack): This is the primary way the community interacts in real time. :)\n- [Github Discussions](https:\u002F\u002Fgithub.com\u002Fredpanda-data\u002Fredpanda\u002Fdiscussions): This is for longer, async, thoughtful discussions.\n- [GitHub Issues](https:\u002F\u002Fgithub.com\u002Fredpanda-data\u002Fredpanda\u002Fissues): This is reserved only for actual issues. Please use the mailing list for discussions.\n- [Code of Conduct](.\u002FCODE_OF_CONDUCT.md)\n- [Contribute to the Code](.\u002FCONTRIBUTING.md)\n\n# Resources\n\n- [Redpanda Documentation](https:\u002F\u002Fdocs.redpanda.com\u002Fhome\u002F)\n- [Redpanda Blog](https:\u002F\u002Fwww.redpanda.com\u002Fblog)\n- [Upcoming Redpanda Events](https:\u002F\u002Fwww.redpanda.com\u002Fevents)\n- [Redpanda Support](https:\u002F\u002Fsupport.redpanda.com\u002F)\n- [Redpanda University](https:\u002F\u002Funiversity.redpanda.com\u002F)\n","Redpanda 是一个为开发者设计的流数据处理平台，与 Apache Kafka API 兼容。其核心功能包括比 Kafka 快10倍的数据处理速度、无需依赖 ZooKeeper 和 JVM，从而简化了运维复杂度。它基于C++开发，并利用 Seastar 框架来实现高性能异步I\u002FO操作，支持事件驱动架构和微服务应用。此外，Redpanda 提供了丰富的生态系统连接器及可配置的分层存储选项，非常适合需要实时数据处理能力的场景，如在线分析、日志聚合以及物联网数据流处理等。",2,"2026-06-11 03:25:09","top_topic"]