You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ignite.apache.org by dpolacza <dp...@gmail.com> on 2017/02/10 18:49:03 UTC

How to submit job to Ignite Yarn application

Hi,
I have submitted ignite as yarn application like it is described in chapter
"yarn-deployment".
In this case Ignite should schedule resources in resourcemanager and install
ignite nodes automatically
But how to send job to this application?
How "Configuration" object should be defined?

Regards



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-submit-job-to-Ignite-Yarn-application-tp10550.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: How to submit job to Ignite Yarn application

Posted by Nikolai Tikhonov <nt...@apache.org>.
Hi,

You can join Ignite client node to cluster (which was deployed to yarn) and
run any jobs/task. For it you need to configure VmIpFinder for client. See
the follwing example:

<bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
    <property name="addresses">
        <list>
            <!-- In distributed environment, replace with actual host
IP address. -->
            <value>IP_ADDRESS_YARN_NODE:47500..47509</value>
            <value>IP_ADDRESS_YARN_NODE1:47500..47509</value>
            <value>IP_ADDRESS_YARN_NODE2:47500..47509</value>
        </list>
    </property>
</bean>




On Fri, Feb 10, 2017 at 9:49 PM, dpolacza <dp...@gmail.com> wrote:

> Hi,
> I have submitted ignite as yarn application like it is described in chapter
> "yarn-deployment".
> In this case Ignite should schedule resources in resourcemanager and
> install
> ignite nodes automatically
> But how to send job to this application?
> How "Configuration" object should be defined?
>
> Regards
>
>
>
> --
> View this message in context: http://apache-ignite-users.
> 70518.x6.nabble.com/How-to-submit-job-to-Ignite-Yarn-
> application-tp10550.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>