I'm trying to create a SPARQL endpoint based on Sesame. I installed Tomcat, PostgreSQL, and deployed a Sesame's web application. I created a repository based on PostgreSQL RDF store. Now i need to load a big ttl file (540M triples, file size is several GB) into a repository. Loading a big file over Workbench is not a good solution - it will take several days. What is the best non-programming solution to load the data? Are there tools like "console" to load data? For example, Virtuoso has isql tool for bulk loading...
1
There are 1 best solutions below
Related Questions in SESAME
- Ontologies, OWL, Sparql: Modelling that "something is not there" and performance considerations
- range function in sparql
- Storing separately individuals and ontology in sesame store
- Sesame caching common queries
- How to convert a Trig file to a Turtle file so that i can upload it in Sesame?
- Loading big RDF file into Sesame
- How to automatically generate new instance identifier in INSERT query on Sesame 2.7.7
- Unclear semantics of sesame 2.7 begin()
- How to retrieve the size and clear a sesame repository using Java API
- FAIL - Application at context path /openrdf-sesame could not be started
- Indexing about 300.000 triples in sesame using Camel
- Cannot connect to a local sesame local store
- RDF list subjects with their objects in a single line
- Single quad + most basic SPARQL query = 1 result in Jena, 2 results in Sesame - who is right?
- Connect to existing Sesame native datastore
Related Questions in OPENRDF
- Loading big RDF file into Sesame
- Issue accessing Sesame server and workbench
- Parse a single RDF string
- Use of typed URI in sesame sail openrdf
- Cloudbees Tomcat Application IOException
- How make org.openrdf.rio parser supports Turtle documents?
- Possible causes for an intermittent IOException error?
- Solutions for BNode in Sesame
- Check if a predicate is of standard type in Sesame
- How can I bind variables for Blazegraph SELECT SPARQL query for remote repository?
- RDF4J SAIL API implementation
- Importing Triples with Tinkerpop/bluebrints into OrientDB
- OpenRDF Sesame: how to handle locking?
- First call to openrdf-sesame update endpoint it very slow. Is there a way to optimize it?
- How to describe classes and properties using RDFS in Java
Related Questions in RDF4J
- Loading big RDF file into Sesame
- rdf4j filter model by rdf:id
- How to direct RDF4J to use SPIN RDF triples when sp:text is present in imported RDF file?
- How to increase max header size for GraphDB standalone server?
- Connect to GraphDB instance with rdf4j
- GraphDB or RDF4J bug? BOUND() yields wrong value
- graphDB User/PW proxy settings lead to statuscode 407
- Test org.eclipse.rdf4j.query.QueryResults.asModel(result)
- IS there a simple SPARQL Construct query to select all subject related statements by certain predicate value
- imported .owl files have #'s in prefixes vs original rdf4j triplestore
- How can I translate a TupleExpr or a ParsedTupleQuery into the Query String?
- Add triple statement (SimpleStatement) using rdf4j library
- Explore Graph in RDF4J custom function
- Does RDF4J offer a way to pretty print results in tabular format?
- Determine rdf mime-types in bash
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is no ready-made bulk loading tool available for Sesame that I am aware of - though Sesame-compatible triplestore vendors do have such tooling available as part of their specific database. Programming a bulk-upload solution is not particularly hard, but we somehow never got around to including such a tool in the Sesame core distribution.
540M triples, by the way, is probably too large for any of Sesame's default stores - the Native Store only scales to about 150M, and loading such a large dataset into the memory store is just too unwieldy (even if you had the available RAM). So you probably need to look into using a Sesame-compatible database provided by a third party. There are many choices available, both commercial and free/open-source, see this overview on the Sesame website for a list of some suggestions.