Changing the max number of parameters for parameterized queries

Hi, we are using parameterized queries for graph ingestion and we reached the limit of parameters in a query (default is 16) hence our ingestion is failing. We want to update those settings following this guide https://tinkerpop.apache.org/docs/3.2.5/upgrade/#_default_maximum_parameters. Doing this in the gremlin-server yml is straightforward but we would like to do it via environment variables. Any suggestions? I tried some combinations and this is the closer I got: docker run --rm -it -e gremlinserver.processors[+].className[org.apache.tinkerpop.gremlin.server.op.session.SessionOpProcessor].config.maxParameters=256 docker.io/janusgraph/janusgraph:latest janusgraph show-config which generated something like:
- className: org.apache.tinkerpop.gremlin.server.op.session.SessionOpProcessor: config: maxParameters: 256
Which has an extra colon at the end of the second line. What I was expecting is:
- className: org.apache.tinkerpop.gremlin.server.op.standard.StandardOpProcessor config: maxParameters: 256
0 Replies
No replies yetBe the first to reply to this messageJoin