Help & Fixes | Kamiwaza Docs

Getting Help

If you have questions or run into issues, we're here to help:

We're committed to making your experience with Kamiwaza as smooth as possible.

Reporting Issues

When reporting issues to our support team or community, please include:

This information helps us provide faster and more accurate solutions to your problems.

Common Issues and Fixes

Installation Issues

Docker GPU Error: Could Not Select Device Driver

Problem: NVIDIA Container Runtime not found or misconfigured.

Solution:

Port Already in Use

Problem: Kamiwaza fails to start because required ports are occupied.

Solution:

Insufficient System Resources

Problem: Installation fails due to low disk space, RAM, or CPU cores.

Solution:

Model Deployment Issues

Gated Model Downloads and Rate Limits

Problem: Downloads fail for gated models (Llama, Mistral, etc.) or you encounter Hugging Face rate limit errors.

Symptoms:

Solution: Add your Hugging Face token to your Kamiwaza deployment configuration:

  1. Get a Hugging Face token from huggingface.co/settings/tokens (a read token is sufficient)
  2. For gated models, accept the license terms on the model's Hugging Face page
  3. Add the token to the Secret or deployment values used for your Kamiwaza environment:
   HF_TOKEN="hf_your_token_here"
  1. Apply the updated configuration using your standard cluster release workflow and confirm the model-serving pods restart successfully.
  2. If you need setup details for secrets or deployment values, refer to the Configuration Reference and the Administrator Guide.

Model Deployment Failures

Problem: Models fail to deploy or become unavailable.

Solutions:

Performance Problems

Problem: Slow responses or high resource usage.

Solutions:

SDK and API Issues

Module Import Error

Problem: ModuleNotFoundError: No module named 'kamiwaza_sdk' when using notebooks and Kamiwaza SDK.

Solution:

!pip uninstall -y kamiwaza kamiwaza-sdk

!pip install kamiwaza-sdk

Then restart the notebook kernel or Python session before importing kamiwaza_sdk again.

App Garden Issues

App Not Showing Latest Version

Problem: An app in App Garden isn't displaying the latest content or updates due to cache TTL.

Solution: Force a cache refresh by syncing remote templates:

# Step 1: Get an auth token

TOKEN=$(curl -sk -X POST "https://your-kamiwaza-instance/api/auth/token" \

-H "Content-Type: application/x-www-form-urlencoded" \

-d "username=admin&password=your-password" \

| jq -r '.access_token')

# Step 2: Force a cache refresh

curl -sk -X POST "https://your-kamiwaza-instance/api/v1/apps/{app_id}/refresh" \

-H "Authorization: Bearer ${TOKEN}"

General Troubleshooting Steps

When encountering issues, follow these diagnostic steps:

  1. Check Service Status: Verify all Kamiwaza services are running
  2. Review Logs: Check container logs for specific error messages
  3. Verify Resources: Ensure sufficient CPU, RAM, and disk space
  4. Test Connectivity: Verify network connectivity between components
  5. Restart Services: Try stopping and restarting affected services
  6. Check Configuration: Verify configuration files and environment variables