Introduction
Stardog is a fast, lightweight, commercial RDF database for mission-critical apps: it supports SPARQL 1.1;
Acquiring Stardog & Support
Download Stardog to get started. The Stardog support forum, stardog@clarkparsia.com, is the place to report bugs, ask questions, etc. You can also ask questions on Stack Overflow using the tag stardog.
Contributing
There are several open source components of Stardog; feel free to submit pull requests!
Acknowledgments
Thanks to all the Stardog testers, especially Robert Butler, Al Baker, Marko A. Rodriguez, Brian Sletten, Alin Dreghiciu, Rob Vesse, Stephane Fallah, John "New Model Army" Goodwin, José Devezas, Chris Halaschek-Wiener, Gavin Carothers, Brian Panulla, Ryan Kohl, Morton Swimmer, Quentin Reul, Paul Dlug, James Leigh, Alex Tucker, Ron Zettlemoyer, Jim Rhyne. Andrea Westerinen, Huy Phan.
The Essential Documentation
This is documentation for Stardog 1.2.2 (21 May 2013). Check out the release notes and the FAQ.
Quick Start Guide
Instructions to get up-and-running very quickly with Stardog.
Terminology
A glossary of technical terms used throughout the Stardog docs.
Stardog Compatibility Policies: The Future of Queries, Data, and Programs
A statement of the policies we will pursue in evolving Stardog beyond the 1.0 release.
Administration
- CLI Overview
- Administering a Stardog Server
- Administering a Stardog Database
- Configuring Security
- Managing Search Indexes
- Optimizing Bulk Data Loading
- Resource Requirements for Stardog
- Using Stardog on Windows
Using Stardog
Security
Integrity Constraint Validation
OWL 2 Reasoning
- Using Stardog's Reasoning Capabilities
- Not Getting Expected Answers?
- Known Issues
- Guidelines
- Technical Background
Programming with Java
- Introduction
- Creating and Administering Databases
- Creating a Connection String
- Security in Stardog
- Using SNARL
- Using Sesame
- Using Jena
- Client-Server Stardog
- Embedded Stardog
- Connection Pooling
- Deprecation & Backward Compatibility
Network Programming
Programming with Spring
Programming with Groovy
The Man Pages
stardog-admin
db copy, db create, db drop, db list, db migrate, db offline, db online, db optimize, db status.
icv add, icv drop, icv remove.
query kill, query list, query status.
role add, role grant, role list, role permission, role remove, role revoke.
user add, user disable, user enable, user addrole, user removerole, user grant, user list, user passwd, user permission, user remove, user revoke.
stardog
data add, data export, data remove, data size.
namespace add, namespace list, namespace remove.
Known Issues
As of 1.2.2, the known issues include:
- Asking for all individuals with reasoning via the query {?s a owl:Thing} might also retrieve some classes and properties. WILLFIX
- Schema queries do not bind graph variables.
- Dropping a database with the CLI will also delete all the data files on your Stardog home directory associated with that database. If you want to keep the data files but only remove the database from the system catalog, then you need to manually copy these files to another location before deleting the database.
- If relative URIs exist in the data files passed to create, add, or remove commands, then they will be resolved using the constant base URI http://api.stardog.com/ iff the format of the file allows base URIs. Turtle and RDF/XML formats allows base URIs but N-Triples format doesn't allow base URIs and relative URIs in N-Triples data will cause errors.
- queries with
FROM NAMEDwith a named graph that is not in Stardog will not cause Stardog to believe that it is, in fact, Maven, i.e., to automagically download the data from an arbitrary HTTP URL and include it in the query. Stardog will only evaluate queries over data that has been loaded into it. - SPARQL queries without a context or named graph are executed against the default, unnamed graph. In Stardog, the default graph is not the union of all the named graphs and the default graph. Note: this behavior is configurable via the query.all.graphs configuration parameter.
- RDF literals are limited to 8MB (after compression) in Stardog. Input data with literals larger than 8MB (after compression) will raise an exception.
