- Make sure you are in the
docker
group.
Executesudo usermod -a -G docker $USER
and reboot. - From the root project directory execute
./gradlew build && docker-compose build --no-cache && docker-compose up -d cassandra-test && docker-compose up ignite-cassandra-client
That should build the project and create a corresponding image from that. Then a Cassandra instance should be started and after that a client instance should be brought up.
The client will try to connect to Cassandra and eventually you should see that client has successfully put and gotten value from Cassandra:
{Test1Key: {id: id1}} Test1{column1='col1 value', column3='col3 value', column5='col3 value', column6='null'}
- Add your Cassandra contact point if required in CassandraConfig#getDataSource
- Run IgniteServerRunner