Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Asus ExpertCenter PN54 reviewed

    Huawei MatePad Mini: Launch date confirmed for compact flagship tablet with OLED screen

    P40WD-40: New Lenovo ThinkVision monitor leaks with Thunderbolt 4 and 120 Hz refresh rate for professionals

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      Blue-collar jobs are gaining popularity as AI threatens office work

      August 17, 2025

      Man who asked ChatGPT about cutting out salt from his diet was hospitalized with hallucinations

      August 15, 2025

      What happens when chatbots shape your reality? Concerns are growing online

      August 14, 2025

      Scientists want to prevent AI from going rogue by teaching it to be bad first

      August 8, 2025

      AI models may be accidentally (and secretly) learning each otherโ€™s bad behaviors

      July 30, 2025
    • Business

      Why Certified VMware Pros Are Driving the Future of IT

      August 24, 2025

      Murky Panda hackers exploit cloud trust to hack downstream customers

      August 23, 2025

      The rise of sovereign clouds: no data portability, no party

      August 20, 2025

      Israel is reportedly storing millions of Palestinian phone calls on Microsoft servers

      August 6, 2025

      AI site Perplexity uses โ€œstealth tacticsโ€ to flout no-crawl edicts, Cloudflare says

      August 5, 2025
    • Crypto

      Chainlink (LINK) Price Uptrend Likely To Reverse as Charts Hint at Exhaustion

      August 31, 2025

      What to Expect From Solana in September

      August 31, 2025

      Bitcoin Risks Deeper Drop Toward $100,000 Amid Whale Rotation Into Ethereum

      August 31, 2025

      3 Altcoins Smart Money Are Buying During Market Pullback

      August 31, 2025

      Solana ETFs Move Closer to Approval as SEC Reviews Amended Filings

      August 31, 2025
    • Technology

      Asus ExpertCenter PN54 reviewed

      August 31, 2025

      Huawei MatePad Mini: Launch date confirmed for compact flagship tablet with OLED screen

      August 31, 2025

      P40WD-40: New Lenovo ThinkVision monitor leaks with Thunderbolt 4 and 120 Hz refresh rate for professionals

      August 31, 2025

      Best AI Workstation Processors 2025: Why AMD Ryzen Beats Intel for Local AI Computing for now!

      August 31, 2025

      How to turn a USB flash drive into a portable games console

      August 31, 2025
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Show HN: CallFS โ€“ S3-style object store in one Go binary (MIT)
    Technology

    Show HN: CallFS โ€“ S3-style object store in one Go binary (MIT)

    TechAiVerseBy TechAiVerseJuly 15, 2025No Comments4 Mins Read1 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Show HN: CallFS โ€“ S3-style object store in one Go binary (MIT)
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    BMI Calculator โ€“ Check your Body Mass Index for free!

    Show HN: CallFS โ€“ S3-style object store in one Go binary (MIT)

    CallFS: A High-Performance, Distributed REST API Filesystem

    CallFS is an ultra-lightweight, high-performance REST API filesystem that provides precise Linux filesystem semantics over various backends, including local storage, Amazon S3, and a distributed peer-to-peer network. It is designed for speed, reliability, and horizontal scalability.


    ๐Ÿš€ Key Features

    • Multi-Backend Storage: Seamlessly use Local Filesystem, Amazon S3, or other S3-compatible services (like MinIO) as storage backends.
    • Distributed Architecture: Scale horizontally by adding more CallFS instances. The system automatically routes operations to the correct node.
    • Cross-Server Operations: Operations like move, copy, and delete work across the cluster with automatic conflict detection and resolution.
    • High-Performance API: A clean REST API for all filesystem operations, built for low latency and high throughput.
    • Secure, Ephemeral Links: Generate secure, time-limited, single-use download links for any file.
    • Distributed Locking: A Redis-based Distributed Lock Manager ensures data consistency for concurrent operations across the cluster.
    • Rich Metadata Store: PostgreSQL backend for robust, queryable, and persistent file metadata.
    • Comprehensive Security: Enforces TLS, API key authentication, and a full Unix permission model for authorization.
    • First-Class Observability: Structured logging (JSON/console) and extensive Prometheus metrics for deep operational insight.
    • Zero-Copy I/O: Efficiently streams large files without buffering them in memory, ensuring a low memory footprint.

    ๐Ÿ—๏ธ Architecture

    CallFS consists of several core components that work together to provide a unified, distributed filesystem API:

    • API Server: The public-facing HTTP server that handles all incoming REST API requests.
    • Core Engine: The central orchestrator that processes requests, manages metadata, and selects the appropriate storage backend.
    • Storage Backends: Pluggable modules for different storage systems:
      • LocalFS: Manages files on the local disk.
      • S3: Interfaces with Amazon S3 or compatible object stores.
      • Internal Proxy: Routes requests to other CallFS instances in the cluster.
    • Metadata Store: A PostgreSQL database that stores all filesystem metadata, such as file names, sizes, timestamps, permissions, and backend locations.
    • Distributed Lock Manager (DLM): Uses Redis to provide cluster-wide locks, preventing race conditions during concurrent file modifications.
    • Link Manager: Generates and validates secure single-use download tokens.

    This modular design allows CallFS to be both powerful and flexible, suitable for a wide range of applications from simple file serving to complex, distributed storage architectures.

    ๐Ÿ”— API Endpoints

    All API endpoints are prefixed with /v1 and require Bearer authentication, except where noted.

    File & Directory Operations

    • GET /files/{path}: Downloads a file or lists a directory’s contents.
    • HEAD /files/{path}: Retrieves file metadata. This operation is “enhanced” and can route requests across the cluster to find the correct node.
    • POST /files/{path}: Creates a new file or directory. It features cross-server conflict detection to prevent overwriting.
    • PUT /files/{path}: Uploads or updates a file’s content. Supports streaming data and cross-server proxying.
    • DELETE /files/{path}: Deletes a file or directory, with cross-server routing capabilities.

    Enhanced Directory Listings

    • GET /directories/{path}: Provides a detailed JSON listing of a directory’s contents.
    • GET /directories/{path}?recursive=true: Performs a recursive listing of all subdirectories.
    • GET /directories/{path}?recursive=true&max_depth=N: Limits the depth of the recursive listing.

    Single-Use Download Links

    • POST /links/generate: Creates a secure, single-use download link for a file. The link’s expiry time is configurable.
    • GET /download/{token}: Downloads a file using a single-use token. (No authentication required).

    System Health & Metrics

    • GET /health: Returns the operational status of the server. (No authentication required).
    • GET /metrics: Exposes detailed performance metrics in Prometheus format. (No authentication required).

    ๐Ÿ”ง Getting Started

    Prerequisites

    • Go: Version 1.21 or later.
    • PostgreSQL: A running instance for the metadata store.
    • Redis: A running instance for the distributed lock manager.
    • Docker & Docker Compose: Recommended for easily running PostgreSQL and Redis.
    • A valid config.yaml file (see config.yaml.example)

    Running the Server

    1. Start dependent services:

      docker-compose up -d postgres redis
    2. Build the binary:

      go build -o callfs ./cmd/main.go
    3. Run the server:

      ./callfs server --config /path/to/your/config.yaml

    Command-Line Interface (CLI)

    CallFS includes a simple CLI for managing the server:

    • callfs server: Starts the main API server.
      • --config, -c: Specifies the path to the configuration file.
    • callfs config validate: Validates the configuration file and displays the loaded settings.
    • callfs --help: Shows all available commands and flags.

    ๐Ÿ“– Full Documentation

    For detailed information on configuration, API usage, security, and more, please refer to the docs_markdown/ directory:

    • 01 – Installation
    • 02 – Configuration
    • 03 – API Reference
    • 04 – Authentication & Security
    • 05 – Backend Configuration
    • 06 – Monitoring & Metrics
    • 07 – Clustering & Distribution
    • 08 – Developer Guide
    • 09 – Troubleshooting
    • 10 – Enhanced Cross-Server Operations

    ๐Ÿค Contributing

    Contributions are welcome! Please see CONTRIBUTING.md for guidelines on how to participate in this project.

    ๐Ÿ“ License

    CallFS is licensed under the MIT License. See the LICENSE file for details.

    BMI Calculator โ€“ Check your Body Mass Index for free!

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleC++ Coroutines Advanced: Converting std:future to asio:awaitable
    Next Article LLM Inevitabilism
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Asus ExpertCenter PN54 reviewed

    August 31, 2025

    Huawei MatePad Mini: Launch date confirmed for compact flagship tablet with OLED screen

    August 31, 2025

    P40WD-40: New Lenovo ThinkVision monitor leaks with Thunderbolt 4 and 120 Hz refresh rate for professionals

    August 31, 2025
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025168 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 202548 Views

    New Akira ransomware decryptor cracks encryptions keys using GPUs

    March 16, 202530 Views

    Is Libby Compatible With Kobo E-Readers?

    March 31, 202528 Views
    Don't Miss
    Technology August 31, 2025

    Asus ExpertCenter PN54 reviewed

    Asus ExpertCenter PN54 reviewed – what the mini PC with AMD Ryzen AI 7 350…

    Huawei MatePad Mini: Launch date confirmed for compact flagship tablet with OLED screen

    P40WD-40: New Lenovo ThinkVision monitor leaks with Thunderbolt 4 and 120 Hz refresh rate for professionals

    Best AI Workstation Processors 2025: Why AMD Ryzen Beats Intel for Local AI Computing for now!

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Asus ExpertCenter PN54 reviewed

    August 31, 20252 Views

    Huawei MatePad Mini: Launch date confirmed for compact flagship tablet with OLED screen

    August 31, 20252 Views

    P40WD-40: New Lenovo ThinkVision monitor leaks with Thunderbolt 4 and 120 Hz refresh rate for professionals

    August 31, 20252 Views
    Most Popular

    Xiaomi 15 Ultra Officially Launched in China, Malaysia launch to follow after global event

    March 12, 20250 Views

    Apple thinks people wonโ€™t use MagSafe on iPhone 16e

    March 12, 20250 Views

    French Apex Legends voice cast refuses contracts over “unacceptable” AI clause

    March 12, 20250 Views
    © 2025 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.