Open bazuker opened 1 year ago
hi @bazuker ! Thanks for raising the issue. I suspect the request size might be too large if those documents are that big. Can you try and send them one by one or use client_batch_size=1
Actually, it looks like an index not found error. Were you able to run any of the examples from the readme?
Was there any other stack trace in the Marqo container logs? If not you can increase the log level to debug while running Marqo here. Finally, did this problem subside when indexing smaller documents?
Also, what Marqo version and client versions are you on? You can check by running this:
import pprint
import marqo
from marqo import errors
mq = marqo.Client()
print("Marqo version information:\n", mq.get_marqo())
print("Marqo python client information:\n", marqo.supported_marqo_version())
Docker, 6 CPU, 16 GB of RAM, Mac OS Ventura 13.2.1, M2 Max
Using a slightly modified version of https://github.com/iain-mackie/marqo-gpt3 I am trying to process 10 documents with length of 80000 characters each.
I am making a single call
mq.index(DOC_INDEX_NAME).add_documents(docs)
, wheredocs
contains 10 elements.Client log
marqo container log
marqo-os container log