ldbc / ldbc_snb_interactive_v1_impls

Reference implementations for LDBC Social Network Benchmark's Interactive workload.
https://ldbcouncil.org/benchmarks/snb-interactive
Apache License 2.0
101 stars 86 forks source link

Error while running the mvn clean #314

Closed ashekha1 closed 2 years ago

ashekha1 commented 2 years ago

I am getting the below errors while trying to run the following command : mvn clean package -e -DskipTests -Pcypher

It was working the last time I built it. Has there been any changes ? I am attaching the error along with this. ![Uploading Issue1.png…]()

szarnyasg commented 2 years ago

Hi @ashekha1 --

  1. The attachment seems to be broken, could you please paste the output (as text)?
  2. Did you try cleaning your local Maven repository? (e.g. rm -rf ~/.m2/repository -- but note that this removes your entire Maven cache!)
  3. Did you try cloning this Git repository again and checking out tag 1.0.0?
ashekha1 commented 2 years ago

Attaching the word error_mvn.docx document

szarnyasg commented 2 years ago

Hi @ashekha1 -- in general, it's best to avoid docx files for sending code/console output. Instead, please paste the output in GitHub's field, using its code formatting.

I suspect cloning the repository again will solve your issues -- I had released an incorrect version 1.0.0 before which has been removed since. To clone the repository again, run:

# create a backup of the repository
mv ldbc_snb_interactive_impls-1.0.0{.bkp}
# clone it again
git clone https://github.com/ldbc/ldbc_snb_interactive_impls --branch 1.0.0 ldbc_snb_interactive_impls-1.0.0
# build it
cd ldbc_snb_interactive_impls-1.0.0
scripts/build.sh
ashekha1 commented 2 years ago

Hello @szarnyasg , trying the above and will get back to you.

ashekha1 commented 2 years ago

Thank you , cloning the latest code solved my problem . I had another query , for a scale factor of 3, what should be the maximum heap size ? While initializing and running the neo4j database I keep getting the error : Error occurred during initialization of VM Too small maximum heap Directories in use: home: /home/neo4j/neo4j/neo4j-community-4.4.6 config: /home/neo4j/neo4j/neo4j-community-4.4.6/conf logs: /home/neo4j/neo4j/neo4j-community-4.4.6/logs plugins: /home/neo4j/neo4j/neo4j-community-4.4.6/plugins import: /home/neo4j/neo4j/neo4j-community-4.4.6/import data: /home/neo4j/neo4j/neo4j-community-4.4.6/data certificates: /home/neo4j/neo4j/neo4j-community-4.4.6/certificates licenses: /home/neo4j/neo4j/neo4j-community-4.4.6/licenses run: /home/neo4j/neo4j/neo4j-community-4.4.6/run

I had given the size to be 8 .

szarnyasg commented 2 years ago

@ashekha1 not sure about the specific configuration. 8GB should be enough. Does the error occur during loading or when starting up the loaded database?