RE: Update LVG to 2016 version

2017-01-19 Thread Finan, Sean
Hi Andrey, I won't have time to test this until next week or maybe even after that. If there are no showstoppers then you have done the community a great favor! Others and I have wanted to update LVG and hsqldb for so, so long. I hope that somebody out there can have a look at this as I woul

RE: Update LVG to 2016 version

2017-01-29 Thread Finan, Sean
Hi Andrey, You have recently been a great contributor to ctakes , and I really appreciate that. You have answered devlist questions and your LVG update is a seriously big deal. Because of this, you are probably very interested in the upcoming release. You may have read emails that were on th

Re: Update LVG to 2016 version

2017-01-29 Thread Andrey Kurdumov
I ask guy who publish LVG to Maven update to version 2017, so I have to update my repository with LVG 2017 version. If you interested, I could update LVG to that version too. Now that's just simple change in pom.xml 2017-01-29 14:39 GMT+06:00 Finan, Sean : > Hi Andrey, > > You have recently been

Re: Update LVG to 2016 version

2017-01-29 Thread Andrey Kurdumov
I update code in GitHub to include LVG 2017 2017-01-29 15:29 GMT+06:00 Andrey Kurdumov : > I ask guy who publish LVG to Maven update to version 2017, so I have to > update my repository with LVG 2017 version. If you interested, I could > update LVG to that version too. Now that's just simple chan

Re: Update LVG to 2016 version

2017-01-29 Thread shahid ashraf
Hi Andrey It would be good , if you update some steps how to setup new LVG. (Have also cloned your repo.) On Sun, Jan 29, 2017 at 5:59 PM, Andrey Kurdumov wrote: > I update code in GitHub to include LVG 2017 > > 2017-01-29 15:29 GMT+06:00 Andrey Kurdumov : > > > I ask guy who publish LVG to

Re: Update LVG to 2016 version

2017-01-31 Thread Andrey Kurdumov
Basically after LVG2016 update you have to store all databases in HSQLDB 2.3.4 format. Thus you should upgrade data to that format. Other things exactly the same. I intentionally don't introduce other changes in the setup so it will be easier to incorporate to existing code. Steps to upgrade from

Re: Update LVG to 2016 version

2017-02-12 Thread Taposh D. Roy
Please unsubscribe me. Regards, T On 2/12/17, 12:08 PM, "shahid ashraf" wrote: Caution: This email came from outside Kaiser Permanente. Do not open attachments or click on links if you do not recognize the sender. _

Re: Update LVG to 2016 version

2017-02-13 Thread shahid ashraf
Thanks Andrey I was able to successfully update the database... and use in dev through cvd. i was using sqltool (which was wrong), i switched to DatabaseManager *java -cp ~/Downloads/hsqldb_1_8_0_10.jar org.hsqldb.util.DatabaseManager* *java -cp ~/Downloads/hsqldb-2.3.4/hsqldb/lib/hsqldb.jar o

Re: Update LVG to 2016 version

2017-02-13 Thread Andrey Kurdumov
Cool, .properties file looks ok. You could make database readonly by adding readonly=true to it if you needed that. Did you able to test how LVG 2016/17 working in multithreaded environment? I did not test like that, because I need LVG for different purposes, so that's interesting to know how it w

Re: Update LVG to 2016 version

2017-02-13 Thread shahid ashraf
Hi Andrey On CVD the LVG is using the new dbs.. But while i added the ctakes-lvg jar to the multithreaded code(SERVLET) like mvn install:install-file -Dfile=/Users/shahid/projects/workspace/ctakes/ctakes-lvg/target/ctakes-lvg-3.2.3-SNAPSHOT.jar -DgroupId=org.apache.ctakes -DartifactId=ctakes-lvg

Re: Update LVG to 2016 version

2017-02-13 Thread shahid ashraf
Hi Seems the previous error i was missing to use the hsqldb 2.3.4 jar... as clinical_pipeline had transitive dependy to 1.8. So fixed that by including 2.3.4 hsqldb jar. On Mon, Feb 13, 2017 at 3:25 PM, shahid ashraf wrote: > Hi Andrey > > On CVD the LVG is using the new dbs.. But while i add