apache-ignite

Форк
0

README.txt

Apache Ignite Dependencies

Current folder contains JAR files for all Apache Ignite modules along with their dependencies. When node is started using 'ignite.{sh|bat}' script, all JARs and classes located in 'libs' folder and all its sub-folders except 'optional' are added to classpath of the node.

By default, only Apache Ignite core JAR and a minimum set of modules is enabled, while other modules are located in 'optional' folder and therefore disabled.

To enable any of optional Ignite modules when starting a standalone node, move corresponding module folder from 'libs/optional' to 'libs' before running 'ignite.{sh|bat}' script. The content of the module folder will be added to classpath in this case.

If you need to add your own classes to classpath of the node (e.g., task classes), put them to 'libs' folder. You can create a subfolder for convenience as well.

Importing Ignite Dependencies In Maven Project

If you are using Maven to manage dependencies of your project, there are two options:

  1. Import:
  • apache-ignite (all inclusive)

Here is how 'apache-ignite' can be added to your POM file (replace '${ignite.version}' with actual Ignite version you are interested in):

... ... org.apache.ignite apache-ignite ${ignite.version} ... ...

  1. Or import individual Apache Ignite modules a la carte.

Alternatively you can import Ignite modules a la carte, one by one. The only required module is 'ignite-core', all others are optional. Here is how it can be imported into your POM file:

... ... org.apache.ignite ignite-core ${ignite.version} ... ...

All optional modules can be imported just like the core module, but with different artifact IDs.

The following modules are available:

  • ignite-indexing (for SQL querying and indexing)
  • ignite-jcl (for Apache Commons logging)
  • ignite-jta (for XA integration)
  • ignite-log4j2 (for Log4j 2 logging)
  • ignite-rest-http (for HTTP REST messages)
  • ignite-schedule (for Cron-based task scheduling)
  • ignite-sl4j (for SL4J logging)
  • ignite-spring (for Spring-based configuration support)
  • ignite-urideploy (for URI-based deployment)
  • ignite-web (for Web Sessions Clustering)
  • ignite-zookeeper (for cluster discovery based on Apache Zookeeper)

For example, if you want to use Apache Ignite Spring-based configuration, you should add 'ignite-spring' module like this:

... ... org.apache.ignite ignite-core ${ignite.version}

    <!-- Optional. -->
    <dependency>
        <groupId>org.apache.ignite</groupId>
        <artifactId>ignite-spring</artifactId>
        <version>${ignite.version}</version>
    </dependency>
    ...
</dependencies>
...

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.