Setting the file. One moment.
Subchapter 2.2
references/troubleshooting.mdMarkdown3 KBView on GitHub
“Not authenticated” or “Invalid credentials”
pc auth status
pc logout
pc login
pc target -o "my-org" -p "my-project"Service account can’t access resources
pc target --show # Verify correct project is targetedAPI key not working
pc config get-api-key # Verify key is set
# API keys are scoped to org + project — get a new one if needed
pc api-key create -n "new-key" --store“Project not found” or “Organization not found”
pc target --show
pc target --clear
pc target -o "my-org" -p "my-project"Index operations failing
pc index describe -n my-index
# "Initializing" → wait and retry
# "Terminating" → recreate itCan’t delete index
# Check if deletion protection is on
pc index describe -n my-index
pc index configure -n my-index --deletion-protection disabled
pc index delete -n my-indexUpsert fails with dimension mismatch
pc index describe -n my-index # Check configured dimension
# Ensure all vectors have exactly that many valuesLarge file upload is slow
# Use max batch size
pc index vector upsert -n my-index --file ./large.json --batch-size 1000
# Or split JSONL and loop
split -l 10000 large.jsonl chunk-
for file in chunk-*; do
pc index vector upsert -n my-index --file "$file"
doneQuery returns no results
pc index stats -n my-index # Check if data exists
pc index namespace list -n my-index # Verify namespace
# Filters use MongoDB query syntax — double-check filter formatBackup creation fails
pc index describe -n my-index
# Backups are only supported for serverless indexes in "Ready" stateCan’t find backup ID
pc backup list --index-name my-index
# Use the UUID (e.g. c84725e5-...) not the name for restore/deletepc loginpc api-key create -n "my-key" --storepc auth status
pc target --show
pc index describe -n my-indexpc index list -j | jq -r '.[] | .name'pc index vector update -n my-index \
--filter '{"genre":{"$eq":"old"}}' \
--metadata '{"genre":"new"}' \
--dry-runpc index create -n prod-index -d 1536 -m cosine -c aws -r us-east-1 \
--deletion-protection enabledpc backup create -i my-index -n "daily-backup-$(date +%Y%m%d)"