Skip to content

Commit

Permalink
Merge pull request #144 from awoods/vivo-1741
Browse files Browse the repository at this point in the history
Update example default triple store from SDB to TDB
  • Loading branch information
roflinn authored Feb 25, 2020
2 parents d9571cb + 9b97bcd commit 7fdcd6e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
18 changes: 9 additions & 9 deletions home/src/main/resources/config/example.applicationSetup.n3
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
:hasSearchIndexer :basicSearchIndexer ;
:hasImageProcessor :iioImageProcessor ;
:hasFileStorage :ptiFileStorage ;
:hasContentTripleSource :sdbContentTripleSource ;
:hasContentTripleSource :tdbContentTripleSource ;
:hasConfigurationTripleSource :tdbConfigurationTripleSource ;
:hasTBoxReasonerModule :jfactTBoxReasonerModule .

Expand Down Expand Up @@ -89,15 +89,15 @@
# endpoint, or a Virtuoso endpoint, with parameters as shown.
#

:sdbContentTripleSource
a vitroWebapp:triplesource.impl.sdb.ContentTripleSourceSDB ,
vitroWebapp:modules.tripleSource.ContentTripleSource .
#:sdbContentTripleSource
# a vitroWebapp:triplesource.impl.sdb.ContentTripleSourceSDB ,
# vitroWebapp:modules.tripleSource.ContentTripleSource .

#:tdbContentTripleSource
# a vitroWebapp:triplesource.impl.tdb.ContentTripleSourceTDB ,
# vitroWebapp:modules.tripleSource.ContentTripleSource ;
# # May be an absolute path, or relative to the Vitro home directory.
# :hasTdbDirectory "tdbContentModels" .
:tdbContentTripleSource
a vitroWebapp:triplesource.impl.tdb.ContentTripleSourceTDB ,
vitroWebapp:modules.tripleSource.ContentTripleSource ;
# May be an absolute path, or relative to the Vitro home directory.
:hasTdbDirectory "tdbContentModels" .

#:sparqlContentTripleSource
# a vitroWebapp:triplesource.impl.sparql.ContentTripleSourceSPARQL ,
Expand Down
21 changes: 12 additions & 9 deletions home/src/main/resources/config/example.runtime.properties
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,17 @@ argon2.parallelism =1
argon2.memory = 1024
argon2.time = 1000

#
# NOTE: VitroConnection.DataSource.* properties are only used in conjuction with
# an SDB triple store.
#
# The basic parameters for a database connection. Change the end of the
# URL to reflect your database name (if it is not "vitrodb"). Change the username
# and password to match the authorized database user you created.
#
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
VitroConnection.DataSource.username = vitrodbUsername
VitroConnection.DataSource.password = vitrodbPassword
# VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
# VitroConnection.DataSource.username = vitrodbUsername
# VitroConnection.DataSource.password = vitrodbPassword

#
# Email parameters which VIVO can use to send mail. If these are left empty,
Expand Down Expand Up @@ -118,14 +121,14 @@ selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
# The maximum number of active connections in the database connection pool.
# Increase this value to support a greater number of concurrent page requests.
#
VitroConnection.DataSource.pool.maxActive = 40
# VitroConnection.DataSource.pool.maxActive = 40

#
# The maximum number of database connections that will be allowed
# to remain idle in the connection pool. Default is 25%
# of the maximum number of active connections.
#
VitroConnection.DataSource.pool.maxIdle = 10
# VitroConnection.DataSource.pool.maxIdle = 10


# -----------------------------------------------------------------------------
Expand All @@ -136,9 +139,9 @@ VitroConnection.DataSource.pool.maxIdle = 10
# Parameters to change in order to use VIVO with a database other than
# MySQL.
#
VitroConnection.DataSource.dbtype = MySQL
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
VitroConnection.DataSource.validationQuery = SELECT 1
# VitroConnection.DataSource.dbtype = MySQL
# VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
# VitroConnection.DataSource.validationQuery = SELECT 1

# Note: the above parameters allow you to change the relational database that
# is used as the back end for Jena SDB. If you want to use a triple store
Expand Down Expand Up @@ -392,4 +395,4 @@ createAndLink.providers = doi, pmid
# Triple pattern fragments is a very fast, very simple means for querying a triple store.
# The triple pattern fragments API in VIVO puts little load on the server, providing a simple means for getting data from the triple store. The API has a web interface for manual use, can be used from the command line via curl, and can be used by programs.
#
# tpf.activeFlag = true
# tpf.activeFlag = true

0 comments on commit 7fdcd6e

Please sign in to comment.