You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all,
I just tried to convert DBpedia to hdt and would like to share my experience. Some things did not owrk for me, although I am not sure, whether it is my fault or just missing features.
Java
I saw that bz2 works for Java. Good!
I tried to read in several bz2. files in Java as input and this didn't work (several input files not allowed)
I tried to read one file via stdin in java which worked
I tried to read in several files in Java via stdin with process substitution and mvn exec <(lbzip2 file1.bz2) <(lbzip2 file2.bz2) but it didn't work
I tried to create a big Java Jar with all dependencies with mvn assembly:single, but it just created the bin files (I was too lazy to adjust the descriptors in pom.xnml)
cpp
Although I did apt-get install serdi serd-dbg make failed, I disabled it in the Makefile then it compiled
bz2 didn't work. actually the unzipping seemed to work, but the parser threw a lot of errors
reading via stdin with process substitution failed as cpp doesn't accept stdin
reading from several input files worked. Well, it said Sorting triples and I lost patience as the percentage didn't go up
Overall, I solved it now by sort -um <(lbzip file1.bz2) .... | gzip2 > core.gz
My question is just whether all of the above is intended and expected behaviour or whether I should try some of the methods again as I might have done something wrong.
All the best,
Sebastian
The text was updated successfully, but these errors were encountered:
Hi all,
I just tried to convert DBpedia to hdt and would like to share my experience. Some things did not owrk for me, although I am not sure, whether it is my fault or just missing features.
Java
cpp
Overall, I solved it now by sort -um <(lbzip file1.bz2) .... | gzip2 > core.gz
My question is just whether all of the above is intended and expected behaviour or whether I should try some of the methods again as I might have done something wrong.
All the best,
Sebastian
The text was updated successfully, but these errors were encountered: