Nimtable is a lightweight web platform for exploring and managing Apache Iceberg catalogs and tables.
Nimtable provides a clean interface and REST API for Apache Iceberg. It helps engineers inspect catalog metadata, view table schemas and partitions, analyze file layouts, and manage routine maintenance workflows through existing compute engines such as Apache Spark or RisingWave.
- Connect to multiple catalogs including REST, AWS Glue, and S3 Tables.
- Explore tables, schemas, partitions, snapshots, and manifests.
- Run SQL queries directly from the browser for quick inspection.
- Visualize file and snapshot distribution to identify optimization opportunities.
- Integrate with external engines like Spark or RisingWave to manage compaction and maintenance tasks.
- Serve as a standard Iceberg REST Catalog API endpoint.
Nimtable runs between users and Iceberg catalogs. It provides both a REST API and a browser-based console for interactive metadata management.
The fastest way to get started is using Docker:
cd docker
docker compose up -dAccess the UI at http://localhost:3000.
- Username:
admin - Password:
admin
Important: After your first login, we strongly recommend changing the default admin password through the web interface for security. Once changed, the password will be stored in the database and environment variables will no longer be used for authentication.
You can customize the initial admin credentials by setting environment variables in your docker-compose.yml:
services:
nimtable-web:
environment:
- ADMIN_USERNAME=your-admin-username
- ADMIN_PASSWORD=your-secure-passwordNote: Environment variables only set the initial password. Once you change the password through the web interface, the new password will be stored in the database and environment variables will be ignored for authentication purposes.
- View logs:
docker compose logs -f
- Stop the service:
docker compose down
See HACKING.md for details on how to hack on Nimtable.
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.
- By default, Nimtable looks for
config.yamlin the working directory. - Docker: Mount your config file to
/app/config.yamlinside the container. - See docker/docker-compose.yml for an example of mounting configuration.
server:
port: 8182
host: 0.0.0.0
database:
url: jdbc:postgresql://localhost:5432/nimtable_db
username: nimtable_user
password: passwordImportant: Change the default admin password after your first login for security. Once changed through the web interface, the password will be stored in the database and environment variables will no longer be used for authentication.
The default admin password can be changed through the web interface after login. Once changed:
- The new password is stored in the database
- Environment variables (
ADMIN_USERNAMEandADMIN_PASSWORD) are ignored for authentication - The password change is persistent across container restarts
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 modifyconfig.yaml. -
YAML File:
Pre-configure catalogs by adding them to yourconfig.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.
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
- 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.
We welcome contributions! Please see our Contributing Guide for details.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.