Munish Chouhan
Munish Chouhan
I tried the same conda file to reproduce this error but there was no error in dev, it maybe because of the surreal updated version I will try to reproduce...
finally able to reproduce the error, will work on fix now
opened issue with surreal team https://github.com/surrealdb/surrealdb/issues/4452
> Have you tried the setting `micronaut.http.client.max-content-length` ? > > https://micronaut-projects.github.io/micronaut-docs-mn2/2.0.3/guide/configurationreference.html Not yet, thank you i will try now
> Have you tried the setting `micronaut.http.client.max-content-length` ? > > https://micronaut-projects.github.io/micronaut-docs-mn2/2.0.3/guide/configurationreference.html still same error
I have tried the following options, but no luck: ``` 1. micronaut.server.max-request-size 2. micronaut.http.services.*.max-content-length 3. micronaut.server.netty.max-initial-line-length 4. micronaut.http.client.max-content-length ```
We have hit issue one year back also https://github.com/seqeralabs/wave/pull/253#issuecomment-1632462806 it is indeed surrealdb limitation we changed our strategy that time to send cves in different calls. they did advice us...
we are using java 17 in micronaut 4 so there we can switch to surreal drivers
current limit is 16kb https://github.com/surrealdb/surrealdb/issues/1545#issuecomment-1364651802 it can be overcome using websocket https://github.com/surrealdb/surrealdb/issues/1545#issuecomment-1368805215
> Then let's add a truncation of content longer > 16k here for now > > https://github.com/seqeralabs/wave/blob/51703862fac7def3e52dab3365760873b2151806/src/main/groovy/io/seqera/wave/controller/ContainerController.groovy#L307-L309 We only need to truncate them when saving, so it is better to...