0

enter image description here

I was just ruined by this error for the whole week. I really don't know what happened, I got this error after compiling the source, I yet write custom code there, the source is fresh from the repo. I asked my friend to run the source and it worked on his laptop.

What I was tried to fix this problem :

  1. File -> Invalidate Cache
  2. Help -> Change Memory Setting (all size was tried) (current size: 2048)
  3. Intellij -> Preference -> Compiler -> Shared Build Process Heap Size (all size was tried) (current size: 6048)

And I am still stuck at that error.

Lately I run this command ./gradlew build --stacktrace --info to see the log, and i had no idea what was that. this is the full result:

enter image description here

enter image description here

enter image description here

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
  • Try to add gradle.properties file in the project root directory (next to build.gradle) and add the following there: `org.gradle.jvmargs=-Xms512m -Xmx4g` – Egor Klepikov Jun 13 '22 at 07:17
  • 1
    Did the execution generate a heap dump? If so, you might want to analyze it with a tool like Eclipse Memory Analyzer. – dan1st Jun 13 '22 at 20:40
  • Did you verify your used heap size? – hce Jun 14 '22 at 09:12
  • 1
    Changing `Intellij -> Preference -> Compiler -> Shared Build Process Heap Size` in case of same error on Scala with SBT helped! – tyger Mar 10 '23 at 21:57

2 Answers2

3

You can assign more heap

  • for your ide --> help | change memory settings
  • for your current programm --> Run | Edit Configurations... see screenshot

enter image description here

  • for all programs -->
    • Set Environment Variable: SET _JAVA_OPTIONS=-Xms512m -Xmx2048m
      or
    • File | Settings | Build, Execution, Deployment | Compiler and set user User-local build process VM options with like 2048

enter image description here

Verify heap size with How to view the current heap size that an application is using?

hce
  • 1,107
  • 9
  • 25
0

thanks for all your suggestions guys. I've done it all and got the same result.

finally, I can escape from this bug by running this command ./gradlew build in the terminal and close my Intellij. I don't know what really happened, but now it all working perfectly.

I want to ask u guys, I am new in mac, are partitioning disk in mac book take an effect on its performance?

  • Hello Arma, that is a not perfect solution but it works right. I would let you know that you can just edit your question or comment on it to make it more clear to reader the soulion you've taken. – heat Jun 15 '22 at 00:53