Error 500 still appearing for upserting chunks / document loader #6246
Unanswered
JuanEstebanGYan
asked this question in
Q&A
Replies: 1 comment
-
|
The issue might be with the configuration of Docker networks, where the services can't communicate. Ensure they share a network: version: '3.7'
services:
postgres:
image: postgres
ports:
"5432:5432"
environment:
POSTGRES_USER: youruser
POSTGRES_PASSWORD: yourpassword
networks:
flowise-net
flowise:
image: flowiseai/flowise
ports:
"3000:3000"
depends_on:
postgres
networks:
flowise-net
networks:
flowise-net:
driver: bridgeBy using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So I'm using docker, I have postgres and flowise installed through it, I was trying to upsert chunks for a document loader, I get always the same error with embedding, vector store and record manager. I have right port, host, credentials. I'm using ollama locally, postgres on docker same as flowise.
Error: documentStoreServices.insertIntoVectorStoreMiddleware - Error: documentStoreServices.insertIntoVectorStore - Error: documentStoreServices._insertIntoVectorStoreWorkerThread - AggregateError
Beta Was this translation helpful? Give feedback.
All reactions