-
Notifications
You must be signed in to change notification settings - Fork 25
FAQ
Q: What data formats can the SDM-RDFizer convert?
A: The SDM-RDFizer can convert the following data formats:
- CSV
- JSON
- XML
- MySQL
- Postgres
Q: How are the transformation rules defined?
A: The SDM-RDFizer follows the transformation rules defined by RML. (https://rml.io/specs/rml/)
Q: How is the SDM-RDFizer configured?
A: The SDM-RDFizer requires a configuration file. The description of each parameter of the configuration file: https://github.com/SDM-TIB/SDM-RDFizer/wiki/The-Parameters-of-the-Configuration-file
Example of a configuration file: https://github.com/SDM-TIB/SDM-RDFizer/wiki/Install&Run
Q:How can I run the SDM-RDFizer?
A: We have two ways of running the SDM-RDFizer:
- From the terminal: python3 rdfizer/run_rdfizer.py /path/to/configfile
- Docker container:
- Building the docker container. Note: All documents in the same folder of the Dockerfile will be copied to the container. docker build -t rdfizer .
- To run the application, you need to map your data volume to “/data” folder of the container where data, mappings, and config files should be located: docker run -d -p 4000:4000 -v /path/to/yourdata:/data rdfizer
- Send a POST request with the configuration file to RDFizer the file curl localhost:4000/graph_creation/data/your-config-file.ini
- Get the results from the container (if output folder is inside the data folder, results are already in your host) docker cp CONTAINER_ID:/app/path/to/output .
- Instead of installing from scratch, you can use the docker image we have created.
Q: Where can I take a look at the experimental evaluations ran over SDM-RDFizer?
A: The experimental evaluation can be seen here: https://github.com/SDM-TIB/SDM-RDFizer-Experiments/