Close Menu

    Subscribe to Updates

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

    What's Hot

    Redmi Pad 2 Review: The All-Round Budget Tablet to Get

    HONOR Magic V5 launches in Malaysia for RM6999

    Kingston expands NV3 SSD to M.2 2230 form factor

    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

      Another Chinese AI model is turning heads

      July 15, 2025

      AI chatbot Grok issues apology for antisemitic posts

      July 13, 2025

      Apple sued by shareholders for allegedly overstating AI progress

      June 22, 2025

      How far will AI go to defend its own survival?

      June 2, 2025

      The internet thinks this video from Gaza is AI. Here’s how we proved it isn’t.

      May 30, 2025
    • Business

      Cloudflare open-sources Orange Meets with End-to-End encryption

      June 29, 2025

      Google links massive cloud outage to API management issue

      June 13, 2025

      The EU challenges Google and Cloudflare with its very own DNS resolver that can filter dangerous traffic

      June 11, 2025

      These two Ivanti bugs are allowing hackers to target cloud instances

      May 21, 2025

      How cloud and AI transform and improve customer experiences

      May 10, 2025
    • Crypto

      Bitcoin (BTC) Slides From $123,000 High Ahead of US CPI Print

      July 15, 2025

      Shadowy Entity Behind Trump’s DeFi Project Revealed as Disgraced Web3 Firm

      July 15, 2025

      Satoshi-Era 80,000 BTC Whale Move Coins to CEXs as Bitcoin Hits All-Time Highs

      July 15, 2025

      XRP in Focus as Fed’s ISO 20022 Goes Live – What Traders Should Know

      July 15, 2025

      Bitcoin Skeptic Vanguard Quietly Becomes MicroStrategy’s No. 1 Shareholder

      July 15, 2025
    • Technology

      Best laptops under $500: Affordable picks that will satisfy

      July 15, 2025

      Cyberpunk 2077 comes to Mac… 5 years later

      July 15, 2025

      Logitech’s ultra-compact MX Keys Mini keyboard is 30% off, today only

      July 15, 2025

      Save $440 on the best Samsung and Google phones and 50% on Mint Mobile Unlimited

      July 15, 2025

      Three publishers’ workforce diversity reports show DEI efforts remain sluggish

      July 15, 2025
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Shop Now
    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 Read0 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

    Best laptops under $500: Affordable picks that will satisfy

    July 15, 2025

    Cyberpunk 2077 comes to Mac… 5 years later

    July 15, 2025

    Logitech’s ultra-compact MX Keys Mini keyboard is 30% off, today only

    July 15, 2025
    Leave A Reply Cancel Reply

    Top Posts

    New Akira ransomware decryptor cracks encryptions keys using GPUs

    March 16, 202528 Views

    OpenAI details ChatGPT-o3, o4-mini, o4-mini-high usage limits

    April 19, 202522 Views

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

    April 14, 202522 Views

    Rsync replaced with openrsync on macOS Sequoia

    April 7, 202520 Views
    Don't Miss
    Gadgets July 16, 2025

    Redmi Pad 2 Review: The All-Round Budget Tablet to Get

    Redmi Pad 2 Review: The All-Round Budget Tablet to Get The Redmi Pad series tablets…

    HONOR Magic V5 launches in Malaysia for RM6999

    Kingston expands NV3 SSD to M.2 2230 form factor

    Best laptops under $500: Affordable picks that will satisfy

    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

    Redmi Pad 2 Review: The All-Round Budget Tablet to Get

    July 16, 20252 Views

    HONOR Magic V5 launches in Malaysia for RM6999

    July 16, 20252 Views

    Kingston expands NV3 SSD to M.2 2230 form factor

    July 16, 20251 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.