惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
罗磊的独立博客
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
J
Java Code Geeks
L
LangChain Blog
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - KevinKenya/nairobi-connector-open-source
2026-05-19 · via Hacker News

English | 简体中文 | Español | Deutsch

Overview

Nairobi OS is a high-performance, distributed data science infrastructure designed for extreme resource efficiency. It enables processing of massive datasets in constrained environments (Edge, IoT, Serverless) by leveraging a specialized Rust-based refinery daemon. By utilizing kernel-level features such as io_uring, memfd, and Huge Pages, Nairobi OS achieves sub-millisecond IPC overhead and zero-copy data pipelines.

Key Features

  • Zero-Copy Ingestion: Hardware-accelerated data loading using io_uring and 1GB Huge Pages.
  • Hardware-Accelerated Visualization: Interactive Jupyter plotting via the Lagos Vision engine (wgpu and egui).
  • Fused Analytics Pipeline: Ingest, crunch, and correlate data in a single D-Bus round trip.
  • Kernel-Bypass Performance: Vectorized analytics leveraging Polars and Rayon for maximum hardware saturation.
  • Sovereign Interface: A fluent Python API that hides the complexity of low-level IPC and memory management.

Architecture

Nairobi OS is built on a triad of specialized components connected via D-Bus and shared memory:

  1. Nairobi Axum Refinery: The high-performance Rust core. Manages raw data ingestion and parallelized analytics.
  2. Nairobi Hub: The IPC orchestrator. Coordinates file descriptors and signals between the refinery and clients.
  3. Lagos Vision: The visual cortex. A headless rendering engine that maps memfd handles directly into the GPU pipeline.
  4. Nairobi Python: The high-level bridge. Provides a Pythonic interface to the Rust ecosystem.
[ Data Source ] -> (io_uring/Huge Pages) -> [ Axum Refinery ]
                                                  |
                                          (D-Bus / memfd / iceoryx2)
                                                  |
                                          [ Nairobi Hub ]
                                             /        \
                             [ Nairobi Python ]    [ Lagos Vision ]
                                     |                    |
                            [ Jupyter Notebook ] <-> [ Visual Output ]

Installation

Prerequisites

  • Operating System: Linux or WSL2 (Kernel 5.10+ required for io_uring and memfd).
  • Rust: 1.70+
  • Python: 3.10+
  • System Libraries:
    sudo apt-get update && sudo apt-get install -y \
        build-essential \
        pkg-config \
        libdbus-1-dev \
        python3-dev \
        dbus-x11 \
        libosmesa6-dev \
        mesa-utils

Build from Source

  1. Clone the Repository:

    git clone https://github.com/KevinKenya/nairobi-connector-open-source
    cd nairobi-connector-open-source
  2. Setup Virtual Environment:

    python3 -m venv .venv
    source .venv/bin/activate
    pip install maturin pyo3-build-config zbus anywidget traitlets
  3. Build the Entire Stack:

    ./build_wheel.sh
  4. Install the Wheel:

    pip install target/wheels/nairobi_os-0.3.1-py3-none-any.whl

System Configuration (Contributor Guide)

Huge Pages

The refinery engine prioritizes 1GB Huge Pages for zero-copy buffers. To enable these on your host:

echo 1 | sudo tee /sys/kernel/mm/hugepages/hugepages-1048576kB/nr_hugepages

Note: If 1GB pages are unavailable, the engine will automatically fall back to Transparent Huge Pages (THP).

io_uring and SQPOLL

The DiracEngine uses io_uring with SQPOLL for maximum I/O throughput. SQPOLL typically requires elevated privileges (CAP_SYS_ADMIN) or a kernel configured with IORING_SETUP_SQPOLL. If the engine cannot initialize SQPOLL, it will fall back to standard io_uring mode.

Usage

import nairobi_os

# Ignite the refinery
nairobi_os.connect()

# Ingest data into a SovereignFrame
df = nairobi_os.read_csv("dataset.csv")

# Perform vectorized analytics
print(f"Mean: {df.column_name.mean()}")

# Spawn interactive visualization
df.plot()

Testing

Nairobi OS includes a comprehensive test suite covering Rust units, IPC integration, and Python bindings.

Running All Tests

# Run Rust tests
cargo test --workspace

# Run Python integration tests
python3 test_nairobi.py

Benchmarking

Detailed performance benchmarks can be run from the nairobi-benchmarks directory:

cd nairobi-benchmarks
pip install -r requirements.txt
python orchestration/benchmark_runner.py --workload workloads/workload_nba_pipeline.yaml

Troubleshooting

  • D-Bus Connection Refused: Ensure dbus-daemon is running. In headless environments, use dbus-launch.
  • Lagos Rendering Issues: Lagos requires a valid GPU driver or OSMesa for software fallback. Verify with glxinfo.
  • Huge Page Allocation Failed: Check /proc/meminfo to ensure enough huge pages are reserved by the kernel.

License

This project is licensed under the Apache License 2.0. Licensed under the Apache License, Version 2.0.


© 2026 Kevin Chege. All Rights Reserved.