Thanks Val,

I have run successfully  this with yarn on my local env. but when i run this
on production env, I always get spring beans error message

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xsi:schemaLocation=" 
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd";>           
 
<bean class="org.apache.ignite.configuration.IgniteConfiguration">
                    <property name="discoverySpi">
                         <bean
class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
                                   <property name="ipFinder">
                                           <bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder"> 
                                   
                                                <property name="addresses">
                                                   <list>
                                                       
<value>172.16.186.200:47500..47509</value>
                                                       
<value>172.16.186.201:47500..47509</value>
                                                       
<value>172.16.186.202:47500..47509</value>
                                                   </list>
                                                </property>
                                           </bean>
                                    </property>
                         </bean>
                   </property>
          </bean>
</beans>


in my local env , we can ping internet, but on our production env, the
internet is disabled, is this root cause for this ?
16/08/24 16:43:33 ERROR TaskSetManager: Task 5 in stage 1.0 failed 4 times;
aborting job
Exception in thread "main" org.apache.spark.SparkException: Job aborted due
to stage failure: Task 5 in stage 1.0 failed 4 times, most recent failure:
Lost task 5.3 in stage 1.0 (TID 24, xxxx): class
org.apache.ignite.IgniteCheckedException: Failed to instantiate Spring XML
application context
[springUrl=file:/u01/apache-ignite-fabric-1.6.0-bin/config/default-config.xml,
err=Line 34 in XML document from URL
[file:/u01/apache-ignite-fabric-1.6.0-bin/config/default-config.xml] is
invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 34;
columnNumber: 69; cvc-elt.1: Cannot find the declaration of element
'beans'.]
        at
org.apache.ignite.internal.util.spring.IgniteSpringHelperImpl.applicationContext(IgniteSpringHelperImpl.java:391)
        at
org.apache.ignite.internal.util.spring.IgniteSpringHelperImpl.loadConfigurations(IgniteSpringHelperImpl.java:104)
        at
org.apache.ignite.internal.util.spring.IgniteSpringHelperImpl.loadConfigurations(IgniteSpringHelperImpl.java:98)
        at
org.apache.ignite.internal.IgnitionEx.loadConfigurations(IgnitionEx.java:639)
        at
org.apache.ignite.internal.IgnitionEx.loadConfigurations(IgnitionEx.java:678)
        at
org.apache.ignite.internal.IgnitionEx.loadConfiguration(IgnitionEx.java:717)
        at
org.apache.ignite.spark.IgniteContext$$anonfun$$lessinit$greater$2.apply(IgniteContext.scala:85)
        at
org.apache.ignite.spark.IgniteContext$$anonfun$$lessinit$greater$2.apply(IgniteContext.scala:85)
        at org.apache.ignite.spark.Once.apply(IgniteContext.scala:198)
        at org.apache.ignite.spark.IgniteContext.ignite(IgniteContext.scala:138)
        at
org.apache.ignite.spark.IgniteRDD$$anonfun$savePairs$1.apply(IgniteRDD.scala:171)
        at
org.apache.ignite.spark.IgniteRDD$$anonfun$savePairs$1.apply(IgniteRDD.scala:170)
        at
org.apache.spark.rdd.RDD$$anonfun$foreachPartition$1$$anonfun$apply$33.apply(RDD.scala:920)
        at
org.apache.spark.rdd.RDD$$anonfun$foreachPartition$1$$anonfun$apply$33.apply(RDD.scala:920)
        at
org.apache.spark.SparkContext$$anonfun$runJob$5.apply(SparkContext.scala:1858)
        at
org.apache.spark.SparkContext$$anonfun$runJob$5.apply(SparkContext.scala:1858)
        at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:66)
        at org.apache.spark.scheduler.Task.run(Task.scala:89)
        at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:213)
        at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
        at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:756)
Caused by:
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line
34 in XML document from URL
[file:/u01/apache-ignite-fabric-1.6.0-bin/config/default-config.xml] is
invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 34;
columnNumber: 69; cvc-elt.1: Cannot find the declaration of element 'beans'.
        at
org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:398)
        at
org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:335)
        at
org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:303)
        at
org.apache.ignite.internal.util.spring.IgniteSpringHelperImpl.applicationContext(IgniteSpringHelperImpl.java:379)
        ... 21 more





--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Yarn-deployment-for-static-TcpDiscoverySpi-issues-Urgent-In-Production-tp7205p7269.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to