|
1 | 1 | #---------------------------------------------------------------#
|
2 |
| -#-------------------- General configuration --------------------# |
| 2 | +#------------- R2RML Parser General configuration --------------# |
3 | 3 | #---------------------------------------------------------------#
|
4 | 4 |
|
| 5 | +# The R2RML mapping file |
5 | 6 | mapping.file=dspace/epersons-mapping.rdf
|
6 | 7 |
|
7 |
| -# Valid types are RDF/XML, N-TRIPLE, TURTLE, TTL, N3. |
| 8 | +# The syntax of the mapping file. Valid values are RDF/XML, N-TRIPLE, TURTLE (or TTL), N3. |
8 | 9 | mapping.file.type=TURTLE
|
9 | 10 |
|
| 11 | +# The default namespace for the resulting graph |
10 | 12 | default.namespace=http://example.com/base#
|
11 | 13 |
|
12 |
| -# Uncomment the following to log inserted triples. |
| 14 | +# Uncomment the following to log inserted triples and debug messages. |
13 | 15 | default.verbose=false
|
14 | 16 |
|
15 | 17 | # File where last run is logged.
|
16 | 18 | default.log=status.rdf
|
17 | 19 |
|
18 |
| -#Whether triple generation will be incremental or no. |
19 |
| -#Taken into account only when jena.storeOutputModelInDatabase is false. |
20 |
| -#If this is true, the file status.rdf should not be altered manually. |
| 20 | +#Whether triple generation will be incremental or not. |
| 21 | +#Taken into account only when outputting to the hard disk (i.e. when jena.storeOutputModelUsingTdb is false). |
| 22 | +#If this parameter (default.incremental) is true, the file status.rdf should not be altered manually. |
| 23 | +#Leave this to false unless you have full understanding of what you are doing. See http://dx.doi.org/10.1145/2611040.2611082 |
21 | 24 | default.incremental=false
|
22 | 25 |
|
23 | 26 | #---------------------------------------------------------------#
|
24 | 27 | #------------------------- Input Model -------------------------#
|
25 | 28 | #---------------------------------------------------------------#
|
26 | 29 |
|
| 30 | +# R2RML Parser allows merging an RDF file (an input model) to the output of the execution. |
27 | 31 | input.model=dspace/dcterms-empty.rdf
|
28 | 32 |
|
29 |
| -# Valid types are RDF/XML, N-TRIPLE, TURTLE, TTL, N3. |
30 |
| -#input.model.type=TURTLE |
| 33 | +# The syntax of the input model. Valid values are RDF/XML, N-TRIPLE, TURTLE (or TTL), N3. |
31 | 34 | input.model.type=RDF/XML
|
32 | 35 |
|
33 | 36 | #---------------------------------------------------------------#
|
@@ -56,17 +59,21 @@ db.driver=org.postgresql.Driver
|
56 | 59 | #---------------------- Jena TDB Output -----------------------#
|
57 | 60 | #---------------------------------------------------------------#
|
58 | 61 |
|
59 |
| -# Store the resulting triples using TDB. |
| 62 | +# Store the resulting triples using TDB. Scales way more than storing on the hard disk, but the output is not human-understandable |
60 | 63 | jena.storeOutputModelUsingTdb=true
|
| 64 | + |
61 | 65 | # Clean TDB on startup is taken into account only when jena.storeOutputModelUsingTdb is true.
|
62 | 66 | jena.cleanTdbOnStartup=true
|
| 67 | + |
63 | 68 | # The directory containing the dataset
|
64 | 69 | jena.tdb.directory=tdb
|
65 | 70 |
|
66 | 71 | #---------------------------------------------------------------#
|
67 | 72 | #---------------------- Jena File Output -----------------------#
|
68 | 73 | #---------------------------------------------------------------#
|
69 | 74 |
|
70 |
| -#in case we will output the resulting triples in a file. This matters if property jena.storeOutputModelUsingTdb is false. |
| 75 | +# Whether we will output the resulting triples in a file. This is taken into account only when property jena.storeOutputModelUsingTdb is false. |
71 | 76 | jena.destinationFileName=dump.rdf
|
| 77 | + |
| 78 | +# The syntax of the destination file. Valid values are RDF/XML, N-TRIPLE, TURTLE (or TTL), N3. |
72 | 79 | jena.destinationFileSyntax=N3
|
0 commit comments