I have a large RDF file (in the gigabytes) that I'd like imported into a remote graph database.
The database exposes a Graph Store Protocol endpoint over the RDF4J API. Of the many ingest routes the database supports, the only one acceptable in my scenario is using this endpoint (posting to /statements
).
The database is hosted on a cloud provider, and various infrastructure layers (web server, application container) impose upload limits, so I can't just post the file.
Using dotNetRDF, how can I load a lot of RDF into a remote database over Graph Store in chunks?