[Virtuoso-users] Installing virtuoso on Ubuntu (Amazon instance)

2014-01-15 Thread harshal patni
Hello Everyone, I currently have a ubuntu instance on AWS EC2 and would like to install virtuoso on that instance. I followed all the instructions provided at http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VOSUbuntuNotes . According to this document I should have bee

Re: [Virtuoso-users] {Disarmed} Re: Automatic loading of triples into virtuoso

2014-01-15 Thread Jerven Bolleman
Hi Andra, In my virtuoso branch I do something similar but with Sesame. However, if you want good speed over large loads you need to turn off “log” and “auto checkpointing” This is more JDBC level actions and I don’t know how you do it in Jena but in sesame you can do it with utility methods li

Re: [Virtuoso-users] Automatic loading of triples into virtuoso

2014-01-15 Thread Jim McCusker
I do something like this: OntModel memoryModel = ...; VirtModel model = null; try { model = VirtModel.openDatabaseModel(graphURI,virtuosoURL,virtuosoUser,virtuosoPassword); model.begin(); model.removeAll(); model.add(memoryModel); model.commit(); } catch (Exception e) { if (model != null) m

[Virtuoso-users] Automatic loading of triples into virtuoso

2014-01-15 Thread Andra Waagmeester
Hi, I am looking into a solution to automatically load triples into our triples store. We use jena to convert our data into triples. Our current workflow is that we dump the triples in a file (e.g. content.ttl) after which this file is loaded through the isql command line: "DB.DBA.TTLP