Skip to main content

Quick Diagnosis

API Errors

Common errors (Add)

Application-Level Issues

Performance issues

Slow Ingestion

Diagnosis:
Common Causes:
  • Document size > 50MB (max file size - 50MB)
  • Large number of documents uploaded sequentially
  • Token limit reached
Solutions :
  1. Make sure the doc size is less then 50MB
  2. Upload documents via bulkAdd (faster)
  3. Check if you have sufficent tokens
  4. For bulk operations read here

Slow Searches (> 1 second)

Quick Checks:
Common Causes:
  • 7+ groupName tags (exponential overhead)
  • No minimum_similarity_threshold set
  • 10K+ documents in scope
Solutions:
  1. Reduce to 3-5 groupName tags max
  2. Set minimum_similarity_threshold: 0.5
  3. Use namespaces to shard data

Retrieval Quality Issues

No Results Returned

Quick Checks:
Common Causes:
  • High minimum_similarity_threshold set
  • groupnames don’t intersect
  • Query is not relevant or very specific
Solutions :
  1. Verify documents exist : platform
  2. Reduce similarity_threshold from 0.6-0.7 to 0.5-0.6
  3. Remove overly specific groupNames
  4. Try with a general query, make sure it’s not too specific

Common Scenarios

Scenario: Queries Return Too Many Fragments

  • Problem: Search returns 50+ small chunks
  • Cause: Over-segmentation (see Anti-Pattern 1)
  • Solution: Combine related content into cohesive documents

Scenario : Metadata Bloat Symptoms

  • Problem: Storing too much or redundant information in metadata
  • Cause: Metadata bloating (see Anti-Pattern 2)
  • Solution: Limit metadata to only what you query/filter by, pass all the other things in the content itself.

Debugging Tools

Platform Limits

Still Stuck?

  • Check our Discord for community help