chroma-core/chroma · error · ValueError
Invalid topic name: {topic_name}
Error message
Invalid topic name: {topic_name} What it means
Error "Invalid topic name: {topic_name}" thrown in chroma-core/chroma.
Source
Thrown at chromadb/ingest/impl/utils.py:15
import re
from typing import Tuple
from uuid import UUID
from chromadb.db.base import SqlDB
from chromadb.segment import SegmentManager, VectorReader
topic_regex = r"persistent:\/\/(?P<tenant>.+)\/(?P<namespace>.+)\/(?P<topic>.+)"
def parse_topic_name(topic_name: str) -> Tuple[str, str, str]:
"""Parse the topic name into the tenant, namespace and topic name"""
match = re.match(topic_regex, topic_name)
if not match:
raise ValueError(f"Invalid topic name: {topic_name}")
return match.group("tenant"), match.group("namespace"), match.group("topic")
def create_topic_name(tenant: str, namespace: str, collection_id: UUID) -> str:
return f"persistent://{tenant}/{namespace}/{str(collection_id)}"
def trigger_vector_segments_max_seq_id_migration(
db: SqlDB, segment_manager: SegmentManager
) -> None:
"""
Trigger the migration of vector segments' max_seq_id from the pickled metadata file to SQLite.
Vector segments migrate this field automatically on init—so this should be used when we know segments are likely unmigrated and unloaded.
This is a no-op if all vector segments have already migrated their max_seq_id.
"""
with db.tx() as cur:View on GitHub (pinned to aecdd12c8a)
When it happens
Trigger: Thrown at chromadb/ingest/impl/utils.py:15 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of chroma-core/chroma@aecdd12c8a (2026-08-16).
Data as JSON: /api/errors/fc89f02b3dab37b4.
Report an issue: GitHub.