Код:
Interface::
@Query(value = "{'status': {$in: ?0} , 'date':{ $lte: ?1 }}")
List<Blog> findByStatusAndCurrentDateWithOrdering(List<String> status, Date date, Sort order);
Calling Class:
findByStatusAndCurrentDateWithOrdering(status, new Date(), Sort.by(Direction.DESC, "date")
Ошибка приложения, развернутого в Azure:
"status": 500,
"error": "Internal Server Error",
"message": "The reply message length 5502322 is less than the maximum message length 4194304; nested exception is com.mongodb.MongoIn
ternalException: The reply message length 5502322 is less than the maximum message length 4194304",
Содержимое в MongoDB включает в себя образ Base64, а также идентификатор, HTML. (и имеет только 11 или 12 строк)
Версия клиента Azure Mon go DB составляет <3.2.0. В то время как на локальном уровне это> 3,2
Какие изменения можно было бы сделать в приведенном выше коде, чтобы прочитать его кусками или ограничить, чтобы заставить его работать?