Build job with cassandra docker image

I have a job that needs java and cassandra. I used both the images with openjdk being primary one. Following is the basic skeleton of the config.yml

version: 2.0

jobs:
  buildAndTest:
    docker:
      - image: circleci/openjdk:8
      - image: circleci/cassandra:3.10
    ........
    ........

workflows:
    ........
    ........  

I run into following error on cassandra container:

To enable GC log rotation, use -Xloggc: -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files>
where num_of_file > 0
GC log rotation is turned off

Exited with code 137

Has anyone else run into similar issue? Any pointer would be helpful.

It’s probably not a CI issue per se, just something you have to debug with Cassandra. Try searching for your error.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.