Skip to content

Commit 4fa7a50

Browse files
committed
Merge branch 'develop' of https://github.com/ebremer/BeakGraph into develop
2 parents 63cc136 + ddedb95 commit 4fa7a50

File tree

102 files changed

+8549
-5537
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+8549
-5537
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/target/
1+
/target/

LICENSE

Lines changed: 201 additions & 201 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# BeakGraph<br>
2-
<img
3-
src="https://github.com/ebremer/BeakGraph/raw/master/beakgraph.png?raw=true"
4-
width=300px height=300px
5-
alt="BeakGraph"
6-
title="BeakGraph"
7-
style="display: inline-block; margin: 0 auto; max-width: 150px">
8-
9-
BeakGraph is a [Apache Jena](https://jena.apache.org/) Graph implementation backed by [Apache Arrow](https://arrow.apache.org/)
10-
wrapped in a [Research Object Crate (RO-Crate)](https://www.researchobject.org/ro-crate/) inspired by [HDT](https://www.rdfhdt.org/).
11-
1+
# BeakGraph<br>
2+
<img
3+
src="https://github.com/ebremer/BeakGraph/raw/master/beakgraph.png?raw=true"
4+
width=300px height=300px
5+
alt="BeakGraph"
6+
title="BeakGraph"
7+
style="display: inline-block; margin: 0 auto; max-width: 150px">
8+
9+
BeakGraph is a [Apache Jena](https://jena.apache.org/) Graph implementation backed by [Apache Arrow](https://arrow.apache.org/)
10+
wrapped in a [Research Object Crate (RO-Crate)](https://www.researchobject.org/ro-crate/) inspired by [HDT](https://www.rdfhdt.org/).
11+
1212
Developed to power [Halcyon](https://github.com/halcyon-project/Halcyon). See [Arxiv](https://arxiv.org/) paper at http://arxiv.org/abs/2304.10612

nb-configuration.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project-shared-configuration>
3-
<!--
4-
This file contains additional configuration written by modules in the NetBeans IDE.
5-
The configuration is intended to be shared among all the users of project and
6-
therefore it is assumed to be part of version control checkout.
7-
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
8-
-->
9-
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
10-
<!--
11-
Properties that influence various parts of the IDE, especially code formatting and the like.
12-
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
13-
That way multiple projects can share the same settings (useful for formatting rules for example).
14-
Any value defined here will override the pom.xml file value but is only applicable to the current project.
15-
-->
16-
<netbeans.compile.on.save>all</netbeans.compile.on.save>
17-
</properties>
18-
</project-shared-configuration>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project-shared-configuration>
3+
<!--
4+
This file contains additional configuration written by modules in the NetBeans IDE.
5+
The configuration is intended to be shared among all the users of project and
6+
therefore it is assumed to be part of version control checkout.
7+
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
8+
-->
9+
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
10+
<!--
11+
Properties that influence various parts of the IDE, especially code formatting and the like.
12+
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
13+
That way multiple projects can share the same settings (useful for formatting rules for example).
14+
Any value defined here will override the pom.xml file value but is only applicable to the current project.
15+
-->
16+
<netbeans.compile.on.save>all</netbeans.compile.on.save>
17+
</properties>
18+
</project-shared-configuration>

nbactions.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<goal>org.codehaus.mojo:exec-maven-plugin:3.0.0:exec</goal>
1111
</goals>
1212
<properties>
13-
<exec.vmArgs>-Xmx55G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true</exec.vmArgs>
13+
<exec.vmArgs>--enable-preview -Xmx115G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true</exec.vmArgs>
1414
<exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args>
1515
<exec.appArgs></exec.appArgs>
16-
<exec.mainClass>com.ebremer.beakgraph.extra.Test</exec.mainClass>
16+
<exec.mainClass>com.ebremer.beakgraph.HDTish.HDF5Writer</exec.mainClass>
1717
<exec.executable>java</exec.executable>
1818
</properties>
1919
</action>
@@ -27,10 +27,10 @@
2727
<goal>org.codehaus.mojo:exec-maven-plugin:3.0.0:exec</goal>
2828
</goals>
2929
<properties>
30-
<exec.vmArgs>-Xmx55G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true -agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</exec.vmArgs>
30+
<exec.vmArgs>--enable-preview -Xmx115G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true -agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</exec.vmArgs>
3131
<exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args>
3232
<exec.appArgs></exec.appArgs>
33-
<exec.mainClass>com.ebremer.beakgraph.extra.Test</exec.mainClass>
33+
<exec.mainClass>com.ebremer.beakgraph.HDTish.HDF5Writer</exec.mainClass>
3434
<exec.executable>java</exec.executable>
3535
<jpda.listen>true</jpda.listen>
3636
</properties>
@@ -45,9 +45,9 @@
4545
<goal>org.codehaus.mojo:exec-maven-plugin:3.0.0:exec</goal>
4646
</goals>
4747
<properties>
48-
<exec.vmArgs>-Xmx55G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true</exec.vmArgs>
48+
<exec.vmArgs>--enable-preview -Xmx115G --add-opens java.base/java.nio=ALL-UNNAMED -Darrow.memory.debug.allocator=true</exec.vmArgs>
4949
<exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args>
50-
<exec.mainClass>com.ebremer.beakgraph.extra.Test</exec.mainClass>
50+
<exec.mainClass>com.ebremer.beakgraph.HDTish.HDF5Writer</exec.mainClass>
5151
<exec.executable>java</exec.executable>
5252
<exec.appArgs></exec.appArgs>
5353
</properties>

output.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��`

0 commit comments

Comments
 (0)