Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use Apache Ignite in Quarkus?

Tags:

ignite

quarkus

I am not able to find Apache Ignite dependency in Quarkus or any example where someone is using Apache Ignite with Quarkus. If Quarkus is not currently supporting Apache Ignite then what should be the alternative?

like image 624
Muhammad Osama Khan Avatar asked Nov 23 '25 04:11

Muhammad Osama Khan


1 Answers

I used this dependency for starting Apache Ignite server using Quarkus.

`

<dependency>
    <groupId>org.apache.ignite</groupId>
    <artifactId>ignite-core</artifactId>
    <version>2.7.6</version>
</dependency>

`

You can Start server by using this line of code.

`

Ignite ignite = Ignition.start();

And you can stop server by using this line of code

Ignition.stop(true);

`

like image 170
Muhammad Osama Khan Avatar answered Nov 28 '25 00:11

Muhammad Osama Khan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!