How do you use cassandra with circleci

I’m trying to use cassandra and without any config the container exits with 137 (out of memory)

After struggling with this for days the answer was easy

      - image: cassandra:3.11
        environment:
          MAX_HEAP_SIZE: 2048m
          HEAP_NEWSIZE: 512m
1 Like

Thanks so much - at first I didn’t read that you updated the question with your answer so I continued searching for a few more minutes before coming back here :slight_smile: