vliz-be-opsci / k-gap

Knowledge Graph Analysis Platform
MIT License
0 stars 0 forks source link

Increase the max allowed httpHeaderSize #3

Closed marc-portier closed 8 months ago

marc-portier commented 8 months ago

According to https://stackoverflow.com/questions/64112724/how-to-increase-max-header-size-for-graphdb-standalone-server we could be modifying the default 4096 limit on HHTP-POST for triples to ingest via sparql through setting

graphdb.connector.maxHttpHeaderSize = 65536

This should be doable through inserting something like -Dgraphdb.connector.maxHttpHeaderSize=${GDB_MAX_HEADER:-65536} into the statement at the end of graphdb/kgap/entrypoint-wrap.sh (at https://github.com/vliz-be-opsci/k-gap/blob/main/graphdb/kgap/entrypoint-wrap.sh#L31)

this in combination with

Hopefully that covers the issue mentioned in https://github.com/vliz-be-opsci/py-RDF-store/issues/12

laurianvm commented 8 months ago

was solved through PR #20