Files
wehub-resource-sync c889a57b6b
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Examples (push) Has been cancelled
Weighted Edges Tests / Code Quality for Weighted Edges (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:02:24 +08:00

165 lines
5.3 KiB
Python

"""
Cognee on Daytona — deploy Cognee API inside a Daytona sandbox.
Daytona provides secure, isolated cloud sandboxes with persistent volumes.
This script creates a sandbox, installs Cognee, and starts the API server,
streaming all output in real time.
Prerequisites:
pip install daytona
Set environment variables:
DAYTONA_API_KEY — your Daytona API key (from https://app.daytona.io)
DAYTONA_API_URL — Daytona API URL (default: https://app.daytona.io/api)
LLM_API_KEY — your LLM provider API key
Usage:
python distributed/deploy/daytona_sandbox.py
"""
import os
import sys
import time
import asyncio
from daytona import ( # type: ignore[import-untyped]
Daytona,
DaytonaConfig,
CreateSandboxFromImageParams,
SessionExecuteRequest,
Image,
Resources,
)
DAYTONA_API_URL = "https://app.daytona.io/api"
def _run_streamed(sandbox, session_id, command, label=""):
"""Run a command in a session and stream stdout/stderr in real time."""
cmd = sandbox.process.execute_session_command(
session_id,
SessionExecuteRequest(command=command, run_async=True),
)
prefix = f"[{label}] " if label else ""
async def _stream():
await sandbox.process.get_session_command_logs_async(
session_id,
cmd.cmd_id,
lambda stdout: print(f"{prefix}{stdout}", end="", flush=True),
lambda stderr: print(f"{prefix}{stderr}", end="", file=sys.stderr, flush=True),
)
asyncio.run(_stream())
def deploy_cognee():
"""Create a Daytona sandbox and start the Cognee API server."""
api_key = os.environ.get("DAYTONA_API_KEY")
api_url = os.environ.get("DAYTONA_API_URL", DAYTONA_API_URL)
llm_api_key = os.environ.get("LLM_API_KEY")
if not api_key:
raise ValueError("DAYTONA_API_KEY environment variable is required")
if not llm_api_key:
raise ValueError("LLM_API_KEY environment variable is required")
daytona = Daytona(DaytonaConfig(api_key=api_key, api_url=api_url))
print("Creating Daytona sandbox for Cognee...")
sandbox = daytona.create(
CreateSandboxFromImageParams(
image=Image.debian_slim("3.12"),
resources=Resources(cpu=2, memory=4, disk=10),
env_vars={
"LLM_API_KEY": llm_api_key,
"LLM_MODEL": os.environ.get("LLM_MODEL", "openai/gpt-4o-mini"),
"LLM_PROVIDER": os.environ.get("LLM_PROVIDER", "openai"),
"HOST": "0.0.0.0",
},
labels={"app": "cognee", "service": "api"},
),
)
print(f"Sandbox created: {sandbox.id}\n")
# Create a session for streamed output
session_id = "cognee-deploy"
sandbox.process.create_session(session_id)
# Step 1: Install Cognee (streamed)
print("=== Installing Cognee ===")
_run_streamed(sandbox, session_id, "pip install 'cognee[api]'", label="install")
print("\n")
# Step 2: Kill any existing server, then start fresh
print("=== Starting Cognee API server ===")
sandbox.process.exec("pkill -f uvicorn || true", timeout=5)
time.sleep(1)
# Write a small health-check script to avoid shell escaping issues
sandbox.process.exec(
"cat > /tmp/healthcheck.py << 'PYEOF'\n"
"import urllib.request, sys\n"
"try:\n"
" urllib.request.urlopen('http://localhost:8000/health', timeout=5)\n"
" print('OK')\n"
"except Exception:\n"
" print('WAITING')\n"
"PYEOF",
timeout=5,
)
# Start server as a background daemon
sandbox.process.exec(
"nohup python -m uvicorn cognee.api.client:app "
"--host 0.0.0.0 --port 8000 > /tmp/cognee-server.log 2>&1 &",
timeout=10,
)
# Wait for server to be ready
print("Waiting for server to start...", flush=True)
for i in range(30):
time.sleep(3)
try:
result = sandbox.process.exec("python /tmp/healthcheck.py", timeout=10)
status = result.result.strip()
except Exception:
status = "WAITING"
if "OK" in status:
print("Server is ready!")
break
print(f" ({i + 1}) {status}", flush=True)
else:
# Print server log for debugging
try:
log = sandbox.process.exec("tail -30 /tmp/cognee-server.log", timeout=5)
print(f"\nServer log:\n{log.result}")
except Exception:
pass
print("WARNING: Server may not be ready yet.")
# Generate a signed preview URL (no auth headers needed)
signed_url = sandbox.create_signed_preview_url(8000, expires_in_seconds=86400)
print("\nCognee is running!")
print(f" Sandbox ID: {sandbox.id}")
print(f"\n API URL: {signed_url.url}")
print(f" Health: {signed_url.url}/health")
print(f" Docs: {signed_url.url}/docs")
print(" (URL expires in 24 hours)")
print("\nTo check server logs:")
print(
f' python -c "from daytona import Daytona, DaytonaConfig; '
f"d=Daytona(DaytonaConfig(api_key='...', api_url='{api_url}')); "
f"s=d.get('{sandbox.id}'); print(s.process.exec('cat /tmp/cognee-server.log').result)\""
)
print("\nTo stop:")
print(f" daytona sandbox stop {sandbox.id}")
return sandbox
if __name__ == "__main__":
deploy_cognee()