Questions tagged [stardog]

Questions related the Stardog RDF database.

Stardog is a fast, lightweight, RDF database: it supports ; HTTP and the SNARL protocol for remote access and control; as a data model; and for inference and data analytics. It also has advanced features such as full-text search via integration with and integrity constraints.

There is a mailing list and extensive documentation available online.


Related tags :

97 questions
0
votes
1 answer

Java Error when trying to start stardog server

When I try to start my stardog-server, my terminal shows me following Java-Error Exception in thread "main" java.lang.NoClassDefFoundError: com/complexible/stardog/cli/admin/CLI Caused by: java.lang.ClassNotFoundException:…
0
votes
1 answer

Stardog data loading and Jena

I am using Stardog to store a bunch of triples that come from different sources. I use Jena to collect and merge the data in a single Jena graph. All these triples are part of ABoxes. I am not sure Stardog will require that the TBox is also merged…
user1156544
  • 1,725
  • 2
  • 25
  • 51
0
votes
1 answer

Maven dependency list for stardog examples

Could someone please post the maven dependencies needed to run the stardog 2.1.3 client examples? These critical ones keep coming up undefined import com.complexible.common.openrdf.OpenRdfIO; import com.complexible.common.protocols.server.Server;…
Bradjcox
  • 1,509
  • 1
  • 18
  • 30
0
votes
2 answers

Stardog Connection.commit() raising java.nio.channels.ClosedChannelException

I am trying to add statements to a stardog connection using a connection pool. For some reason about halfway through data ingest, I get a ClosedChannelConnectionException when I try to commit. // This all runs in a loop while ... { def conn =…
0
votes
2 answers

Stardog Command not found

I am trying to get to install stardog on mac 10.8.5 using the instructions provided at http://docs.stardog.com/quick-start/. The export path particular directory has been created and for which echo’ed to make sure that environmental variable is set…
mnjcc
  • 35
  • 1
  • 4
0
votes
3 answers

Stardog database creation giving file not found exception

I am creating a new database in stardog using java. When I am creating the database and importing a RDF file in localhost its working. But when I am creating db in remote server I am getting a file not found exception for the same RDF file. Please…
Vishnudev K
  • 2,874
  • 3
  • 27
  • 42
-2
votes
1 answer

Remove special symbols from String

I'm working with Stardog in this Java code: Connection aConn = ConnectionConfiguration .to("") .server("http://localhost:5820") .database("TP_OntologiasEjecutado") .credentials("admin", "admin") …
1 2 3 4 5 6
7