SmartDataAnalytics / RdfProcessingToolkit

Command line interface based RDF processing toolkit to run sequences of SPARQL statements ad-hoc on RDF datasets, streams of bindings and streams of named graphs with support for processing JSON, CSV and XML using function extensions
https://smartdataanalytics.github.io/RdfProcessingToolkit/
Other
39 stars 3 forks source link

Listen on multiple ports with different read-only/write privileges. #53

Open Aklakan opened 7 months ago

Aklakan commented 7 months ago

A simple setup for workflows would have one public port with read-only data access, and another write-enabled sparql enpdoint that only listens on localhost.

Something like

rpt integrate --server \
  --port 4567 --listen '*' \
  --port 5678 --allow-update --listen 'localhost'