-1

pymongo.errors.OperationFailure: namespace name generated from index name is too long, full error: {'ok': 0.0, 'code': 67, 'errmsg': 'namespace name generated from index name is too long', 'operationTime': Timestamp(1684956028, 1)}

i'm trying to use djongo engine to connect to documentdb database using ssh tunnel

1 Answers1

0

The error is for something else, the maximum length for the index name, so it looks that you are able to connect. See the limits page, the index name length is limited to 63 characters. Specify the index name explicitly in your code.

Mihai A
  • 351
  • 1
  • 4