Close Menu

    Subscribe to Updates

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

    What's Hot

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    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

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Weighing up the enterprise risks of neocloud providers

      March 3, 2026

      A stolen Gemini API key turned a $180 bill into $82,000 in two days

      March 3, 2026

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026

      FCC approves the merger of cable giants Cox and Charter

      February 28, 2026

      Finding value with AI and Industry 5.0 transformation

      February 28, 2026
    • Crypto

      Strait of Hormuz Shutdown Shakes Asian Energy Markets

      March 3, 2026

      Wall Street’s Inflation Alarm From Iran — What It Means for Crypto

      March 3, 2026

      Ethereum Price Prediction: What To Expect From ETH In March 2026

      March 3, 2026

      Was Bitcoin Hijacked? How Institutional Interests Shaped Its Narrative Since 2015

      March 3, 2026

      XRP Whales Now Hold 83.7% of All Supply – What’s Next For Price?

      March 3, 2026
    • Technology

      Buckle Up for Bumpier Skies

      March 3, 2026

      Daily Driving GrapheneOS

      March 3, 2026

      OpenAI will amend Defense Department deal to prevent mass surveillance in the US

      March 3, 2026

      Intent-Based Commits

      March 3, 2026

      Elevated Errors in Claude.ai

      March 3, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Nimtable: Open-source web UI to browse and manage Apache Iceberg tables
    Technology

    Nimtable: Open-source web UI to browse and manage Apache Iceberg tables

    TechAiVerseBy TechAiVerseJuly 1, 2025No Comments4 Mins Read17 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Nimtable: Open-source web UI to browse and manage Apache Iceberg tables
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Nimtable: Open-source web UI to browse and manage Apache Iceberg tables

    Nimtable: The Control Plane for Apache Iceberg™

    A lightweight, easy-to-use platform to monitor, optimize, and govern your Iceberg-based lakehouse.

    Overview

    Nimtable helps you easily manage and explore Apache Iceberg catalogs. With a web-based platform designed for clarity and simplicity, Nimtable makes it easy to browse tables, run queries, analyze file distributions, and optimize storage layouts.

    Key Features

    • 🌟 Multi-Catalog Support
      Connect to REST Catalog, AWS Glue, AWS S3 Tables, and PostgreSQL (via JDBC).

    • 🗄️ Object Store Integration
      Seamlessly work with S3 and S3-compatible stores like Cloudflare R2, Minio, and more.

    • 🔍 Table Exploration
      Inspect table schemas, partitions, and snapshots with ease.

    • ⚡ Interactive Querying
      Run SQL queries directly from the platform.

    • 🤖 AI Copilot
      Get intelligent assistance for Iceberg table exploration.

    • 📄 AI Summary
      Automatically generate summaries of your Iceberg tables.

    • 📊 File Distribution Analysis
      Visualize how data files are distributed across partitions and snapshots.

    • 🔧 Table Optimization
      Run file compaction and manage snapshot expiration.

    • 🔌 REST Catalog Compatibility
      Serve as a standard Iceberg REST Catalog, adapting any underlying catalog to a RESTful API.

    Architecture

    Nimtable acts as a bridge between users and catalog servers, providing both an interactive web interface and a standard REST Catalog API layer.

    Quick Start

    The fastest way to get started is using Docker:

    cd docker
    docker compose up -d

    Access the UI at http://localhost:3000.

    Default Admin Login

    • Username: admin
    • Password: admin

    Managing the Service (Optional)

    • View logs:
    • Stop the service:

    Development

    See HACKING.md for details on how to hack on Nimtable.

    Configuration

    Nimtable can be configured in two ways:

    • Web UI: Easiest for new users – just log in and click “Create Catalog.”
    • YAML Configuration File: Recommended for advanced users or automated deployments.

    1. Configuration File Location

    • By default, Nimtable looks for config.yaml in the working directory.
    • Docker: Mount your config file to /app/config.yaml inside the container.
    • See docker/docker-compose.yml for an example of mounting configuration.

    2. Minimal Configuration Example

    server:
      port: 8182
      host: 0.0.0.0
    admin:
      username: admin
      password: admin
    database:
      url: jdbc:postgresql://localhost:5432/nimtable_db
      username: nimtable_user
      password: password

    Important: Change the default admin password after your first login for security.

    3. Catalog Configuration

    You can add catalogs in two ways:

    • Web UI:
      After logging in, click “Create Catalog” and follow the prompts. Catalogs added via the UI are stored in the internal database and do not modify config.yaml.

    • YAML File:
      Pre-configure catalogs by adding them to your config.yaml.
      See backend/config.yaml for full examples and templates.

    Supported Catalog Types:

    • REST
    • AWS Glue
    • S3 Tables
    • PostgreSQL (via JDBC)

    Each catalog type may require specific fields. Refer to the sample config for details.

    4. AWS Credential Configuration

    If you use AWS Glue or S3, you can provide credentials in two ways:

    • Environment Variables:

      # docker-compose.yml
      services:
        nimtable:
          environment:
            - AWS_REGION=us-east-1
            - AWS_ACCESS_KEY_ID=your-access-key
            - AWS_SECRET_ACCESS_KEY=your-secret-key
    • Mounting AWS Credentials File:

      # docker-compose.yml
      services:
        nimtable:
          volumes:
            - ~/.aws/credentials:/root/.aws/credentials:ro

    Roadmap

    • 🔧 Optimized Compaction: Advanced compaction strategies and scheduling
    • 📊 Monitoring & Analytics: Comprehensive dashboard and insights
    • 💾 Caching: Database integration and metadata caching
    • ⚡ Query Engine Integration: Support for multiple query engines
    • 📋 Metadata Management: Enhanced snapshot, schema and partition management
    • 🔐 Security & Access Control: RBAC and fine-grained permissions
    • 🔌 API & Integration: REST API support and authentication
    • 🔄 Data Lineage: Table and column-level lineage tracking
    • 🤖 Better AI Copilot Support: Enhanced capabilities for AI agent.
    • 🏢 Catalog & Warehouse Integration: Support for various storage backends

    For detailed roadmap items and progress tracking, see Roadmap.

    Contributing

    We welcome contributions! Please see our Contributing Guide for details.

    License

    This project is licensed under the Apache License 2.0 – see the LICENSE file for details.

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleVirtue Garnishes: The 3-Second Mental Hack That Short-Circuits Bad Habits
    Next Article DeepSeek App Faces Ban in Germany for Illegal Transfer of User Data
    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

    Buckle Up for Bumpier Skies

    March 3, 2026

    Daily Driving GrapheneOS

    March 3, 2026

    OpenAI will amend Defense Department deal to prevent mass surveillance in the US

    March 3, 2026
    Leave A Reply Cancel Reply

    Top Posts

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

    April 22, 2025702 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025285 Views

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

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Gaming March 3, 2026

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025 The company…

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    Metacritic pulls Resident Evil Requiem review after reports it was generated by AI and attributed to a writer that doesn’t exist

    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

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    March 3, 20262 Views

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    March 3, 20262 Views

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    March 3, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 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.