You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ignite.apache.org by percent620 <pe...@163.com> on 2016/08/11 05:09:11 UTC

Embedded mode ignite on spark

Hello, I want to integrate ignite with spark on Embedded mode , and here is
my detailed steps for this.

1、added maven dependencies for pom.xml
 
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-core</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-indexing</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-visor-console</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-spring</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-spark</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-yarn</artifactId>
            <version>1.6.0</version>
        </dependency>

2、Write spark code and submit these code to yarn application, and the code
is 
val igniteContext = new IgniteContext[String, BaseLine](sc,() => new
IgniteConfiguration(),false)

false: is embedded mode for ignite, right?
tempDStream.foreachRDD(rdd =>{
      val rddCounter = rdd.count().toInt
totallyCounter += rddCounter
println(DateUtil.getNowDate() + " invoked! count=" + rddCounter +
";totallyCounter= => " + totallyCounter)
if(!rdd.isEmpty()) {
        //==================================start======
        val cacheRdd = igniteContext.fromCache("partitioned")

       //fianlLatestBaselineRDD: total rdd that need to cache on ignite
       cacheRdd.savePairs(fianlLatestBaselineRDD)

println("xx=> " + xxx() +"\t " +
          " xxx => " + xxx() + "\t " +
          " cacheRdd.counter=> " + cacheRdd.count())
}
      


}
3、the code is running on yarn successfully and I found that the ignite can't
cache all the datas,and it discard some datas, such as
2016-08-11 11:28:00:es write invoked! count=10;totally totallyCounter= => 10
cacheRdd.start.counter=> 0                                           
2、cacheRdd.start.fianlLatestBaselineRDD.counter=> 10                   
xxx.count=> 140       yyy.count => 10	  cacheRdd.counter=> 5(need to be 10)
=======================================================================================================================
2016-08-11 11:28:48:write invoked! count= 9;totallyCounter= => 19
cacheRdd.start.counter=> 5                                           
xxxx.count=> 126       yyy.count => 9	  cacheRdd.counter=> 9(need to be 19)
=========================================================================================================================


Can anyone help me on this issues? thanks again!!!!





--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
I guess there are some failures on containers. Can you share the logs?

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7392.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
We have two  scenes that need to be used on our production env. 

1、We have lots of middle datas that need to be saved.

We use yarn ignite integration to save these datas. We have already deployed
this successfully. 

our idea code like this to start ignite yarn code as below
*val igniteContext = new IgniteContext[Integer, Integer](sc,
"/u01/apache-ignite-fabric-1.6.0-bin/config/default-config.xml")*

We have no issues for this 1)

2、Another scene that we also have embedded ignite spark integration, all the
ignite process need to run with spark job. we can't shared these data.


val igniteContext = new IgniteContext[Integer, Integer](sc,
"/u01/apache-ignite-fabric-1.6.0-bin/config/default-config.xml",*false*)

We use this code to start ignite, is this right?

we get error message when we use this way, error issues is 
16/08/26 16:23:52 ERROR YarnScheduler: Lost executor 1 on xxxx: Container
marked as failed: container_1455892346017_5494_01_000002 on host:
vmsecdomain010194054060.cm10. Exit status: -100. Diagnostics: Container
released on a *lost* node 

sometime this mode will clean *yarn-ignite-contain existed proces*s , I
think that they are separated. right?







--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7359.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
Hi,

Sorry I didn't understand the question. Can you please clarify and give more
details?

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7318.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
I just saw this article, and only have a question


1)how to different ignite with spark embedded integration,  ignite with yarn
integration? thanks!!!



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7294.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
You can use this one as a reference:
https://apacheignite-fs.readme.io/docs/ignitecontext-igniterdd

Here the empty configuration object is created, but you can change any
properties if needed. The whole point is to do this inside the function, not
the outside.

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7219.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Can you please provider a demo to me? I'm n new ignite, thanks very much  for
your great hep on this!!!!!



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7198.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
You have to create the configuration object inside the closure you provide to
IgniteContext. This closure will be called on each executor.
IgniteConfiguration itself is indeed not serializable.

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7194.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Thanks vkulichenko,
I will use TcpDiscoveryVmIpFinder instead of mutinies for ignite, but i
faced another issues.

my integration mode is : embedded mode ignite on spark
1) 
Scala code for idea as below
val spi = new TcpDiscoverySpi()
val ipFinder = new TcpDiscoveryVmIpFinder()
// Set initial IP addresses.
// Note that you can optionally specify a port or a port range.
ipFinder.setAddresses(util.Arrays.asList("172.16.186.200",
"172.16.186.200:47500..47509"))
spi.setIpFinder(ipFinder)
val cfg = new IgniteConfiguration()
// Override default discovery SPI.
cfg.setDiscoverySpi(spi)
*val igniteContext = new IgniteContext[Integer,Integer](sc, () => cfg,
false)
*


2)run spark-submit to submit my jar to yarn cluster, but faced the following
erormessage

spark-submit --driver-memory 2G --class com.ignite.testIgniteEmbedRDD
--master yarn --executor-cores 2 --executor-memory 1000m --num-executors 2
--conf spark.rdd.compress=false --conf spark.shuffle.compress=false --conf
spark.broadcast.compress=false
/root/limu/ignite/spark-project-jar-with-dependencies.jar
16/08/21 03:15:13 INFO spark.SparkContext: Running Spark version 1.6.1
16/08/21 03:15:14 WARN util.NativeCodeLoader: Unable to load native-hadoop
library for your platform... using builtin-java classes where applicable
16/08/21 03:15:14 INFO spark.SecurityManager: Changing view acls to: root
16/08/21 03:15:14 INFO spark.SecurityManager: Changing modify acls to: root
16/08/21 03:15:14 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(root); users with modify permissions: Set(root)
16/08/21 03:15:15 INFO util.Utils: Successfully started service
'sparkDriver' on port 38970.
16/08/21 03:15:15 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/21 03:15:15 INFO Remoting: Starting remoting
16/08/21 03:15:16 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkDriverActorSystem@172.16.186.200:34025]
16/08/21 03:15:16 INFO util.Utils: Successfully started service
'sparkDriverActorSystem' on port 34025.
16/08/21 03:15:16 INFO spark.SparkEnv: Registering MapOutputTracker
16/08/21 03:15:16 INFO spark.SparkEnv: Registering BlockManagerMaster
16/08/21 03:15:16 INFO storage.DiskBlockManager: Created local directory at
/tmp/blockmgr-ffc108d3-da0d-4ff4-a910-8ff2a66d0463
16/08/21 03:15:16 INFO storage.MemoryStore: MemoryStore started with
capacity 1259.8 MB
16/08/21 03:15:16 INFO spark.SparkEnv: Registering OutputCommitCoordinator
16/08/21 03:15:17 INFO server.Server: jetty-8.y.z-SNAPSHOT
16/08/21 03:15:17 INFO server.AbstractConnector: Started
SelectChannelConnector@0.0.0.0:4040
16/08/21 03:15:17 INFO util.Utils: Successfully started service 'SparkUI' on
port 4040.
16/08/21 03:15:17 INFO ui.SparkUI: Started SparkUI at
http://172.16.186.200:4040
16/08/21 03:15:17 INFO spark.HttpFileServer: HTTP File server directory is
/tmp/spark-6406a8e6-0a53-4925-a17e-158ce3b4aa6e/httpd-292e03c2-1805-4e68-916f-acd4eef0c265
16/08/21 03:15:17 INFO spark.HttpServer: Starting HTTP Server
16/08/21 03:15:17 INFO server.Server: jetty-8.y.z-SNAPSHOT
16/08/21 03:15:17 INFO server.AbstractConnector: Started
SocketConnector@0.0.0.0:36680
16/08/21 03:15:17 INFO util.Utils: Successfully started service 'HTTP file
server' on port 36680.
16/08/21 03:15:18 INFO spark.SparkContext: Added JAR
file:/root/limu/ignite/spark-project-jar-with-dependencies.jar at
http://172.16.186.200:36680/jars/spark-project-jar-with-dependencies.jar
with timestamp 1471774518173
16/08/21 03:15:18 INFO client.RMProxy: Connecting to ResourceManager at
sparkup1/172.16.186.200:8032
16/08/21 03:15:18 INFO yarn.Client: Requesting a new application from
cluster with 3 NodeManagers
16/08/21 03:15:18 INFO yarn.Client: Verifying our application has not
requested more than the maximum memory capability of the cluster (8192 MB
per container)
16/08/21 03:15:18 INFO yarn.Client: Will allocate AM container, with 896 MB
memory including 384 MB overhead
16/08/21 03:15:18 INFO yarn.Client: Setting up container launch context for
our AM
16/08/21 03:15:18 INFO yarn.Client: Setting up the launch environment for
our AM container
16/08/21 03:15:18 INFO yarn.Client: Preparing resources for our AM container
16/08/21 03:15:19 INFO yarn.Client: Uploading resource
file:/usr/spark-1.6.1-bin-hadoop2.6/lib/spark-assembly-1.6.1-hadoop2.6.0.jar
->
hdfs://sparkup1:9000/user/root/.sparkStaging/application_1471720446331_0026/spark-assembly-1.6.1-hadoop2.6.0.jar
16/08/21 03:15:25 INFO yarn.Client: Uploading resource
file:/tmp/spark-6406a8e6-0a53-4925-a17e-158ce3b4aa6e/__spark_conf__3046103417669035498.zip
->
hdfs://sparkup1:9000/user/root/.sparkStaging/application_1471720446331_0026/__spark_conf__3046103417669035498.zip
16/08/21 03:15:25 INFO spark.SecurityManager: Changing view acls to: root
16/08/21 03:15:25 INFO spark.SecurityManager: Changing modify acls to: root
16/08/21 03:15:25 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(root); users with modify permissions: Set(root)
16/08/21 03:15:25 INFO yarn.Client: Submitting application 26 to
ResourceManager
16/08/21 03:15:25 INFO impl.YarnClientImpl: Submitted application
application_1471720446331_0026
16/08/21 03:15:26 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:26 INFO yarn.Client:
         client token: N/A
         diagnostics: N/A
         ApplicationMaster host: N/A
         ApplicationMaster RPC port: -1
         queue: default
         start time: 1471774525522
         final status: UNDEFINED
         tracking URL:
http://sparkup1:8088/proxy/application_1471720446331_0026/
         user: root
16/08/21 03:15:27 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:28 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:29 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:30 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:31 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: ACCEPTED)
16/08/21 03:15:32 INFO cluster.YarnSchedulerBackend$YarnSchedulerEndpoint:
ApplicationMaster registered as NettyRpcEndpointRef(null)
16/08/21 03:15:32 INFO cluster.YarnClientSchedulerBackend: Add WebUI Filter.
org.apache.hadoop.yarn.server.webproxy.amfilter.AmIpFilter, Map(PROXY_HOSTS
-> sparkup1, PROXY_URI_BASES ->
http://sparkup1:8088/proxy/application_1471720446331_0026),
/proxy/application_1471720446331_0026
16/08/21 03:15:32 INFO ui.JettyUtils: Adding filter:
org.apache.hadoop.yarn.server.webproxy.amfilter.AmIpFilter
16/08/21 03:15:32 INFO yarn.Client: Application report for
application_1471720446331_0026 (state: RUNNING)
16/08/21 03:15:32 INFO yarn.Client:
         client token: N/A
         diagnostics: N/A
         ApplicationMaster host: 172.16.186.201
         ApplicationMaster RPC port: 0
         queue: default
         start time: 1471774525522
         final status: UNDEFINED
         tracking URL:
http://sparkup1:8088/proxy/application_1471720446331_0026/
         user: root
16/08/21 03:15:32 INFO cluster.YarnClientSchedulerBackend: Application
application_1471720446331_0026 has started running.
16/08/21 03:15:32 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 50934.
16/08/21 03:15:32 INFO netty.NettyBlockTransferService: Server created on
50934
16/08/21 03:15:32 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/21 03:15:32 INFO storage.BlockManagerMasterEndpoint: Registering block
manager 172.16.186.200:50934 with 1259.8 MB RAM, BlockManagerId(driver,
172.16.186.200, 50934)
16/08/21 03:15:32 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/21 03:15:41 INFO cluster.YarnClientSchedulerBackend: Registered
executor NettyRpcEndpointRef(null) (sparkup2:48699) with ID 1
16/08/21 03:15:41 INFO storage.BlockManagerMasterEndpoint: Registering block
manager sparkup2:42462 with 500.0 MB RAM, BlockManagerId(1, sparkup2, 42462)
16/08/21 03:15:42 INFO cluster.YarnClientSchedulerBackend: Registered
executor NettyRpcEndpointRef(null) (sparkup3:34689) with ID 2
16/08/21 03:15:42 INFO cluster.YarnClientSchedulerBackend: SchedulerBackend
is ready for scheduling beginning after reached minRegisteredResourcesRatio:
0.8
16/08/21 03:15:42 INFO storage.BlockManagerMasterEndpoint: Registering block
manager sparkup3:48251 with 500.0 MB RAM, BlockManagerId(2, sparkup3, 48251)
============>
16/08/21 03:15:42 INFO spark.IgniteContext: Will start Ignite nodes on 2
workers
Exception in thread "main" org.apache.spark.SparkException: Task not
serializable
        at
org.apache.spark.util.ClosureCleaner$.ensureSerializable(ClosureCleaner.scala:304)
        at
org.apache.spark.util.ClosureCleaner$.org$apache$spark$util$ClosureCleaner$$clean(ClosureCleaner.scala:294)
        at
org.apache.spark.util.ClosureCleaner$.clean(ClosureCleaner.scala:122)
        at org.apache.spark.SparkContext.clean(SparkContext.scala:2055)
        at
org.apache.spark.rdd.RDD$$anonfun$foreachPartition$1.apply(RDD.scala:919)
        at
org.apache.spark.rdd.RDD$$anonfun$foreachPartition$1.apply(RDD.scala:918)
        at
org.apache.spark.rdd.RDDOperationScope$.withScope(RDDOperationScope.scala:150)
        at
org.apache.spark.rdd.RDDOperationScope$.withScope(RDDOperationScope.scala:111)
        at org.apache.spark.rdd.RDD.withScope(RDD.scala:316)
        at org.apache.spark.rdd.RDD.foreachPartition(RDD.scala:918)
        at
org.apache.ignite.spark.IgniteContext.<init>(IgniteContext.scala:55)
        at com.ignite.testIgniteEmbedRDD$.main(testIgniteEmbedRDD.scala:33)
        at com.ignite.testIgniteEmbedRDD.main(testIgniteEmbedRDD.scala)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at
org.apache.spark.deploy.SparkSubmit$.org$apache$spark$deploy$SparkSubmit$$runMain(SparkSubmit.scala:731)
        at
org.apache.spark.deploy.SparkSubmit$.doRunMain$1(SparkSubmit.scala:181)
        at
org.apache.spark.deploy.SparkSubmit$.submit(SparkSubmit.scala:206)
        at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:121)
        at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
Caused by: java.io.NotSerializableException:
org.apache.ignite.configuration.IgniteConfiguration
Serialization stack:
        - object not serializable (class:
org.apache.ignite.configuration.IgniteConfiguration, value:
IgniteConfiguration [gridName=null, pubPoolSize=16, callbackPoolSize=16,
sysPoolSize=16, mgmtPoolSize=4, igfsPoolSize=1, utilityCachePoolSize=16,
utilityCacheKeepAliveTime=10000, marshCachePoolSize=16,
marshCacheKeepAliveTime=10000, p2pPoolSize=2, ggHome=null, ggWork=null,
mbeanSrv=null, nodeId=null, marsh=null, marshLocJobs=false, daemon=false,
p2pEnabled=false, netTimeout=5000, sndRetryDelay=1000, sndRetryCnt=3,
clockSyncSamples=8, clockSyncFreq=120000, metricsHistSize=10000,
metricsUpdateFreq=2000, metricsExpTime=9223372036854775807,
discoSpi=TcpDiscoverySpi [addrRslvr=null, sockTimeout=0, ackTimeout=0,
reconCnt=10, maxAckTimeout=600000, forceSrvMode=false,
clientReconnectDisabled=false], segPlc=STOP, segResolveAttempts=2,
waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000,
commSpi=null, evtSpi=null, colSpi=null, deploySpi=null, swapSpaceSpi=null,
indexingSpi=null, addrRslvr=null, clientMode=null,
rebalanceThreadPoolSize=1,
txCfg=org.apache.ignite.configuration.TransactionConfiguration@5dbef3d2,
cacheSanityCheckEnabled=true, discoStartupDelay=60000, deployMode=SHARED,
p2pMissedCacheSize=100, locHost=null, timeSrvPortBase=31100,
timeSrvPortRange=100, failureDetectionTimeout=10000, metricsLogFreq=60000,
hadoopCfg=null,
connectorCfg=org.apache.ignite.configuration.ConnectorConfiguration@23799013,
odbcCfg=null, warmupClos=null, atomicCfg=AtomicConfiguration
[seqReserveSize=1000, cacheMode=PARTITIONED, backups=0], classLdr=null,
sslCtxFactory=null, platformCfg=null, binaryCfg=null,
lateAffAssignment=true])
        - field (class: com.ignite.testIgniteEmbedRDD$$anonfun$1, name:
cfg$1, type: class org.apache.ignite.configuration.IgniteConfiguration)
        - object (class com.ignite.testIgniteEmbedRDD$$anonfun$1,
<function0>)
        - field (class: org.apache.ignite.spark.Once, name: clo, type:
interface scala.Function0)
        - object (class org.apache.ignite.spark.Once,
org.apache.ignite.spark.Once@60a1d043)
        - field (class: org.apache.ignite.spark.IgniteContext, name: cfgClo,
type: class org.apache.ignite.spark.Once)
        - object (class org.apache.ignite.spark.IgniteContext,
org.apache.ignite.spark.IgniteContext@16977784)
        - field (class: org.apache.ignite.spark.IgniteContext$$anonfun$2,
name: $outer, type: class org.apache.ignite.spark.IgniteContext)
        - object (class org.apache.ignite.spark.IgniteContext$$anonfun$2,
<function1>)
        at
org.apache.spark.serializer.SerializationDebugger$.improveException(SerializationDebugger.scala:40)
        at
org.apache.spark.serializer.JavaSerializationStream.writeObject(JavaSerializer.scala:47)
        at
org.apache.spark.serializer.JavaSerializerInstance.serialize(JavaSerializer.scala:101)
        at
org.apache.spark.util.ClosureCleaner$.ensureSerializable(ClosureCleaner.scala:301)
        ... 21 more
16/08/21 03:15:43 INFO spark.SparkContext: Invoking stop() from shutdown
hook
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/metrics/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/stage/kill,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/api,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/static,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/executors/threadDump/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/executors/threadDump,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/executors/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/executors,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/environment/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/environment,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/storage/rdd/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/storage/rdd,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/storage/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/storage,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/pool/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/pool,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/stage/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/stage,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/stages,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/jobs/job/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/jobs/job,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/jobs/json,null}
16/08/21 03:15:43 INFO handler.ContextHandler: stopped
o.s.j.s.ServletContextHandler{/jobs,null}
16/08/21 03:15:43 INFO ui.SparkUI: Stopped Spark web UI at
http://172.16.186.200:4040
16/08/21 03:15:43 INFO cluster.YarnClientSchedulerBackend: Interrupting
monitor thread
16/08/21 03:15:43 INFO cluster.YarnClientSchedulerBackend: Shutting down all
executors
16/08/21 03:15:43 INFO cluster.YarnClientSchedulerBackend: Asking each
executor to shut down
16/08/21 03:15:43 INFO cluster.YarnClientSchedulerBackend: Stopped
16/08/21 03:15:43 INFO spark.MapOutputTrackerMasterEndpoint:
MapOutputTrackerMasterEndpoint stopped!
16/08/21 03:15:43 INFO storage.MemoryStore: MemoryStore cleared
16/08/21 03:15:43 INFO storage.BlockManager: BlockManager stopped
16/08/21 03:15:43 INFO storage.BlockManagerMaster: BlockManagerMaster
stopped
16/08/21 03:15:43 INFO
scheduler.OutputCommitCoordinator$OutputCommitCoordinatorEndpoint:
OutputCommitCoordinator stopped!
16/08/21 03:15:43 INFO spark.SparkContext: Successfully stopped SparkContext
16/08/21 03:15:43 INFO util.ShutdownHookManager: Shutdown hook called
16/08/21 03:15:43 INFO util.ShutdownHookManager: Deleting directory
/tmp/spark-6406a8e6-0a53-4925-a17e-158ce3b4aa6e
16/08/21 03:15:43 INFO remote.RemoteActorRefProvider$RemotingTerminator:
Shutting down remote daemon.
16/08/21 03:15:43 INFO remote.RemoteActorRefProvider$RemotingTerminator:
Remote daemon shut down; proceeding with flushing remote transports.
16/08/21 03:15:43 INFO util.ShutdownHookManager: Deleting directory
/tmp/spark-6406a8e6-0a53-4925-a17e-158ce3b4aa6e/httpd-292e03c2-1805-4e68-916f-acd4eef0c265
[root@sparkup1 libs]# 



3)Can you please tell me how to integrate ignite on spark for embed mode on
idea project? tanks!!!!




--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7193.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
Hi,

For some reason you never have more than two server nodes in topology. So
basically you Spark RDD is split between three Ignite RDD and you get
incorrect results.

Make sure that all nodes can connect to each other and that nothing is
blocked by firewalls. Note that by default Ignite uses multicast for
discovery, so you may probably want to use other ways of cluster
configuration (e.g., explicitly provide addresses). See [1] for more
details.

[1] https://apacheignite.readme.io/docs/cluster-config

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7159.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Anyone can help me to fix this issue? thanks!!!!



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7146.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Can you please help me to fix this issue on this week, i will apply this
function to our production env. thanks again for you great help on this
issue.




--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7123.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
======5)===
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in
[jar:file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/filecache/652/spark-assembly-1.6.0-hadoop2.5.0-cdh5.3.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in
[jar:file:/u01/hbase/hadoop-2.5.0-cdh5.3.0/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
16/08/17 09:28:10 INFO executor.CoarseGrainedExecutorBackend: Registered
signal handlers for [TERM, HUP, INT]
16/08/17 09:28:11 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:11 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:11 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:12 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:12 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:12 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:12 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/17 09:28:12 INFO Remoting: Starting remoting
16/08/17 09:28:13 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkExecutorActorSystem@xxx:46368]
16/08/17 09:28:13 INFO util.Utils: Successfully started service
'sparkExecutorActorSystem' on port 46368.
16/08/17 09:28:13 INFO storage.DiskBlockManager: Created local directory at
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/blockmgr-8f0bd302-1f10-4f03-b639-e5a38341e80c
16/08/17 09:28:13 INFO storage.MemoryStore: MemoryStore started with
capacity 10.3 GB
16/08/17 09:28:13 INFO executor.CoarseGrainedExecutorBackend: Connecting to
driver: spark://CoarseGrainedScheduler@yyy:64381
16/08/17 09:28:13 INFO executor.CoarseGrainedExecutorBackend: Successfully
registered with driver
16/08/17 09:28:13 INFO executor.Executor: Starting executor ID 5 on host
xxxx
16/08/17 09:28:13 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 9012.
16/08/17 09:28:13 INFO netty.NettyBlockTransferService: Server created on
9012
16/08/17 09:28:13 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/17 09:28:13 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/17 09:28:17 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 0
16/08/17 09:28:17 INFO executor.Executor: Running task 0.0 in stage 0.0 (TID
0)
16/08/17 09:28:17 INFO executor.Executor: Fetching
http://xxx:64443/jars/spark_zmqpull_engine841.jar with timestamp
1471397276248
16/08/17 09:28:17 INFO util.Utils: Fetching
http://xxx:64443/jars/spark_zmqpull_engine841.jar to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-47ab6a3d-0286-492c-b9d1-fd5bd52ec80d/fetchFileTemp1877526252998936286.tmp
16/08/17 09:28:23 INFO util.Utils: Copying
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-47ab6a3d-0286-492c-b9d1-fd5bd52ec80d/15389795251471397276248_cache
to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000007/./spark_zmqpull_engine841.jar
16/08/17 09:28:24 INFO executor.Executor: Adding
file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000007/./spark_zmqpull_engine841.jar
to class loader
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 0
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0_piece0 stored
as bytes in memory (estimated size 1571.0 B, free 1571.0 B)
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 0 took 144 ms
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0 stored as
values in memory (estimated size 1608.0 B, free 3.1 KB)
16/08/17 09:28:26 INFO internal.IgniteKernal: 

>>>    __________  ________________  
>>>   /  _/ ___/ |/ /  _/_  __/ __/  
>>>  _/ // (7 7    // /  / / / _/    
>>> /___/\___/_/|_/___/ /_/ /___/   
>>> 
>>> ver. 1.6.0#20160518-sha1:0b22c45b
>>> 2016 Copyright(C) Apache Software Foundation
>>> 
>>> Ignite documentation: http://ignite.apache.org

16/08/17 09:28:26 INFO internal.IgniteKernal: Config URL: n/a
16/08/17 09:28:26 INFO internal.IgniteKernal: Daemon mode: off
16/08/17 09:28:26 INFO internal.IgniteKernal: OS: Linux
2.6.32-220.23.2.ali878.el6.x86_64 amd64
16/08/17 09:28:26 INFO internal.IgniteKernal: OS user: hbase
16/08/17 09:28:26 INFO internal.IgniteKernal: Language runtime: Java
Platform API Specification ver. 1.7
16/08/17 09:28:26 INFO internal.IgniteKernal: VM information: Java(TM) SE
Runtime Environment 1.7.0_79-b15 Oracle Corporation OpenJDK (Alibaba) 64-Bit
Server VM 24.79-b02-internal
16/08/17 09:28:26 INFO internal.IgniteKernal: VM total memory: 14.0GB
16/08/17 09:28:26 INFO internal.IgniteKernal: Remote Management [restart:
off, REST: on, JMX (remote: off)]
16/08/17 09:28:26 INFO internal.IgniteKernal: IGNITE_HOME=null
16/08/17 09:28:26 INFO internal.IgniteKernal: VM arguments:
[-XX:OnOutOfMemoryError=kill %p, -Xms15000m, -Xmx15000m,
-XX:MaxPermSize=256M,
-Djava.io.tmpdir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000007/tmp,
-Dspark.driver.port=64381,
-Dspark.yarn.app.container.log.dir=/u01/hbase/hadoop-2.5.0-cdh5.3.0/logs/userlogs/application_1455892346017_5248/container_1455892346017_5248_01_000007,
-XX:MaxPermSize=256m]
16/08/17 09:28:26 INFO internal.IgniteKernal: Configured caches
['ignite-marshaller-sys-cache', 'ignite-sys-cache',
'ignite-atomics-sys-cache']
16/08/17 09:28:26 INFO internal.IgniteKernal: Non-loopback local IPs: xxx
16/08/17 09:28:26 INFO internal.IgniteKernal: Enabled local MACs:
283152A81C10
16/08/17 09:28:26 INFO plugin.IgnitePluginProcessor: Configured plugins:
16/08/17 09:28:26 INFO plugin.IgnitePluginProcessor:   ^-- None
16/08/17 09:28:26 INFO plugin.IgnitePluginProcessor: 
16/08/17 09:28:26 INFO tcp.TcpCommunicationSpi: IPC shared memory server
endpoint started [port=48100,
tokDir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000007/tmp/ignite/work/ipc/shmem/150c335f-9127-4771-a035-25ac29a286a9-65424]
16/08/17 09:28:26 INFO tcp.TcpCommunicationSpi: Successfully bound shared
memory communication to TCP port [port=48100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:26 INFO tcp.TcpCommunicationSpi: Successfully bound to TCP
port [port=47100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:26 WARN noop.NoopCheckpointSpi: Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
16/08/17 09:28:26 WARN collision.GridCollisionManager: Collision resolution
is disabled (all jobs will be activated upon arrival).
16/08/17 09:28:26 WARN noop.NoopSwapSpaceSpi: Swap space is disabled. To
enable use FileSwapSpaceSpi.
16/08/17 09:28:26 INFO internal.IgniteKernal: Security status
[authentication=off, tls/ssl=off]
16/08/17 09:28:27 INFO tcp.GridTcpRestProtocol: Command protocol
successfully started [name=TCP binary, host=0.0.0.0/0.0.0.0, port=11211]
16/08/17 09:28:27 INFO tcp.TcpDiscoverySpi: Successfully bound to TCP port
[port=47500, localHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:27 WARN multicast.TcpDiscoveryMulticastIpFinder:
TcpDiscoveryMulticastIpFinder has no pre-configured addresses (it is
recommended in production to specify at least one address in
TcpDiscoveryMulticastIpFinder.getAddresses() configuration property)
16/08/17 09:28:28 INFO cache.GridCacheProcessor: Started cache
[name=ignite-marshaller-sys-cache, mode=REPLICATED]
16/08/17 09:28:28 INFO cache.GridCacheProcessor: Started cache
[name=ignite-atomics-sys-cache, mode=PARTITIONED]
16/08/17 09:28:28 INFO cache.GridCacheProcessor: Started cache
[name=ignite-sys-cache, mode=REPLICATED]
16/08/17 09:28:29 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-sys-cache, waitList=[]]
16/08/17 09:28:29 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-marshaller-sys-cache, waitList=[]]
16/08/17 09:28:29 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-atomics-sys-cache,
waitList=[ignite-sys-cache, ignite-marshaller-sys-cache]]
16/08/17 09:28:29 INFO cache.GridCachePartitionExchangeManager: Rebalancing
required [top=AffinityTopologyVersion [topVer=2, minorTopVer=0],
evt=NODE_JOINED, node=150c335f-9127-4771-a035-25ac29a286a9]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-marshaller-sys-cache> Starting rebalancing
[cache=ignite-marshaller-sys-cache, mode=SYNC,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e, partitionsCount=20,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-sys-cache> Starting rebalancing [cache=ignite-sys-cache, mode=SYNC,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e, partitionsCount=100,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-marshaller-sys-cache> Completed (final) rebalancing
[cache=ignite-marshaller-sys-cache,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=20 ms]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-sys-cache> Completed (final) rebalancing [cache=ignite-sys-cache,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=30 ms]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-atomics-sys-cache> Starting rebalancing
[cache=ignite-atomics-sys-cache, mode=SYNC,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e, partitionsCount=504,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:29 INFO preloader.GridDhtPartitionDemander:
<ignite-atomics-sys-cache> Completed (final) rebalancing
[cache=ignite-atomics-sys-cache,
fromNode=bc7e0b69-22f1-499b-8363-4291fff4a50e,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=50 ms]
16/08/17 09:28:29 INFO internal.IgniteKernal: To start Console Management &
Monitoring run ignitevisorcmd.{sh|bat}
16/08/17 09:28:29 INFO internal.IgniteKernal: 
16/08/17 09:28:29 INFO internal.IgniteKernal: 

>>> +----------------------------------------------------------------------+
>>> Ignite ver. 1.6.0#20160518-sha1:0b22c45bb9b97692208fd0705ddf8045ff34a031
>>> +----------------------------------------------------------------------+
>>> OS name: Linux 2.6.32-220.23.2.ali878.el6.x86_64 amd64
>>> CPU(s): 24
>>> Heap: 15.0GB
>>> VM name: 65424@xxxx
>>> Local node [ID=150C335F-9127-4771-A035-25AC29A286A9, order=2,
>>> clientMode=false]
>>> Local node addresses: [xxxx, /127.0.0.1]
>>> Local ports: TCP:11211 TCP:47100 UDP:47400 TCP:47500 TCP:48100 

16/08/17 09:28:29 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=2, servers=2, clients=0, CPUs=48, heap=29.0GB]
16/08/17 09:28:29 INFO executor.Executor: Finished task 0.0 in stage 0.0
(TID 0). 903 bytes result sent to driver
16/08/17 09:28:31 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=1], evt=DISCOVERY_CUSTOM_EVT,
node=bc7e0b69-22f1-499b-8363-4291fff4a50e]
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 6
16/08/17 09:28:33 INFO executor.Executor: Running task 1.0 in stage 1.0 (TID
6)
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 11
16/08/17 09:28:33 INFO executor.Executor: Running task 6.0 in stage 1.0 (TID
11)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 1
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1_piece0 stored
as bytes in memory (estimated size 1845.0 B, free 1845.0 B)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 1 took 83 ms
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1 stored as
values in memory (estimated size 1888.0 B, free 3.6 KB)
16/08/17 09:28:33 INFO executor.Executor: Finished task 1.0 in stage 1.0
(TID 6). 905 bytes result sent to driver
16/08/17 09:28:33 INFO executor.Executor: Finished task 6.0 in stage 1.0
(TID 11). 905 bytes result sent to driver
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 16
16/08/17 09:28:34 INFO executor.Executor: Running task 1.0 in stage 2.0 (TID
16)
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 21
16/08/17 09:28:34 INFO executor.Executor: Running task 6.0 in stage 2.0 (TID
21)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 2
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2_piece0 stored
as bytes in memory (estimated size 2.9 KB, free 6.6 KB)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 2 took 53 ms
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2 stored as
values in memory (estimated size 3.0 KB, free 9.5 KB)
16/08/17 09:28:34 INFO cache.GridCacheProcessor: Started cache
[name=sharedBaselineCacheRDD, mode=PARTITIONED]
16/08/17 09:28:34 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=2], evt=DISCOVERY_CUSTOM_EVT,
node=bc7e0b69-22f1-499b-8363-4291fff4a50e]
16/08/17 09:28:35 INFO executor.Executor: Finished task 6.0 in stage 2.0
(TID 21). 903 bytes result sent to driver
16/08/17 09:28:35 INFO executor.Executor: Finished task 1.0 in stage 2.0
(TID 16). 903 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2073
16/08/17 09:28:40 INFO executor.Executor: Running task 0.0 in stage 5.0 (TID
2073)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2078
16/08/17 09:28:40 INFO executor.Executor: Running task 5.0 in stage 5.0 (TID
2078)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2083
16/08/17 09:28:40 INFO executor.Executor: Running task 10.0 in stage 5.0
(TID 2083)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2088
16/08/17 09:28:40 INFO executor.Executor: Running task 15.0 in stage 5.0
(TID 2088)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2093
16/08/17 09:28:40 INFO executor.Executor: Running task 20.0 in stage 5.0
(TID 2093)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 5
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5_piece0 stored
as bytes in memory (estimated size 2.7 KB, free 12.2 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 5 took 13 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5 stored as
values in memory (estimated size 2.7 KB, free 15.0 KB)
16/08/17 09:28:40 INFO executor.Executor: Finished task 15.0 in stage 5.0
(TID 2088). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 10.0 in stage 5.0
(TID 2083). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 20.0 in stage 5.0
(TID 2093). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 5.0 in stage 5.0
(TID 2078). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 0.0 in stage 5.0
(TID 2073). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2126
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2131
16/08/17 09:28:40 INFO executor.Executor: Running task 11.0 in stage 6.0
(TID 2131)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2136
16/08/17 09:28:40 INFO executor.Executor: Running task 6.0 in stage 6.0 (TID
2126)
16/08/17 09:28:40 INFO executor.Executor: Running task 16.0 in stage 6.0
(TID 2136)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Updating epoch to 1 and
clearing cache
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 6
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6_piece0 stored
as bytes in memory (estimated size 2.5 KB, free 17.5 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 6 took 12 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6 stored as
values in memory (estimated size 2.6 KB, free 20.0 KB)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Doing the fetch;
tracker endpoint =
NettyRpcEndpointRef(spark://MapOutputTracker@10.194.70.26:64381)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Got the output
locations
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 9 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 8 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 10 ms
16/08/17 09:28:40 INFO executor.Executor: Finished task 6.0 in stage 6.0
(TID 2126). 1172 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 11.0 in stage 6.0
(TID 2131). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 16.0 in stage 6.0
(TID 2136). 1166 bytes result sent to driver
16/08/17 09:28:42 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2148
16/08/17 09:28:42 INFO executor.Executor: Running task 0.0 in stage 12.0
(TID 2148)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 12
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_12_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 82.4 KB)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 12 took 13 ms
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_12 stored as
values in memory (estimated size 62.4 KB, free 144.8 KB)
16/08/17 09:28:42 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:28:43 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2151
16/08/17 09:28:43 INFO executor.Executor: Running task 0.0 in stage 15.0
(TID 2151)
16/08/17 09:28:43 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 15
16/08/17 09:28:43 INFO storage.MemoryStore: Block broadcast_15_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 207.2 KB)
16/08/17 09:28:43 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 15 took 12 ms
16/08/17 09:28:43 INFO storage.MemoryStore: Block broadcast_15 stored as
values in memory (estimated size 62.4 KB, free 269.6 KB)
16/08/17 09:28:43 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:43 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:43 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 30
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 29
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 28
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 18
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 19
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 20
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 21



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7122.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
============4)
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in
[jar:file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/filecache/785/spark-assembly-1.6.0-hadoop2.5.0-cdh5.3.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in
[jar:file:/u01/hbase/hadoop-2.5.0-cdh5.3.0/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
16/08/17 09:28:13 INFO executor.CoarseGrainedExecutorBackend: Registered
signal handlers for [TERM, HUP, INT]
16/08/17 09:28:14 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/17 09:28:15 INFO Remoting: Starting remoting
16/08/17 09:28:15 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkExecutorActorSystem@vxxxx:62569]
16/08/17 09:28:15 INFO util.Utils: Successfully started service
'sparkExecutorActorSystem' on port 62569.
16/08/17 09:28:15 INFO storage.DiskBlockManager: Created local directory at
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/blockmgr-eeadd1d1-8dd8-48ef-84da-f3ed72048c80
16/08/17 09:28:15 INFO storage.MemoryStore: MemoryStore started with
capacity 10.3 GB
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Connecting to
driver: spark://CoarseGrainedScheduler@10.194.70.26:64381
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Successfully
registered with driver
16/08/17 09:28:16 INFO executor.Executor: Starting executor ID 4 on host
xxxx
16/08/17 09:28:16 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 15883.
16/08/17 09:28:16 INFO netty.NettyBlockTransferService: Server created on
15883
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/17 09:28:17 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 4
16/08/17 09:28:17 INFO executor.Executor: Running task 4.0 in stage 0.0 (TID
4)
16/08/17 09:28:17 INFO executor.Executor: Fetching
http://10.194.70.26:64443/jars/spark_zmqpull_engine841.jar with timestamp
1471397276248
16/08/17 09:28:17 INFO util.Utils: Fetching
http://10.194.70.26:64443/jars/spark_zmqpull_engine841.jar to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-e30ebe68-c99e-443d-87c2-9f9372e9759d/fetchFileTemp4290126145592989981.tmp
16/08/17 09:28:23 INFO util.Utils: Copying
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-e30ebe68-c99e-443d-87c2-9f9372e9759d/15389795251471397276248_cache
to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000005/./spark_zmqpull_engine841.jar
16/08/17 09:28:24 INFO executor.Executor: Adding
file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000005/./spark_zmqpull_engine841.jar
to class loader
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 0
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0_piece0 stored
as bytes in memory (estimated size 1571.0 B, free 1571.0 B)
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 0 took 143 ms
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0 stored as
values in memory (estimated size 1608.0 B, free 3.1 KB)
16/08/17 09:28:25 INFO internal.IgniteKernal: 

>>>    __________  ________________  
>>>   /  _/ ___/ |/ /  _/_  __/ __/  
>>>  _/ // (7 7    // /  / / / _/    
>>> /___/\___/_/|_/___/ /_/ /___/   
>>> 
>>> ver. 1.6.0#20160518-sha1:0b22c45b
>>> 2016 Copyright(C) Apache Software Foundation
>>> 
>>> Ignite documentation: http://ignite.apache.org

16/08/17 09:28:25 INFO internal.IgniteKernal: Config URL: n/a
16/08/17 09:28:25 INFO internal.IgniteKernal: Daemon mode: off
16/08/17 09:28:25 INFO internal.IgniteKernal: OS: Linux
2.6.32-220.23.2.ali878.el6.x86_64 amd64
16/08/17 09:28:25 INFO internal.IgniteKernal: OS user: hbase
16/08/17 09:28:25 INFO internal.IgniteKernal: Language runtime: Java
Platform API Specification ver. 1.7
16/08/17 09:28:25 INFO internal.IgniteKernal: VM information: Java(TM) SE
Runtime Environment 1.7.0_79-b15 Oracle Corporation OpenJDK (Alibaba) 64-Bit
Server VM 24.79-b02-internal
16/08/17 09:28:25 INFO internal.IgniteKernal: VM total memory: 14.0GB
16/08/17 09:28:25 INFO internal.IgniteKernal: Remote Management [restart:
off, REST: on, JMX (remote: off)]
16/08/17 09:28:25 INFO internal.IgniteKernal: IGNITE_HOME=null
16/08/17 09:28:25 INFO internal.IgniteKernal: VM arguments:
[-XX:OnOutOfMemoryError=kill %p, -Xms15000m, -Xmx15000m,
-XX:MaxPermSize=256M,
-Djava.io.tmpdir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000005/tmp,
-Dspark.driver.port=64381,
-Dspark.yarn.app.container.log.dir=/u01/hbase/hadoop-2.5.0-cdh5.3.0/logs/userlogs/application_1455892346017_5248/container_1455892346017_5248_01_000005,
-XX:MaxPermSize=256m]
16/08/17 09:28:25 INFO internal.IgniteKernal: Configured caches
['ignite-marshaller-sys-cache', 'ignite-sys-cache',
'ignite-atomics-sys-cache']
16/08/17 09:28:25 INFO internal.IgniteKernal: Non-loopback local IPs: xxx
16/08/17 09:28:25 INFO internal.IgniteKernal: Enabled local MACs:
283152A80FEB
16/08/17 09:28:25 INFO plugin.IgnitePluginProcessor: Configured plugins:
16/08/17 09:28:25 INFO plugin.IgnitePluginProcessor:   ^-- None
16/08/17 09:28:25 INFO plugin.IgnitePluginProcessor: 
16/08/17 09:28:25 INFO tcp.TcpCommunicationSpi: IPC shared memory server
endpoint started [port=48100,
tokDir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000005/tmp/ignite/work/ipc/shmem/c2671205-0499-428b-b2a3-c180a70a6c03-88279]
16/08/17 09:28:25 INFO tcp.TcpCommunicationSpi: Successfully bound shared
memory communication to TCP port [port=48100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:25 INFO tcp.TcpCommunicationSpi: Successfully bound to TCP
port [port=47100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:25 WARN noop.NoopCheckpointSpi: Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
16/08/17 09:28:25 WARN collision.GridCollisionManager: Collision resolution
is disabled (all jobs will be activated upon arrival).
16/08/17 09:28:25 WARN noop.NoopSwapSpaceSpi: Swap space is disabled. To
enable use FileSwapSpaceSpi.
16/08/17 09:28:25 INFO internal.IgniteKernal: Security status
[authentication=off, tls/ssl=off]
16/08/17 09:28:26 INFO tcp.GridTcpRestProtocol: Command protocol
successfully started [name=TCP binary, host=0.0.0.0/0.0.0.0, port=11211]
16/08/17 09:28:26 INFO tcp.TcpDiscoverySpi: Successfully bound to TCP port
[port=47500, localHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:26 WARN multicast.TcpDiscoveryMulticastIpFinder:
TcpDiscoveryMulticastIpFinder has no pre-configured addresses (it is
recommended in production to specify at least one address in
TcpDiscoveryMulticastIpFinder.getAddresses() configuration property)
16/08/17 09:28:27 INFO cache.GridCacheProcessor: Started cache
[name=ignite-marshaller-sys-cache, mode=REPLICATED]
16/08/17 09:28:28 INFO cache.GridCacheProcessor: Started cache
[name=ignite-atomics-sys-cache, mode=PARTITIONED]
16/08/17 09:28:28 INFO cache.GridCacheProcessor: Started cache
[name=ignite-sys-cache, mode=REPLICATED]
16/08/17 09:28:28 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=1,
minorTopVer=0], evt=NODE_JOINED, node=c2671205-0499-428b-b2a3-c180a70a6c03]
16/08/17 09:28:28 INFO internal.IgniteKernal: To start Console Management &
Monitoring run ignitevisorcmd.{sh|bat}
16/08/17 09:28:28 INFO internal.IgniteKernal: 
16/08/17 09:28:28 INFO internal.IgniteKernal: 

>>> +----------------------------------------------------------------------+
>>> Ignite ver. 1.6.0#20160518-sha1:0b22c45bb9b97692208fd0705ddf8045ff34a031
>>> +----------------------------------------------------------------------+
>>> OS name: Linux 2.6.32-220.23.2.ali878.el6.x86_64 amd64
>>> CPU(s): 24
>>> Heap: 15.0GB
>>> VM name: 88279@xxx
>>> Local node [ID=C2671205-0499-428B-B2A3-C180A70A6C03, order=1,
>>> clientMode=false]
>>> Local node addresses: [xxx, /127.0.0.1]
>>> Local ports: TCP:11211 TCP:47100 UDP:47400 TCP:47500 TCP:48100 

16/08/17 09:28:28 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=1, servers=1, clients=0, CPUs=24, heap=15.0GB]
16/08/17 09:28:28 INFO executor.Executor: Finished task 4.0 in stage 0.0
(TID 4). 903 bytes result sent to driver
16/08/17 09:28:29 INFO discovery.GridDiscoveryManager: Added new node to
topology: TcpDiscoveryNode [id=6fc9a7ab-ebfc-4d84-8a66-8aa83f4ef9ec,
addrs=[xxx, 127.0.0.1], sockAddrs=[xxx:47500, /10.194.54.60:47500,
/127.0.0.1:47500], discPort=47500, order=2, intOrder=2,
lastExchangeTime=1471397309234, loc=false, ver=1.6.0#20160518-sha1:0b22c45b,
isClient=false]
16/08/17 09:28:29 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=2, servers=2, clients=0, CPUs=48, heap=29.0GB]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=0], evt=NODE_JOINED, node=6fc9a7ab-ebfc-4d84-8a66-8aa83f4ef9ec]
16/08/17 09:28:31 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=1], evt=DISCOVERY_CUSTOM_EVT,
node=c2671205-0499-428b-b2a3-c180a70a6c03]
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 7
16/08/17 09:28:33 INFO executor.Executor: Running task 2.0 in stage 1.0 (TID
7)
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 12
16/08/17 09:28:33 INFO executor.Executor: Running task 7.0 in stage 1.0 (TID
12)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 1
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1_piece0 stored
as bytes in memory (estimated size 1845.0 B, free 1845.0 B)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 1 took 50 ms
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1 stored as
values in memory (estimated size 1888.0 B, free 3.6 KB)
16/08/17 09:28:33 INFO executor.Executor: Finished task 7.0 in stage 1.0
(TID 12). 905 bytes result sent to driver
16/08/17 09:28:33 INFO executor.Executor: Finished task 2.0 in stage 1.0
(TID 7). 905 bytes result sent to driver
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 19
16/08/17 09:28:34 INFO executor.Executor: Running task 4.0 in stage 2.0 (TID
19)
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 24
16/08/17 09:28:34 INFO executor.Executor: Running task 9.0 in stage 2.0 (TID
24)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 2
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2_piece0 stored
as bytes in memory (estimated size 2.9 KB, free 6.6 KB)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 2 took 12 ms
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2 stored as
values in memory (estimated size 3.0 KB, free 9.5 KB)
16/08/17 09:28:34 INFO cache.GridCacheProcessor: Started cache
[name=sharedBaselineCacheRDD, mode=PARTITIONED]
16/08/17 09:28:34 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=2], evt=DISCOVERY_CUSTOM_EVT,
node=c2671205-0499-428b-b2a3-c180a70a6c03]
16/08/17 09:28:35 INFO executor.Executor: Finished task 4.0 in stage 2.0
(TID 19). 903 bytes result sent to driver
16/08/17 09:28:35 INFO executor.Executor: Finished task 9.0 in stage 2.0
(TID 24). 903 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2076
16/08/17 09:28:40 INFO executor.Executor: Running task 3.0 in stage 5.0 (TID
2076)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2081
16/08/17 09:28:40 INFO executor.Executor: Running task 8.0 in stage 5.0 (TID
2081)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2086
16/08/17 09:28:40 INFO executor.Executor: Running task 13.0 in stage 5.0
(TID 2086)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2091
16/08/17 09:28:40 INFO executor.Executor: Running task 18.0 in stage 5.0
(TID 2091)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2096
16/08/17 09:28:40 INFO executor.Executor: Running task 23.0 in stage 5.0
(TID 2096)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 5
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5_piece0 stored
as bytes in memory (estimated size 2.7 KB, free 12.2 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 5 took 10 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5 stored as
values in memory (estimated size 2.7 KB, free 15.0 KB)
16/08/17 09:28:40 INFO executor.Executor: Finished task 23.0 in stage 5.0
(TID 2096). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 13.0 in stage 5.0
(TID 2086). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 3.0 in stage 5.0
(TID 2076). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 18.0 in stage 5.0
(TID 2091). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 8.0 in stage 5.0
(TID 2081). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2127
16/08/17 09:28:40 INFO executor.Executor: Running task 4.0 in stage 6.0 (TID
2127)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2132
16/08/17 09:28:40 INFO executor.Executor: Running task 9.0 in stage 6.0 (TID
2132)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2137
16/08/17 09:28:40 INFO executor.Executor: Running task 14.0 in stage 6.0
(TID 2137)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2141
16/08/17 09:28:40 INFO executor.Executor: Running task 19.0 in stage 6.0
(TID 2141)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Updating epoch to 1 and
clearing cache
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 6
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6_piece0 stored
as bytes in memory (estimated size 2.5 KB, free 17.5 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 6 took 12 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6 stored as
values in memory (estimated size 2.6 KB, free 20.0 KB)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Doing the fetch;
tracker endpoint = NettyRpcEndpointRef(spark://MapOutputTracker@xxx:64381)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Got the output
locations
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 10 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 8 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 7 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 12 ms
16/08/17 09:28:40 INFO executor.Executor: Finished task 19.0 in stage 6.0
(TID 2141). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 9.0 in stage 6.0
(TID 2132). 1172 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 14.0 in stage 6.0
(TID 2137). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 4.0 in stage 6.0
(TID 2127). 1172 bytes result sent to driver
16/08/17 09:28:42 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2146
16/08/17 09:28:42 INFO executor.Executor: Running task 0.0 in stage 10.0
(TID 2146)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 10
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_10_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 82.4 KB)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 10 took 11 ms
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_10 stored as
values in memory (estimated size 62.4 KB, free 144.8 KB)
16/08/17 09:28:42 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2149
16/08/17 09:28:42 INFO executor.Executor: Running task 0.0 in stage 13.0
(TID 2149)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 13
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_13_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 207.2 KB)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 13 took 11 ms
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_13 stored as
values in memory (estimated size 62.4 KB, free 269.6 KB)
16/08/17 09:28:42 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:42 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 29
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 30
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 28
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 18
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 19
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 20
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 21
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 22
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 23
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 24
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 25
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 26
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 27
16/08/17 09:29:28 INFO internal.IgniteKernal: 
Metrics for local node (to disable set 'metricsLogFrequency' to 0)



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7121.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
====3)
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in
[jar:file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/filecache/816/spark-assembly-1.6.0-hadoop2.5.0-cdh5.3.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in
[jar:file:/u01/hbase/hadoop-2.5.0-cdh5.3.0/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
16/08/17 09:28:13 INFO executor.CoarseGrainedExecutorBackend: Registered
signal handlers for [TERM, HUP, INT]
16/08/17 09:28:14 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/17 09:28:15 INFO Remoting: Starting remoting
16/08/17 09:28:15 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkExecutorActorSystem@vxxx:14969]
16/08/17 09:28:15 INFO util.Utils: Successfully started service
'sparkExecutorActorSystem' on port 14969.
16/08/17 09:28:15 INFO storage.DiskBlockManager: Created local directory at
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/blockmgr-daa91d80-733e-4f17-9884-ca04ee6d7b53
16/08/17 09:28:15 INFO storage.MemoryStore: MemoryStore started with
capacity 10.3 GB
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Connecting to
driver: spark://CoarseGrainedScheduler@10.194.70.26:64381
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Successfully
registered with driver
16/08/17 09:28:16 INFO executor.Executor: Starting executor ID 3 on host
xxxx
16/08/17 09:28:16 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 42038.
16/08/17 09:28:16 INFO netty.NettyBlockTransferService: Server created on
42038
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/17 09:28:17 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2
16/08/17 09:28:17 INFO executor.Executor: Running task 2.0 in stage 0.0 (TID
2)
16/08/17 09:28:17 INFO executor.Executor: Fetching
http://xxx:64443/jars/spark_zmqpull_engine841.jar with timestamp
1471397276248
16/08/17 09:28:17 INFO util.Utils: Fetching
http://xxx:64443/jars/spark_zmqpull_engine841.jar to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-c1dfc180-99ce-46dc-9e79-37bc20d7982e/fetchFileTemp1478702276023551384.tmp
16/08/17 09:28:21 INFO util.Utils: Copying
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-c1dfc180-99ce-46dc-9e79-37bc20d7982e/15389795251471397276248_cache
to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000004/./spark_zmqpull_engine841.jar
16/08/17 09:28:21 INFO executor.Executor: Adding
file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000004/./spark_zmqpull_engine841.jar
to class loader
16/08/17 09:28:22 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 0
16/08/17 09:28:22 INFO storage.MemoryStore: Block broadcast_0_piece0 stored
as bytes in memory (estimated size 1571.0 B, free 1571.0 B)
16/08/17 09:28:22 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 0 took 304 ms
16/08/17 09:28:22 INFO storage.MemoryStore: Block broadcast_0 stored as
values in memory (estimated size 1608.0 B, free 3.1 KB)
16/08/17 09:28:22 INFO internal.IgniteKernal: 

>>>    __________  ________________  
>>>   /  _/ ___/ |/ /  _/_  __/ __/  
>>>  _/ // (7 7    // /  / / / _/    
>>> /___/\___/_/|_/___/ /_/ /___/   
>>> 
>>> ver. 1.6.0#20160518-sha1:0b22c45b
>>> 2016 Copyright(C) Apache Software Foundation
>>> 
>>> Ignite documentation: http://ignite.apache.org

16/08/17 09:28:22 INFO internal.IgniteKernal: Config URL: n/a
16/08/17 09:28:22 INFO internal.IgniteKernal: Daemon mode: off
16/08/17 09:28:22 INFO internal.IgniteKernal: OS: Linux
2.6.32-220.23.2.ali878.el6.x86_64 amd64
16/08/17 09:28:22 INFO internal.IgniteKernal: OS user: hbase
16/08/17 09:28:22 INFO internal.IgniteKernal: Language runtime: Java
Platform API Specification ver. 1.7
16/08/17 09:28:22 INFO internal.IgniteKernal: VM information: Java(TM) SE
Runtime Environment 1.7.0_79-b15 Oracle Corporation OpenJDK (Alibaba) 64-Bit
Server VM 24.79-b02-internal
16/08/17 09:28:22 INFO internal.IgniteKernal: VM total memory: 14.0GB
16/08/17 09:28:22 INFO internal.IgniteKernal: Remote Management [restart:
off, REST: on, JMX (remote: off)]
16/08/17 09:28:22 INFO internal.IgniteKernal: IGNITE_HOME=null
16/08/17 09:28:22 INFO internal.IgniteKernal: VM arguments:
[-XX:OnOutOfMemoryError=kill %p, -Xms15000m, -Xmx15000m,
-XX:MaxPermSize=256M,
-Djava.io.tmpdir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000004/tmp,
-Dspark.driver.port=64381,
-Dspark.yarn.app.container.log.dir=/u01/hbase/hadoop-2.5.0-cdh5.3.0/logs/userlogs/application_1455892346017_5248/container_1455892346017_5248_01_000004,
-XX:MaxPermSize=256m]
16/08/17 09:28:22 INFO internal.IgniteKernal: Configured caches
['ignite-marshaller-sys-cache', 'ignite-sys-cache',
'ignite-atomics-sys-cache']
16/08/17 09:28:22 INFO internal.IgniteKernal: Non-loopback local IPs: xxx
16/08/17 09:28:22 INFO internal.IgniteKernal: Enabled local MACs:
283152A822B3
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor: Configured plugins:
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor:   ^-- None
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor: 
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: IPC shared memory server
endpoint started [port=48100,
tokDir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000004/tmp/ignite/work/ipc/shmem/41d7a95e-d0f3-4bca-855c-e016ea9d2c3f-101866]
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: Successfully bound shared
memory communication to TCP port [port=48100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: Successfully bound to TCP
port [port=47100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:23 WARN noop.NoopCheckpointSpi: Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
16/08/17 09:28:23 WARN collision.GridCollisionManager: Collision resolution
is disabled (all jobs will be activated upon arrival).
16/08/17 09:28:23 WARN noop.NoopSwapSpaceSpi: Swap space is disabled. To
enable use FileSwapSpaceSpi.
16/08/17 09:28:23 INFO internal.IgniteKernal: Security status
[authentication=off, tls/ssl=off]
16/08/17 09:28:23 INFO tcp.GridTcpRestProtocol: Command protocol
successfully started [name=TCP binary, host=0.0.0.0/0.0.0.0, port=11211]
16/08/17 09:28:23 INFO tcp.TcpDiscoverySpi: Successfully bound to TCP port
[port=47500, localHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:23 WARN multicast.TcpDiscoveryMulticastIpFinder:
TcpDiscoveryMulticastIpFinder has no pre-configured addresses (it is
recommended in production to specify at least one address in
TcpDiscoveryMulticastIpFinder.getAddresses() configuration property)
16/08/17 09:28:25 INFO cache.GridCacheProcessor: Started cache
[name=ignite-marshaller-sys-cache, mode=REPLICATED]
16/08/17 09:28:25 INFO cache.GridCacheProcessor: Started cache
[name=ignite-atomics-sys-cache, mode=PARTITIONED]
16/08/17 09:28:25 INFO cache.GridCacheProcessor: Started cache
[name=ignite-sys-cache, mode=REPLICATED]
16/08/17 09:28:25 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=1,
minorTopVer=0], evt=NODE_JOINED, node=41d7a95e-d0f3-4bca-855c-e016ea9d2c3f]
16/08/17 09:28:25 INFO internal.IgniteKernal: To start Console Management &
Monitoring run ignitevisorcmd.{sh|bat}
16/08/17 09:28:25 INFO internal.IgniteKernal: 
16/08/17 09:28:25 INFO internal.IgniteKernal: 

>>> +----------------------------------------------------------------------+
>>> Ignite ver. 1.6.0#20160518-sha1:0b22c45bb9b97692208fd0705ddf8045ff34a031
>>> +----------------------------------------------------------------------+
>>> OS name: Linux 2.6.32-220.23.2.ali878.el6.x86_64 amd64
>>> CPU(s): 24
>>> Heap: 15.0GB
>>> VM name: xxx
>>> Local node [ID=41D7A95E-D0F3-4BCA-855C-E016EA9D2C3F, order=1,
>>> clientMode=false]
>>> Local node addresses: [xxx, /127.0.0.1]
>>> Local ports: TCP:11211 TCP:47100 UDP:47400 TCP:47500 TCP:48100 

16/08/17 09:28:25 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=1, servers=1, clients=0, CPUs=24, heap=15.0GB]
16/08/17 09:28:25 INFO executor.Executor: Finished task 2.0 in stage 0.0
(TID 2). 903 bytes result sent to driver
16/08/17 09:28:32 INFO discovery.GridDiscoveryManager: Added new node to
topology: TcpDiscoveryNode [id=9a3e8369-308b-4859-8784-5add063455ca,
addrs=[1xxxx, 127.0.0.1], sockAddrs=[xxx:0, /xxx:0, /127.0.0.1:0],
discPort=0, order=2, intOrder=2, lastExchangeTime=1471397312078, loc=false,
ver=1.6.0#20160518-sha1:0b22c45b, isClient=true]
16/08/17 09:28:32 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=2, servers=1, clients=1, CPUs=48, heap=19.0GB]
16/08/17 09:28:32 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=0], evt=NODE_JOINED, node=9a3e8369-308b-4859-8784-5add063455ca]
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 8
16/08/17 09:28:33 INFO executor.Executor: Running task 3.0 in stage 1.0 (TID
8)
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 13
16/08/17 09:28:33 INFO executor.Executor: Running task 8.0 in stage 1.0 (TID
13)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 1
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1_piece0 stored
as bytes in memory (estimated size 1845.0 B, free 1845.0 B)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 1 took 12 ms
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1 stored as
values in memory (estimated size 1888.0 B, free 3.6 KB)
16/08/17 09:28:33 INFO executor.Executor: Finished task 8.0 in stage 1.0
(TID 13). 905 bytes result sent to driver
16/08/17 09:28:33 INFO executor.Executor: Finished task 3.0 in stage 1.0
(TID 8). 905 bytes result sent to driver
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 15
16/08/17 09:28:34 INFO executor.Executor: Running task 0.0 in stage 2.0 (TID
15)
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 20
16/08/17 09:28:34 INFO executor.Executor: Running task 5.0 in stage 2.0 (TID
20)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 2
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2_piece0 stored
as bytes in memory (estimated size 2.9 KB, free 6.6 KB)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 2 took 15 ms
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2 stored as
values in memory (estimated size 3.0 KB, free 9.5 KB)
16/08/17 09:28:34 INFO cache.GridCacheProcessor: Started cache
[name=sharedBaselineCacheRDD, mode=PARTITIONED]
16/08/17 09:28:34 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=1], evt=DISCOVERY_CUSTOM_EVT,
node=41d7a95e-d0f3-4bca-855c-e016ea9d2c3f]
16/08/17 09:28:35 INFO executor.Executor: Finished task 0.0 in stage 2.0
(TID 15). 903 bytes result sent to driver
16/08/17 09:28:35 INFO executor.Executor: Finished task 5.0 in stage 2.0
(TID 20). 903 bytes result sent to driver
16/08/17 09:28:35 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=2], evt=DISCOVERY_CUSTOM_EVT,
node=9a3e8369-308b-4859-8784-5add063455ca]
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 25
16/08/17 09:28:36 INFO executor.Executor: Running task 0.0 in stage 3.0 (TID
25)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 26
16/08/17 09:28:36 INFO executor.Executor: Running task 1.0 in stage 3.0 (TID
26)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 27
16/08/17 09:28:36 INFO executor.Executor: Running task 2.0 in stage 3.0 (TID
27)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 28
16/08/17 09:28:36 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 3
16/08/17 09:28:36 INFO executor.Executor: Running task 3.0 in stage 3.0 (TID
28)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 29
16/08/17 09:28:36 INFO executor.Executor: Running task 4.0 in stage 3.0 (TID
29)
16/08/17 09:28:36 INFO storage.MemoryStore: Block broadcast_3_piece0 stored
as bytes in memory (estimated size 1700.0 B, free 11.2 KB)
16/08/17 09:28:36 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 3 took 20 ms
16/08/17 09:28:36 INFO storage.MemoryStore: Block broadcast_3 stored as
values in memory (estimated size 1736.0 B, free 12.9 KB)
16/08/17 09:28:36 INFO executor.Executor: Finished task 0.0 in stage 3.0
(TID 25). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 3.0 in stage 3.0
(TID 28). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 2.0 in stage 3.0
(TID 27). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 1.0 in stage 3.0
(TID 26). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 4.0 in stage 3.0
(TID 29). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 30
16/08/17 09:28:36 INFO executor.Executor: Running task 5.0 in stage 3.0 (TID
30)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 31
16/08/17 09:28:36 INFO executor.Executor: Running task 6.0 in stage 3.0 (TID
31)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 32
16/08/17 09:28:36 INFO executor.Executor: Running task 7.0 in stage 3.0 (TID
32)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 33
16/08/17 09:28:36 INFO executor.Executor: Running task 8.0 in stage 3.0 (TID
33)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 34
16/08/17 09:28:36 INFO executor.Executor: Running task 9.0 in stage 3.0 (TID
34)
16/08/17 09:28:36 INFO executor.Executor: Finished task 5.0 in stage 3.0
(TID 30). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 6.0 in stage 3.0
(TID 31). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 7.0 in stage 3.0
(TID 32). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 35
16/08/17 09:28:36 INFO executor.Executor: Running task 10.0 in stage 3.0
(TID 35)
16/08/17 09:28:36 INFO executor.Executor: Finished task 8.0 in stage 3.0
(TID 33). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 9.0 in stage 3.0
(TID 34). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 36
16/08/17 09:28:36 INFO executor.Executor: Running task 11.0 in stage 3.0
(TID 36)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 37
16/08/17 09:28:36 INFO executor.Executor: Running task 12.0 in stage 3.0
(TID 37)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 38
16/08/17 09:28:36 INFO executor.Executor: Running task 13.0 in stage 3.0
(TID 38)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 39
16/08/17 09:28:36 INFO executor.Executor: Running task 14.0 in stage 3.0
(TID 39)
16/08/17 09:28:36 INFO executor.Executor: Finished task 10.0 in stage 3.0
(TID 35). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 40
16/08/17 09:28:36 INFO executor.Executor: Finished task 11.0 in stage 3.0
(TID 36). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 15.0 in stage 3.0
(TID 40)
16/08/17 09:28:36 INFO executor.Executor: Finished task 12.0 in stage 3.0
(TID 37). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 13.0 in stage 3.0
(TID 38). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 14.0 in stage 3.0
(TID 39). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 41
16/08/17 09:28:36 INFO executor.Executor: Running task 16.0 in stage 3.0
(TID 41)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 42
16/08/17 09:28:36 INFO executor.Executor: Running task 17.0 in stage 3.0
(TID 42)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 43
16/08/17 09:28:36 INFO executor.Executor: Running task 18.0 in stage 3.0
(TID 43)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 44
16/08/17 09:28:36 INFO executor.Executor: Running task 19.0 in stage 3.0
(TID 44)
16/08/17 09:28:36 INFO executor.Executor: Finished task 15.0 in stage 3.0
(TID 40). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 16.0 in stage 3.0
(TID 41). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 45
16/08/17 09:28:36 INFO executor.Executor: Running task 20.0 in stage 3.0
(TID 45)
16/08/17 09:28:36 INFO executor.Executor: Finished task 17.0 in stage 3.0
(TID 42). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 18.0 in stage 3.0
(TID 43). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 19.0 in stage 3.0
(TID 44). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 46
16/08/17 09:28:36 INFO executor.Executor: Running task 21.0 in stage 3.0
(TID 46)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 47
16/08/17 09:28:36 INFO executor.Executor: Running task 22.0 in stage 3.0
(TID 47)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 48
16/08/17 09:28:36 INFO executor.Executor: Running task 23.0 in stage 3.0
(TID 48)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 49
16/08/17 09:28:36 INFO executor.Executor: Running task 24.0 in stage 3.0
(TID 49)
16/08/17 09:28:36 INFO executor.Executor: Finished task 20.0 in stage 3.0
(TID 45). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 21.0 in stage 3.0
(TID 46). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 50
16/08/17 09:28:36 INFO executor.Executor: Running task 25.0 in stage 3.0
(TID 50)
16/08/17 09:28:36 INFO executor.Executor: Finished task 22.0 in stage 3.0
(TID 47). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 23.0 in stage 3.0
(TID 48). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 24.0 in stage 3.0
(TID 49). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 51
16/08/17 09:28:36 INFO executor.Executor: Running task 26.0 in stage 3.0
(TID 51)
16/08/17 09:28:36 INFO executor.Executor: Finished task 25.0 in stage 3.0
(TID 50). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 52
16/08/17 09:28:36 INFO executor.Executor: Running task 27.0 in stage 3.0
(TID 52)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 53
16/08/17 09:28:36 INFO executor.Executor: Running task 28.0 in stage 3.0
(TID 53)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 54
16/08/17 09:28:36 INFO executor.Executor: Running task 29.0 in stage 3.0
(TID 54)
16/08/17 09:28:36 INFO executor.Executor: Finished task 26.0 in stage 3.0
(TID 51). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 55
16/08/17 09:28:36 INFO executor.Executor: Running task 30.0 in stage 3.0
(TID 55)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 56
16/08/17 09:28:36 INFO executor.Executor: Running task 31.0 in stage 3.0
(TID 56)
16/08/17 09:28:36 INFO executor.Executor: Finished task 27.0 in stage 3.0
(TID 52). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 28.0 in stage 3.0
(TID 53). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 29.0 in stage 3.0
(TID 54). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 30.0 in stage 3.0
(TID 55). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 57
16/08/17 09:28:36 INFO executor.Executor: Running task 32.0 in stage 3.0
(TID 57)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 58
16/08/17 09:28:36 INFO executor.Executor: Running task 33.0 in stage 3.0
(TID 58)
16/08/17 09:28:36 INFO executor.Executor: Finished task 31.0 in stage 3.0
(TID 56). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 59
16/08/17 09:28:36 INFO executor.Executor: Running task 34.0 in stage 3.0
(TID 59)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 60
16/08/17 09:28:36 INFO executor.Executor: Running task 35.0 in stage 3.0
(TID 60)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 61
16/08/17 09:28:36 INFO executor.Executor: Running task 36.0 in stage 3.0
(TID 61)
16/08/17 09:28:36 INFO executor.Executor: Finished task 32.0 in stage 3.0
(TID 57). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 33.0 in stage 3.0
(TID 58). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 34.0 in stage 3.0
(TID 59). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 62
16/08/17 09:28:36 INFO executor.Executor: Running task 37.0 in stage 3.0
(TID 62)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 63
16/08/17 09:28:36 INFO executor.Executor: Finished task 35.0 in stage 3.0
(TID 60). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 38.0 in stage 3.0
(TID 63)
16/08/17 09:28:36 INFO executor.Executor: Finished task 36.0 in stage 3.0
(TID 61). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 64
16/08/17 09:28:36 INFO executor.Executor: Running task 39.0 in stage 3.0
(TID 64)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 65
16/08/17 09:28:36 INFO executor.Executor: Running task 40.0 in stage 3.0
(TID 65)
16/08/17 09:28:36 INFO executor.Executor: Finished task 37.0 in stage 3.0
(TID 62). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 66
16/08/17 09:28:36 INFO executor.Executor: Finished task 38.0 in stage 3.0
(TID 63). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 41.0 in stage 3.0
(TID 66)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 67
16/08/17 09:28:36 INFO executor.Executor: Running task 42.0 in stage 3.0
(TID 67)
16/08/17 09:28:36 INFO executor.Executor: Finished task 39.0 in stage 3.0
(TID 64). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 68
16/08/17 09:28:36 INFO executor.Executor: Running task 43.0 in stage 3.0
(TID 68)
16/08/17 09:28:36 INFO executor.Executor: Finished task 40.0 in stage 3.0
(TID 65). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 41.0 in stage 3.0
(TID 66). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 69
16/08/17 09:28:36 INFO executor.Executor: Running task 44.0 in stage 3.0
(TID 69)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 70
16/08/17 09:28:36 INFO executor.Executor: Running task 45.0 in stage 3.0
(TID 70)
16/08/17 09:28:36 INFO executor.Executor: Finished task 42.0 in stage 3.0
(TID 67). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 43.0 in stage 3.0
(TID 68). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 71
16/08/17 09:28:36 INFO executor.Executor: Running task 46.0 in stage 3.0
(TID 71)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 72
16/08/17 09:28:36 INFO executor.Executor: Running task 47.0 in stage 3.0
(TID 72)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 73
16/08/17 09:28:36 INFO executor.Executor: Running task 48.0 in stage 3.0
(TID 73)
16/08/17 09:28:36 INFO executor.Executor: Finished task 44.0 in stage 3.0
(TID 69). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 45.0 in stage 3.0
(TID 70). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 46.0 in stage 3.0
(TID 71). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 74
16/08/17 09:28:36 INFO executor.Executor: Running task 49.0 in stage 3.0
(TID 74)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 75
16/08/17 09:28:36 INFO executor.Executor: Running task 50.0 in stage 3.0
(TID 75)
16/08/17 09:28:36 INFO executor.Executor: Finished task 47.0 in stage 3.0
(TID 72). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 48.0 in stage 3.0
(TID 73). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 76
16/08/17 09:28:36 INFO executor.Executor: Running task 51.0 in stage 3.0
(TID 76)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 77
16/08/17 09:28:36 INFO executor.Executor: Running task 52.0 in stage 3.0
(TID 77)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 78
16/08/17 09:28:36 INFO executor.Executor: Running task 53.0 in stage 3.0
(TID 78)
16/08/17 09:28:36 INFO executor.Executor: Finished task 49.0 in stage 3.0
(TID 74). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 50.0 in stage 3.0
(TID 75). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 51.0 in stage 3.0
(TID 76). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 79
16/08/17 09:28:36 INFO executor.Executor: Running task 54.0 in stage 3.0
(TID 79)
16/08/17 09:28:36 INFO executor.Executor: Finished task 52.0 in stage 3.0
(TID 77). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 53.0 in stage 3.0
(TID 78). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 80
16/08/17 09:28:36 INFO executor.Executor: Running task 55.0 in stage 3.0
(TID 80)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 81
16/08/17 09:28:36 INFO executor.Executor: Running task 56.0 in stage 3.0
(TID 81)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 82
16/08/17 09:28:36 INFO executor.Executor: Finished task 54.0 in stage 3.0
(TID 79). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 57.0 in stage 3.0
(TID 82)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 83
16/08/17 09:28:36 INFO executor.Executor: Running task 58.0 in stage 3.0
(TID 83)
16/08/17 09:28:36 INFO executor.Executor: Finished task 55.0 in stage 3.0
(TID 80). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 56.0 in stage 3.0
(TID 81). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 84
16/08/17 09:28:36 INFO executor.Executor: Running task 59.0 in stage 3.0
(TID 84)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 85
16/08/17 09:28:36 INFO executor.Executor: Finished task 57.0 in stage 3.0
(TID 82). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 60.0 in stage 3.0
(TID 85)
16/08/17 09:28:36 INFO executor.Executor: Finished task 58.0 in stage 3.0
(TID 83). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 86
16/08/17 09:28:36 INFO executor.Executor: Running task 61.0 in stage 3.0
(TID 86)
16/08/17 09:28:36 INFO executor.Executor: Finished task 59.0 in stage 3.0
(TID 84). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 87
16/08/17 09:28:36 INFO executor.Executor: Running task 62.0 in stage 3.0
(TID 87)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 88
16/08/17 09:28:36 INFO executor.Executor: Running task 63.0 in stage 3.0
(TID 88)
16/08/17 09:28:36 INFO executor.Executor: Finished task 60.0 in stage 3.0
(TID 85). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 61.0 in stage 3.0
(TID 86). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 89
16/08/17 09:28:36 INFO executor.Executor: Running task 64.0 in stage 3.0
(TID 89)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 90
16/08/17 09:28:36 INFO executor.Executor: Finished task 62.0 in stage 3.0
(TID 87). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 65.0 in stage 3.0
(TID 90)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 91
16/08/17 09:28:36 INFO executor.Executor: Finished task 63.0 in stage 3.0
(TID 88). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 66.0 in stage 3.0
(TID 91)
16/08/17 09:28:36 INFO executor.Executor: Finished task 64.0 in stage 3.0
(TID 89). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 92
16/08/17 09:28:36 INFO executor.Executor: Running task 67.0 in stage 3.0
(TID 92)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 93
16/08/17 09:28:36 INFO executor.Executor: Running task 68.0 in stage 3.0
(TID 93)
16/08/17 09:28:36 INFO executor.Executor: Finished task 65.0 in stage 3.0
(TID 90). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 66.0 in stage 3.0
(TID 91). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 94
16/08/17 09:28:36 INFO executor.Executor: Running task 69.0 in stage 3.0
(TID 94)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 95
16/08/17 09:28:36 INFO executor.Executor: Running task 70.0 in stage 3.0
(TID 95)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 96
16/08/17 09:28:36 INFO executor.Executor: Finished task 67.0 in stage 3.0
(TID 92). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 71.0 in stage 3.0
(TID 96)
16/08/17 09:28:36 INFO executor.Executor: Finished task 68.0 in stage 3.0
(TID 93). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 69.0 in stage 3.0
(TID 94). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 97
16/08/17 09:28:36 INFO executor.Executor: Running task 72.0 in stage 3.0
(TID 97)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 98
16/08/17 09:28:36 INFO executor.Executor: Running task 73.0 in stage 3.0
(TID 98)
16/08/17 09:28:36 INFO executor.Executor: Finished task 70.0 in stage 3.0
(TID 95). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 99
16/08/17 09:28:36 INFO executor.Executor: Running task 74.0 in stage 3.0
(TID 99)
16/08/17 09:28:36 INFO executor.Executor: Finished task 71.0 in stage 3.0
(TID 96). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 100
16/08/17 09:28:36 INFO executor.Executor: Running task 75.0 in stage 3.0
(TID 100)
16/08/17 09:28:36 INFO executor.Executor: Finished task 72.0 in stage 3.0
(TID 97). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 73.0 in stage 3.0
(TID 98). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 101
16/08/17 09:28:36 INFO executor.Executor: Running task 76.0 in stage 3.0
(TID 101)
16/08/17 09:28:36 INFO executor.Executor: Finished task 74.0 in stage 3.0
(TID 99). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 102
16/08/17 09:28:36 INFO executor.Executor: Running task 77.0 in stage 3.0
(TID 102)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 103
16/08/17 09:28:36 INFO executor.Executor: Running task 78.0 in stage 3.0
(TID 103)
16/08/17 09:28:36 INFO executor.Executor: Finished task 75.0 in stage 3.0
(TID 100). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 104
16/08/17 09:28:36 INFO executor.Executor: Finished task 76.0 in stage 3.0
(TID 101). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 79.0 in stage 3.0
(TID 104)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 105
16/08/17 09:28:36 INFO executor.Executor: Running task 80.0 in stage 3.0
(TID 105)
16/08/17 09:28:36 INFO executor.Executor: Finished task 77.0 in stage 3.0
(TID 102). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 78.0 in stage 3.0
(TID 103). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 106
16/08/17 09:28:36 INFO executor.Executor: Running task 81.0 in stage 3.0
(TID 106)
16/08/17 09:28:36 INFO executor.Executor: Finished task 79.0 in stage 3.0
(TID 104). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 107
16/08/17 09:28:36 INFO executor.Executor: Running task 82.0 in stage 3.0
(TID 107)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 108
16/08/17 09:28:36 INFO executor.Executor: Running task 83.0 in stage 3.0
(TID 108)
16/08/17 09:28:36 INFO executor.Executor: Finished task 80.0 in stage 3.0
(TID 105). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 81.0 in stage 3.0
(TID 106). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 109
16/08/17 09:28:36 INFO executor.Executor: Running task 84.0 in stage 3.0
(TID 109)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 110
16/08/17 09:28:36 INFO executor.Executor: Running task 85.0 in stage 3.0
(TID 110)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 111
16/08/17 09:28:36 INFO executor.Executor: Running task 86.0 in stage 3.0
(TID 111)
16/08/17 09:28:36 INFO executor.Executor: Finished task 82.0 in stage 3.0
(TID 107). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 83.0 in stage 3.0
(TID 108). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 84.0 in stage 3.0
(TID 109). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 112
16/08/17 09:28:36 INFO executor.Executor: Running task 87.0 in stage 3.0
(TID 112)
16/08/17 09:28:36 INFO executor.Executor: Finished task 85.0 in stage 3.0
(TID 110). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 113
16/08/17 09:28:36 INFO executor.Executor: Running task 88.0 in stage 3.0
(TID 113)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 114
16/08/17 09:28:36 INFO executor.Executor: Running task 89.0 in stage 3.0
(TID 114)
16/08/17 09:28:36 INFO executor.Executor: Finished task 86.0 in stage 3.0
(TID 111). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 115
16/08/17 09:28:36 INFO executor.Executor: Running task 90.0 in stage 3.0
(TID 115)
16/08/17 09:28:36 INFO executor.Executor: Finished task 87.0 in stage 3.0
(TID 112). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 88.0 in stage 3.0
(TID 113). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 116
16/08/17 09:28:36 INFO executor.Executor: Finished task 89.0 in stage 3.0
(TID 114). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 91.0 in stage 3.0
(TID 116)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 117
16/08/17 09:28:36 INFO executor.Executor: Finished task 90.0 in stage 3.0
(TID 115). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 92.0 in stage 3.0
(TID 117)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 118
16/08/17 09:28:36 INFO executor.Executor: Running task 93.0 in stage 3.0
(TID 118)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 119
16/08/17 09:28:36 INFO executor.Executor: Running task 94.0 in stage 3.0
(TID 119)
16/08/17 09:28:36 INFO executor.Executor: Finished task 91.0 in stage 3.0
(TID 116). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 120
16/08/17 09:28:36 INFO executor.Executor: Running task 95.0 in stage 3.0
(TID 120)
16/08/17 09:28:36 INFO executor.Executor: Finished task 92.0 in stage 3.0
(TID 117). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 93.0 in stage 3.0
(TID 118). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 94.0 in stage 3.0
(TID 119). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 121
16/08/17 09:28:36 INFO executor.Executor: Running task 96.0 in stage 3.0
(TID 121)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 122
16/08/17 09:28:36 INFO executor.Executor: Finished task 95.0 in stage 3.0
(TID 120). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 97.0 in stage 3.0
(TID 122)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 123
16/08/17 09:28:36 INFO executor.Executor: Running task 98.0 in stage 3.0
(TID 123)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 124
16/08/17 09:28:36 INFO executor.Executor: Running task 99.0 in stage 3.0
(TID 124)
16/08/17 09:28:36 INFO executor.Executor: Finished task 96.0 in stage 3.0
(TID 121). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 125
16/08/17 09:28:36 INFO executor.Executor: Running task 100.0 in stage 3.0
(TID 125)
16/08/17 09:28:36 INFO executor.Executor: Finished task 97.0 in stage 3.0
(TID 122). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 98.0 in stage 3.0
(TID 123). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 126
16/08/17 09:28:36 INFO executor.Executor: Running task 101.0 in stage 3.0
(TID 126)
16/08/17 09:28:36 INFO executor.Executor: Finished task 99.0 in stage 3.0
(TID 124). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 127
16/08/17 09:28:36 INFO executor.Executor: Running task 102.0 in stage 3.0
(TID 127)
16/08/17 09:28:36 INFO executor.Executor: Finished task 100.0 in stage 3.0
(TID 125). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 128
16/08/17 09:28:36 INFO executor.Executor: Running task 103.0 in stage 3.0
(TID 128)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 129
16/08/17 09:28:36 INFO executor.Executor: Finished task 101.0 in stage 3.0
(TID 126). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 104.0 in stage 3.0
(TID 129)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 130
16/08/17 09:28:36 INFO executor.Executor: Running task 105.0 in stage 3.0
(TID 130)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 131
16/08/17 09:28:36 INFO executor.Executor: Finished task 102.0 in stage 3.0
(TID 127). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 106.0 in stage 3.0
(TID 131)
16/08/17 09:28:36 INFO executor.Executor: Finished task 103.0 in stage 3.0
(TID 128). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 104.0 in stage 3.0
(TID 129). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 132
16/08/17 09:28:36 INFO executor.Executor: Running task 107.0 in stage 3.0
(TID 132)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 133
16/08/17 09:28:36 INFO executor.Executor: Running task 108.0 in stage 3.0
(TID 133)
16/08/17 09:28:36 INFO executor.Executor: Finished task 105.0 in stage 3.0
(TID 130). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 106.0 in stage 3.0
(TID 131). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 134
16/08/17 09:28:36 INFO executor.Executor: Running task 109.0 in stage 3.0
(TID 134)
16/08/17 09:28:36 INFO executor.Executor: Finished task 107.0 in stage 3.0
(TID 132). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 135
16/08/17 09:28:36 INFO executor.Executor: Running task 110.0 in stage 3.0
(TID 135)
16/08/17 09:28:36 INFO executor.Executor: Finished task 108.0 in stage 3.0
(TID 133). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 136
16/08/17 09:28:36 INFO executor.Executor: Running task 111.0 in stage 3.0
(TID 136)
16/08/17 09:28:36 INFO executor.Executor: Finished task 109.0 in stage 3.0
(TID 134). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 137
16/08/17 09:28:36 INFO executor.Executor: Running task 112.0 in stage 3.0
(TID 137)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 138
16/08/17 09:28:36 INFO executor.Executor: Running task 113.0 in stage 3.0
(TID 138)
16/08/17 09:28:36 INFO executor.Executor: Finished task 110.0 in stage 3.0
(TID 135). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 139
16/08/17 09:28:36 INFO executor.Executor: Running task 114.0 in stage 3.0
(TID 139)
16/08/17 09:28:36 INFO executor.Executor: Finished task 111.0 in stage 3.0
(TID 136). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 112.0 in stage 3.0
(TID 137). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 140
16/08/17 09:28:36 INFO executor.Executor: Running task 115.0 in stage 3.0
(TID 140)
16/08/17 09:28:36 INFO executor.Executor: Finished task 113.0 in stage 3.0
(TID 138). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 141
16/08/17 09:28:36 INFO executor.Executor: Running task 116.0 in stage 3.0
(TID 141)
16/08/17 09:28:36 INFO executor.Executor: Finished task 114.0 in stage 3.0
(TID 139). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 142
16/08/17 09:28:36 INFO executor.Executor: Running task 117.0 in stage 3.0
(TID 142)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 143
16/08/17 09:28:36 INFO executor.Executor: Running task 118.0 in stage 3.0
(TID 143)
16/08/17 09:28:36 INFO executor.Executor: Finished task 115.0 in stage 3.0
(TID 140). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 144
16/08/17 09:28:36 INFO executor.Executor: Running task 119.0 in stage 3.0
(TID 144)
16/08/17 09:28:36 INFO executor.Executor: Finished task 116.0 in stage 3.0
(TID 141). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 117.0 in stage 3.0
(TID 142). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 145
16/08/17 09:28:36 INFO executor.Executor: Running task 120.0 in stage 3.0
(TID 145)
16/08/17 09:28:36 INFO executor.Executor: Finished task 118.0 in stage 3.0
(TID 143). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 146
16/08/17 09:28:36 INFO executor.Executor: Running task 121.0 in stage 3.0
(TID 146)
16/08/17 09:28:36 INFO executor.Executor: Finished task 119.0 in stage 3.0
(TID 144). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 147
16/08/17 09:28:36 INFO executor.Executor: Running task 122.0 in stage 3.0
(TID 147)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 148
16/08/17 09:28:36 INFO executor.Executor: Running task 123.0 in stage 3.0
(TID 148)
16/08/17 09:28:36 INFO executor.Executor: Finished task 120.0 in stage 3.0
(TID 145). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 149
16/08/17 09:28:36 INFO executor.Executor: Running task 124.0 in stage 3.0
(TID 149)
16/08/17 09:28:36 INFO executor.Executor: Finished task 121.0 in stage 3.0
(TID 146). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 122.0 in stage 3.0
(TID 147). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 150
16/08/17 09:28:36 INFO executor.Executor: Running task 125.0 in stage 3.0
(TID 150)
16/08/17 09:28:36 INFO executor.Executor: Finished task 123.0 in stage 3.0
(TID 148). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 151
16/08/17 09:28:36 INFO executor.Executor: Running task 126.0 in stage 3.0
(TID 151)
16/08/17 09:28:36 INFO executor.Executor: Finished task 124.0 in stage 3.0
(TID 149). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 152
16/08/17 09:28:36 INFO executor.Executor: Running task 127.0 in stage 3.0
(TID 152)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 153
16/08/17 09:28:36 INFO executor.Executor: Running task 128.0 in stage 3.0
(TID 153)
16/08/17 09:28:36 INFO executor.Executor: Finished task 125.0 in stage 3.0
(TID 150). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 154
16/08/17 09:28:36 INFO executor.Executor: Running task 129.0 in stage 3.0
(TID 154)
16/08/17 09:28:36 INFO executor.Executor: Finished task 126.0 in stage 3.0
(TID 151). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 127.0 in stage 3.0
(TID 152). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 155
16/08/17 09:28:36 INFO executor.Executor: Running task 130.0 in stage 3.0
(TID 155)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 156
16/08/17 09:28:36 INFO executor.Executor: Finished task 128.0 in stage 3.0
(TID 153). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 131.0 in stage 3.0
(TID 156)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 157
16/08/17 09:28:36 INFO executor.Executor: Running task 132.0 in stage 3.0
(TID 157)
16/08/17 09:28:36 INFO executor.Executor: Finished task 129.0 in stage 3.0
(TID 154). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 130.0 in stage 3.0
(TID 155). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 158
16/08/17 09:28:36 INFO executor.Executor: Running task 133.0 in stage 3.0
(TID 158)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 159
16/08/17 09:28:36 INFO executor.Executor: Running task 134.0 in stage 3.0
(TID 159)
16/08/17 09:28:36 INFO executor.Executor: Finished task 131.0 in stage 3.0
(TID 156). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 132.0 in stage 3.0
(TID 157). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 160
16/08/17 09:28:36 INFO executor.Executor: Running task 135.0 in stage 3.0
(TID 160)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 161
16/08/17 09:28:36 INFO executor.Executor: Running task 136.0 in stage 3.0
(TID 161)
16/08/17 09:28:36 INFO executor.Executor: Finished task 133.0 in stage 3.0
(TID 158). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 162
16/08/17 09:28:36 INFO executor.Executor: Running task 137.0 in stage 3.0
(TID 162)
16/08/17 09:28:36 INFO executor.Executor: Finished task 134.0 in stage 3.0
(TID 159). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 135.0 in stage 3.0
(TID 160). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 163
16/08/17 09:28:36 INFO executor.Executor: Running task 138.0 in stage 3.0
(TID 163)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 164
16/08/17 09:28:36 INFO executor.Executor: Finished task 136.0 in stage 3.0
(TID 161). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 139.0 in stage 3.0
(TID 164)
16/08/17 09:28:36 INFO executor.Executor: Finished task 137.0 in stage 3.0
(TID 162). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 165
16/08/17 09:28:36 INFO executor.Executor: Running task 140.0 in stage 3.0
(TID 165)
16/08/17 09:28:36 INFO executor.Executor: Finished task 138.0 in stage 3.0
(TID 163). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 166
16/08/17 09:28:36 INFO executor.Executor: Running task 141.0 in stage 3.0
(TID 166)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 167
16/08/17 09:28:36 INFO executor.Executor: Running task 142.0 in stage 3.0
(TID 167)
16/08/17 09:28:36 INFO executor.Executor: Finished task 139.0 in stage 3.0
(TID 164). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 140.0 in stage 3.0
(TID 165). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 168
16/08/17 09:28:36 INFO executor.Executor: Running task 143.0 in stage 3.0
(TID 168)
16/08/17 09:28:36 INFO executor.Executor: Finished task 141.0 in stage 3.0
(TID 166). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 169
16/08/17 09:28:36 INFO executor.Executor: Running task 144.0 in stage 3.0
(TID 169)
16/08/17 09:28:36 INFO executor.Executor: Finished task 142.0 in stage 3.0
(TID 167). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 170
16/08/17 09:28:36 INFO executor.Executor: Running task 145.0 in stage 3.0
(TID 170)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 171
16/08/17 09:28:36 INFO executor.Executor: Running task 146.0 in stage 3.0
(TID 171)
16/08/17 09:28:36 INFO executor.Executor: Finished task 143.0 in stage 3.0
(TID 168). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 172
16/08/17 09:28:36 INFO executor.Executor: Running task 147.0 in stage 3.0
(TID 172)
16/08/17 09:28:36 INFO executor.Executor: Finished task 144.0 in stage 3.0
(TID 169). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 145.0 in stage 3.0
(TID 170). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 173
16/08/17 09:28:36 INFO executor.Executor: Running task 148.0 in stage 3.0
(TID 173)
16/08/17 09:28:36 INFO executor.Executor: Finished task 146.0 in stage 3.0
(TID 171). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 174
16/08/17 09:28:36 INFO executor.Executor: Running task 149.0 in stage 3.0
(TID 174)
16/08/17 09:28:36 INFO executor.Executor: Finished task 147.0 in stage 3.0
(TID 172). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 175
16/08/17 09:28:36 INFO executor.Executor: Running task 150.0 in stage 3.0
(TID 175)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 176
16/08/17 09:28:36 INFO executor.Executor: Running task 151.0 in stage 3.0
(TID 176)
16/08/17 09:28:36 INFO executor.Executor: Finished task 148.0 in stage 3.0
(TID 173). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 177
16/08/17 09:28:36 INFO executor.Executor: Running task 152.0 in stage 3.0
(TID 177)
16/08/17 09:28:36 INFO executor.Executor: Finished task 149.0 in stage 3.0
(TID 174). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 150.0 in stage 3.0
(TID 175). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 178
16/08/17 09:28:36 INFO executor.Executor: Running task 153.0 in stage 3.0
(TID 178)
16/08/17 09:28:36 INFO executor.Executor: Finished task 151.0 in stage 3.0
(TID 176). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 179
16/08/17 09:28:36 INFO executor.Executor: Running task 154.0 in stage 3.0
(TID 179)
16/08/17 09:28:36 INFO executor.Executor: Finished task 152.0 in stage 3.0
(TID 177). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 180
16/08/17 09:28:36 INFO executor.Executor: Running task 155.0 in stage 3.0
(TID 180)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 181
16/08/17 09:28:36 INFO executor.Executor: Finished task 153.0 in stage 3.0
(TID 178). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 156.0 in stage 3.0
(TID 181)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 182
16/08/17 09:28:36 INFO executor.Executor: Running task 157.0 in stage 3.0
(TID 182)
16/08/17 09:28:36 INFO executor.Executor: Finished task 154.0 in stage 3.0
(TID 179). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 155.0 in stage 3.0
(TID 180). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 183
16/08/17 09:28:36 INFO executor.Executor: Running task 158.0 in stage 3.0
(TID 183)
16/08/17 09:28:36 INFO executor.Executor: Finished task 156.0 in stage 3.0
(TID 181). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 184
16/08/17 09:28:36 INFO executor.Executor: Running task 159.0 in stage 3.0
(TID 184)
16/08/17 09:28:36 INFO executor.Executor: Finished task 157.0 in stage 3.0
(TID 182). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 185
16/08/17 09:28:36 INFO executor.Executor: Running task 160.0 in stage 3.0
(TID 185)
16/08/17 09:28:36 INFO executor.Executor: Finished task 158.0 in stage 3.0
(TID 183). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 186
16/08/17 09:28:36 INFO executor.Executor: Running task 161.0 in stage 3.0
(TID 186)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 187
16/08/17 09:28:36 INFO executor.Executor: Running task 162.0 in stage 3.0
(TID 187)
16/08/17 09:28:36 INFO executor.Executor: Finished task 159.0 in stage 3.0
(TID 184). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 160.0 in stage 3.0
(TID 185). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 188
16/08/17 09:28:36 INFO executor.Executor: Running task 163.0 in stage 3.0
(TID 188)
16/08/17 09:28:36 INFO executor.Executor: Finished task 161.0 in stage 3.0
(TID 186). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 189
16/08/17 09:28:36 INFO executor.Executor: Running task 164.0 in stage 3.0
(TID 189)
16/08/17 09:28:36 INFO executor.Executor: Finished task 162.0 in stage 3.0
(TID 187). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 190
16/08/17 09:28:36 INFO executor.Executor: Running task 165.0 in stage 3.0
(TID 190)
16/08/17 09:28:36 INFO executor.Executor: Finished task 163.0 in stage 3.0
(TID 188). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 191
16/08/17 09:28:36 INFO executor.Executor: Running task 166.0 in stage 3.0
(TID 191)
16/08/17 09:28:36 INFO executor.Executor: Finished task 164.0 in stage 3.0
(TID 189). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 192
16/08/17 09:28:36 INFO executor.Executor: Running task 167.0 in stage 3.0
(TID 192)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 193
16/08/17 09:28:36 INFO executor.Executor: Running task 168.0 in stage 3.0
(TID 193)
16/08/17 09:28:36 INFO executor.Executor: Finished task 165.0 in stage 3.0
(TID 190). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 166.0 in stage 3.0
(TID 191). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 194
16/08/17 09:28:36 INFO executor.Executor: Running task 169.0 in stage 3.0
(TID 194)
16/08/17 09:28:36 INFO executor.Executor: Finished task 167.0 in stage 3.0
(TID 192). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 195
16/08/17 09:28:36 INFO executor.Executor: Running task 170.0 in stage 3.0
(TID 195)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 196
16/08/17 09:28:36 INFO executor.Executor: Running task 171.0 in stage 3.0
(TID 196)
16/08/17 09:28:36 INFO executor.Executor: Finished task 168.0 in stage 3.0
(TID 193). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 169.0 in stage 3.0
(TID 194). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 197
16/08/17 09:28:36 INFO executor.Executor: Running task 172.0 in stage 3.0
(TID 197)
16/08/17 09:28:36 INFO executor.Executor: Finished task 170.0 in stage 3.0
(TID 195). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 171.0 in stage 3.0
(TID 196). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 198
16/08/17 09:28:36 INFO executor.Executor: Running task 173.0 in stage 3.0
(TID 198)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 199
16/08/17 09:28:36 INFO executor.Executor: Running task 174.0 in stage 3.0
(TID 199)
16/08/17 09:28:36 INFO executor.Executor: Finished task 172.0 in stage 3.0
(TID 197). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 200
16/08/17 09:28:36 INFO executor.Executor: Running task 175.0 in stage 3.0
(TID 200)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 201
16/08/17 09:28:36 INFO executor.Executor: Running task 176.0 in stage 3.0
(TID 201)
16/08/17 09:28:36 INFO executor.Executor: Finished task 173.0 in stage 3.0
(TID 198). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 174.0 in stage 3.0
(TID 199). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 202
16/08/17 09:28:36 INFO executor.Executor: Running task 177.0 in stage 3.0
(TID 202)
16/08/17 09:28:36 INFO executor.Executor: Finished task 175.0 in stage 3.0
(TID 200). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 203
16/08/17 09:28:36 INFO executor.Executor: Running task 178.0 in stage 3.0
(TID 203)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 204
16/08/17 09:28:36 INFO executor.Executor: Running task 179.0 in stage 3.0
(TID 204)
16/08/17 09:28:36 INFO executor.Executor: Finished task 177.0 in stage 3.0
(TID 202). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 176.0 in stage 3.0
(TID 201). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 205
16/08/17 09:28:36 INFO executor.Executor: Running task 180.0 in stage 3.0
(TID 205)
16/08/17 09:28:36 INFO executor.Executor: Finished task 178.0 in stage 3.0
(TID 203). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 179.0 in stage 3.0
(TID 204). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 206
16/08/17 09:28:36 INFO executor.Executor: Running task 181.0 in stage 3.0
(TID 206)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 207
16/08/17 09:28:36 INFO executor.Executor: Running task 182.0 in stage 3.0
(TID 207)
16/08/17 09:28:36 INFO executor.Executor: Finished task 180.0 in stage 3.0
(TID 205). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 208
16/08/17 09:28:36 INFO executor.Executor: Running task 183.0 in stage 3.0
(TID 208)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 209
16/08/17 09:28:36 INFO executor.Executor: Running task 184.0 in stage 3.0
(TID 209)
16/08/17 09:28:36 INFO executor.Executor: Finished task 181.0 in stage 3.0
(TID 206). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 210
16/08/17 09:28:36 INFO executor.Executor: Running task 185.0 in stage 3.0
(TID 210)
16/08/17 09:28:36 INFO executor.Executor: Finished task 182.0 in stage 3.0
(TID 207). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 183.0 in stage 3.0
(TID 208). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 211
16/08/17 09:28:36 INFO executor.Executor: Running task 186.0 in stage 3.0
(TID 211)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 212
16/08/17 09:28:36 INFO executor.Executor: Running task 187.0 in stage 3.0
(TID 212)
16/08/17 09:28:36 INFO executor.Executor: Finished task 185.0 in stage 3.0
(TID 210). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 213
16/08/17 09:28:36 INFO executor.Executor: Running task 188.0 in stage 3.0
(TID 213)
16/08/17 09:28:36 INFO executor.Executor: Finished task 184.0 in stage 3.0
(TID 209). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 186.0 in stage 3.0
(TID 211). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 214
16/08/17 09:28:36 INFO executor.Executor: Running task 189.0 in stage 3.0
(TID 214)
16/08/17 09:28:36 INFO executor.Executor: Finished task 187.0 in stage 3.0
(TID 212). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 215
16/08/17 09:28:36 INFO executor.Executor: Running task 190.0 in stage 3.0
(TID 215)
16/08/17 09:28:36 INFO executor.Executor: Finished task 188.0 in stage 3.0
(TID 213). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 216
16/08/17 09:28:36 INFO executor.Executor: Running task 191.0 in stage 3.0
(TID 216)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 217
16/08/17 09:28:36 INFO executor.Executor: Running task 192.0 in stage 3.0
(TID 217)
16/08/17 09:28:36 INFO executor.Executor: Finished task 189.0 in stage 3.0
(TID 214). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 218
16/08/17 09:28:36 INFO executor.Executor: Running task 193.0 in stage 3.0
(TID 218)
16/08/17 09:28:36 INFO executor.Executor: Finished task 190.0 in stage 3.0
(TID 215). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 191.0 in stage 3.0
(TID 216). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 219
16/08/17 09:28:36 INFO executor.Executor: Running task 194.0 in stage 3.0
(TID 219)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 220
16/08/17 09:28:36 INFO executor.Executor: Running task 195.0 in stage 3.0
(TID 220)
16/08/17 09:28:36 INFO executor.Executor: Finished task 193.0 in stage 3.0
(TID 218). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 221
16/08/17 09:28:36 INFO executor.Executor: Running task 196.0 in stage 3.0
(TID 221)
16/08/17 09:28:36 INFO executor.Executor: Finished task 192.0 in stage 3.0
(TID 217). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 194.0 in stage 3.0
(TID 219). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 222
16/08/17 09:28:36 INFO executor.Executor: Running task 197.0 in stage 3.0
(TID 222)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 223
16/08/17 09:28:36 INFO executor.Executor: Finished task 195.0 in stage 3.0
(TID 220). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 198.0 in stage 3.0
(TID 223)
16/08/17 09:28:36 INFO executor.Executor: Finished task 196.0 in stage 3.0
(TID 221). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 224
16/08/17 09:28:36 INFO executor.Executor: Running task 199.0 in stage 3.0
(TID 224)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 225
16/08/17 09:28:36 INFO executor.Executor: Running task 200.0 in stage 3.0
(TID 225)
16/08/17 09:28:36 INFO executor.Executor: Finished task 197.0 in stage 3.0
(TID 222). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 226
16/08/17 09:28:36 INFO executor.Executor: Running task 201.0 in stage 3.0
(TID 226)
16/08/17 09:28:36 INFO executor.Executor: Finished task 199.0 in stage 3.0
(TID 224). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 198.0 in stage 3.0
(TID 223). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 227
16/08/17 09:28:36 INFO executor.Executor: Running task 202.0 in stage 3.0
(TID 227)
16/08/17 09:28:36 INFO executor.Executor: Finished task 200.0 in stage 3.0
(TID 225). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 201.0 in stage 3.0
(TID 226). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 228
16/08/17 09:28:36 INFO executor.Executor: Running task 203.0 in stage 3.0
(TID 228)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 229
16/08/17 09:28:36 INFO executor.Executor: Running task 204.0 in stage 3.0
(TID 229)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 230
16/08/17 09:28:36 INFO executor.Executor: Finished task 202.0 in stage 3.0
(TID 227). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Running task 205.0 in stage 3.0
(TID 230)
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 231
16/08/17 09:28:36 INFO executor.Executor: Running task 206.0 in stage 3.0
(TID 231)
16/08/17 09:28:36 INFO executor.Executor: Finished task 203.0 in stage 3.0
(TID 228). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 232
16/08/17 09:28:36 INFO executor.Executor: Running task 207.0 in stage 3.0
(TID 232)
16/08/17 09:28:36 INFO executor.Executor: Finished task 204.0 in stage 3.0
(TID 229). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 233
16/08/17 09:28:36 INFO executor.Executor: Running task 208.0 in stage 3.0
(TID 233)
16/08/17 09:28:36 INFO executor.Executor: Finished task 206.0 in stage 3.0
(TID 231). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.Executor: Finished task 205.0 in stage 3.0
(TID 230). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 234
16/08/17 09:28:36 INFO executor.Executor: Running task 209.0 in stage 3.0
(TID 234)
16/08/17 09:28:36 INFO executor.Executor: Finished task 207.0 in stage 3.0
(TID 232). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 235
16/08/17 09:28:36 INFO executor.Executor: Running task 210.0 in stage 3.0
(TID 235)
16/08/17 09:28:36 INFO executor.Executor: Finished task 208.0 in stage 3.0
(TID 233). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 236
16/08/17 09:28:36 INFO executor.Executor: Running task 211.0 in stage 3.0
(TID 236)
16/08/17 09:28:36 INFO executor.Executor: Finished task 209.0 in stage 3.0
(TID 234). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 237
16/08/17 09:28:36 INFO executor.Executor: Running task 212.0 in stage 3.0
(TID 237)
16/08/17 09:28:36 INFO executor.Executor: Finished task 210.0 in stage 3.0
(TID 235). 903 bytes result sent to driver
16/08/17 09:28:36 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 238
16/08/17 09:28:36 INFO executor.Executor: Running task 213.0 in stage 3.0
(TID 238)
16/08/17 09:28:37 INFO executor.Executor: Finished task 211.0 in stage 3.0
(TID 236). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 239
16/08/17 09:28:37 INFO executor.Executor: Running task 214.0 in stage 3.0
(TID 239)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 240
16/08/17 09:28:37 INFO executor.Executor: Running task 215.0 in stage 3.0
(TID 240)
16/08/17 09:28:37 INFO executor.Executor: Finished task 212.0 in stage 3.0
(TID 237). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 241
16/08/17 09:28:37 INFO executor.Executor: Running task 216.0 in stage 3.0
(TID 241)
16/08/17 09:28:37 INFO executor.Executor: Finished task 213.0 in stage 3.0
(TID 238). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 214.0 in stage 3.0
(TID 239). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 242
16/08/17 09:28:37 INFO executor.Executor: Running task 217.0 in stage 3.0
(TID 242)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 243
16/08/17 09:28:37 INFO executor.Executor: Running task 218.0 in stage 3.0
(TID 243)
16/08/17 09:28:37 INFO executor.Executor: Finished task 216.0 in stage 3.0
(TID 241). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 244
16/08/17 09:28:37 INFO executor.Executor: Running task 219.0 in stage 3.0
(TID 244)
16/08/17 09:28:37 INFO executor.Executor: Finished task 215.0 in stage 3.0
(TID 240). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 217.0 in stage 3.0
(TID 242). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 245
16/08/17 09:28:37 INFO executor.Executor: Running task 220.0 in stage 3.0
(TID 245)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 246
16/08/17 09:28:37 INFO executor.Executor: Running task 221.0 in stage 3.0
(TID 246)
16/08/17 09:28:37 INFO executor.Executor: Finished task 219.0 in stage 3.0
(TID 244). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 247
16/08/17 09:28:37 INFO executor.Executor: Running task 222.0 in stage 3.0
(TID 247)
16/08/17 09:28:37 INFO executor.Executor: Finished task 218.0 in stage 3.0
(TID 243). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 220.0 in stage 3.0
(TID 245). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 248
16/08/17 09:28:37 INFO executor.Executor: Running task 223.0 in stage 3.0
(TID 248)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 249
16/08/17 09:28:37 INFO executor.Executor: Running task 224.0 in stage 3.0
(TID 249)
16/08/17 09:28:37 INFO executor.Executor: Finished task 222.0 in stage 3.0
(TID 247). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 250
16/08/17 09:28:37 INFO executor.Executor: Running task 225.0 in stage 3.0
(TID 250)
16/08/17 09:28:37 INFO executor.Executor: Finished task 221.0 in stage 3.0
(TID 246). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 223.0 in stage 3.0
(TID 248). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 251
16/08/17 09:28:37 INFO executor.Executor: Running task 226.0 in stage 3.0
(TID 251)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 252
16/08/17 09:28:37 INFO executor.Executor: Running task 227.0 in stage 3.0
(TID 252)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 253
16/08/17 09:28:37 INFO executor.Executor: Finished task 225.0 in stage 3.0
(TID 250). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 228.0 in stage 3.0
(TID 253)
16/08/17 09:28:37 INFO executor.Executor: Finished task 224.0 in stage 3.0
(TID 249). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 226.0 in stage 3.0
(TID 251). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 254
16/08/17 09:28:37 INFO executor.Executor: Running task 229.0 in stage 3.0
(TID 254)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 255
16/08/17 09:28:37 INFO executor.Executor: Finished task 228.0 in stage 3.0
(TID 253). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 230.0 in stage 3.0
(TID 255)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 256
16/08/17 09:28:37 INFO executor.Executor: Running task 231.0 in stage 3.0
(TID 256)
16/08/17 09:28:37 INFO executor.Executor: Finished task 227.0 in stage 3.0
(TID 252). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 257
16/08/17 09:28:37 INFO executor.Executor: Running task 232.0 in stage 3.0
(TID 257)
16/08/17 09:28:37 INFO executor.Executor: Finished task 229.0 in stage 3.0
(TID 254). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 258
16/08/17 09:28:37 INFO executor.Executor: Running task 233.0 in stage 3.0
(TID 258)
16/08/17 09:28:37 INFO executor.Executor: Finished task 231.0 in stage 3.0
(TID 256). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 259
16/08/17 09:28:37 INFO executor.Executor: Running task 234.0 in stage 3.0
(TID 259)
16/08/17 09:28:37 INFO executor.Executor: Finished task 230.0 in stage 3.0
(TID 255). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 260
16/08/17 09:28:37 INFO executor.Executor: Running task 235.0 in stage 3.0
(TID 260)
16/08/17 09:28:37 INFO executor.Executor: Finished task 233.0 in stage 3.0
(TID 258). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 232.0 in stage 3.0
(TID 257). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 261
16/08/17 09:28:37 INFO executor.Executor: Running task 236.0 in stage 3.0
(TID 261)
16/08/17 09:28:37 INFO executor.Executor: Finished task 234.0 in stage 3.0
(TID 259). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 262
16/08/17 09:28:37 INFO executor.Executor: Running task 237.0 in stage 3.0
(TID 262)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 263
16/08/17 09:28:37 INFO executor.Executor: Running task 238.0 in stage 3.0
(TID 263)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 264
16/08/17 09:28:37 INFO executor.Executor: Running task 239.0 in stage 3.0
(TID 264)
16/08/17 09:28:37 INFO executor.Executor: Finished task 235.0 in stage 3.0
(TID 260). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 237.0 in stage 3.0
(TID 262). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 236.0 in stage 3.0
(TID 261). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 238.0 in stage 3.0
(TID 263). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 265
16/08/17 09:28:37 INFO executor.Executor: Running task 240.0 in stage 3.0
(TID 265)
16/08/17 09:28:37 INFO executor.Executor: Finished task 239.0 in stage 3.0
(TID 264). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 266
16/08/17 09:28:37 INFO executor.Executor: Running task 241.0 in stage 3.0
(TID 266)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 267
16/08/17 09:28:37 INFO executor.Executor: Running task 242.0 in stage 3.0
(TID 267)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 268
16/08/17 09:28:37 INFO executor.Executor: Running task 243.0 in stage 3.0
(TID 268)
16/08/17 09:28:37 INFO executor.Executor: Finished task 240.0 in stage 3.0
(TID 265). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 269
16/08/17 09:28:37 INFO executor.Executor: Running task 244.0 in stage 3.0
(TID 269)
16/08/17 09:28:37 INFO executor.Executor: Finished task 241.0 in stage 3.0
(TID 266). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 270
16/08/17 09:28:37 INFO executor.Executor: Running task 245.0 in stage 3.0
(TID 270)
16/08/17 09:28:37 INFO executor.Executor: Finished task 243.0 in stage 3.0
(TID 268). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 271
16/08/17 09:28:37 INFO executor.Executor: Running task 246.0 in stage 3.0
(TID 271)
16/08/17 09:28:37 INFO executor.Executor: Finished task 242.0 in stage 3.0
(TID 267). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 244.0 in stage 3.0
(TID 269). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 272
16/08/17 09:28:37 INFO executor.Executor: Running task 247.0 in stage 3.0
(TID 272)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 273
16/08/17 09:28:37 INFO executor.Executor: Running task 248.0 in stage 3.0
(TID 273)
16/08/17 09:28:37 INFO executor.Executor: Finished task 245.0 in stage 3.0
(TID 270). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 246.0 in stage 3.0
(TID 271). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 274
16/08/17 09:28:37 INFO executor.Executor: Running task 249.0 in stage 3.0
(TID 274)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 275
16/08/17 09:28:37 INFO executor.Executor: Running task 250.0 in stage 3.0
(TID 275)
16/08/17 09:28:37 INFO executor.Executor: Finished task 247.0 in stage 3.0
(TID 272). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 276
16/08/17 09:28:37 INFO executor.Executor: Running task 251.0 in stage 3.0
(TID 276)
16/08/17 09:28:37 INFO executor.Executor: Finished task 248.0 in stage 3.0
(TID 273). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 249.0 in stage 3.0
(TID 274). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 277
16/08/17 09:28:37 INFO executor.Executor: Running task 252.0 in stage 3.0
(TID 277)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 278
16/08/17 09:28:37 INFO executor.Executor: Running task 253.0 in stage 3.0
(TID 278)
16/08/17 09:28:37 INFO executor.Executor: Finished task 250.0 in stage 3.0
(TID 275). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 251.0 in stage 3.0
(TID 276). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 279
16/08/17 09:28:37 INFO executor.Executor: Running task 254.0 in stage 3.0
(TID 279)
16/08/17 09:28:37 INFO executor.Executor: Finished task 252.0 in stage 3.0
(TID 277). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 280
16/08/17 09:28:37 INFO executor.Executor: Running task 255.0 in stage 3.0
(TID 280)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 281
16/08/17 09:28:37 INFO executor.Executor: Running task 256.0 in stage 3.0
(TID 281)
16/08/17 09:28:37 INFO executor.Executor: Finished task 253.0 in stage 3.0
(TID 278). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 254.0 in stage 3.0
(TID 279). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 282
16/08/17 09:28:37 INFO executor.Executor: Running task 257.0 in stage 3.0
(TID 282)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 283
16/08/17 09:28:37 INFO executor.Executor: Running task 258.0 in stage 3.0
(TID 283)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 284
16/08/17 09:28:37 INFO executor.Executor: Finished task 255.0 in stage 3.0
(TID 280). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 259.0 in stage 3.0
(TID 284)
16/08/17 09:28:37 INFO executor.Executor: Finished task 256.0 in stage 3.0
(TID 281). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 257.0 in stage 3.0
(TID 282). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 285
16/08/17 09:28:37 INFO executor.Executor: Running task 260.0 in stage 3.0
(TID 285)
16/08/17 09:28:37 INFO executor.Executor: Finished task 258.0 in stage 3.0
(TID 283). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 286
16/08/17 09:28:37 INFO executor.Executor: Running task 261.0 in stage 3.0
(TID 286)
16/08/17 09:28:37 INFO executor.Executor: Finished task 259.0 in stage 3.0
(TID 284). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 287
16/08/17 09:28:37 INFO executor.Executor: Running task 262.0 in stage 3.0
(TID 287)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 288
16/08/17 09:28:37 INFO executor.Executor: Running task 263.0 in stage 3.0
(TID 288)
16/08/17 09:28:37 INFO executor.Executor: Finished task 260.0 in stage 3.0
(TID 285). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 289
16/08/17 09:28:37 INFO executor.Executor: Running task 264.0 in stage 3.0
(TID 289)
16/08/17 09:28:37 INFO executor.Executor: Finished task 261.0 in stage 3.0
(TID 286). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 262.0 in stage 3.0
(TID 287). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 290
16/08/17 09:28:37 INFO executor.Executor: Running task 265.0 in stage 3.0
(TID 290)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 291
16/08/17 09:28:37 INFO executor.Executor: Running task 266.0 in stage 3.0
(TID 291)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 292
16/08/17 09:28:37 INFO executor.Executor: Running task 267.0 in stage 3.0
(TID 292)
16/08/17 09:28:37 INFO executor.Executor: Finished task 263.0 in stage 3.0
(TID 288). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 264.0 in stage 3.0
(TID 289). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 293
16/08/17 09:28:37 INFO executor.Executor: Running task 268.0 in stage 3.0
(TID 293)
16/08/17 09:28:37 INFO executor.Executor: Finished task 265.0 in stage 3.0
(TID 290). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 294
16/08/17 09:28:37 INFO executor.Executor: Running task 269.0 in stage 3.0
(TID 294)
16/08/17 09:28:37 INFO executor.Executor: Finished task 266.0 in stage 3.0
(TID 291). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 267.0 in stage 3.0
(TID 292). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 295
16/08/17 09:28:37 INFO executor.Executor: Running task 270.0 in stage 3.0
(TID 295)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 296
16/08/17 09:28:37 INFO executor.Executor: Running task 271.0 in stage 3.0
(TID 296)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 297
16/08/17 09:28:37 INFO executor.Executor: Running task 272.0 in stage 3.0
(TID 297)
16/08/17 09:28:37 INFO executor.Executor: Finished task 268.0 in stage 3.0
(TID 293). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 269.0 in stage 3.0
(TID 294). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 298
16/08/17 09:28:37 INFO executor.Executor: Running task 273.0 in stage 3.0
(TID 298)
16/08/17 09:28:37 INFO executor.Executor: Finished task 270.0 in stage 3.0
(TID 295). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 299
16/08/17 09:28:37 INFO executor.Executor: Running task 274.0 in stage 3.0
(TID 299)
16/08/17 09:28:37 INFO executor.Executor: Finished task 271.0 in stage 3.0
(TID 296). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 272.0 in stage 3.0
(TID 297). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 300
16/08/17 09:28:37 INFO executor.Executor: Running task 275.0 in stage 3.0
(TID 300)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 301
16/08/17 09:28:37 INFO executor.Executor: Running task 276.0 in stage 3.0
(TID 301)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 302
16/08/17 09:28:37 INFO executor.Executor: Running task 277.0 in stage 3.0
(TID 302)
16/08/17 09:28:37 INFO executor.Executor: Finished task 274.0 in stage 3.0
(TID 299). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 273.0 in stage 3.0
(TID 298). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 303
16/08/17 09:28:37 INFO executor.Executor: Running task 278.0 in stage 3.0
(TID 303)
16/08/17 09:28:37 INFO executor.Executor: Finished task 275.0 in stage 3.0
(TID 300). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 276.0 in stage 3.0
(TID 301). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 304
16/08/17 09:28:37 INFO executor.Executor: Running task 279.0 in stage 3.0
(TID 304)
16/08/17 09:28:37 INFO executor.Executor: Finished task 277.0 in stage 3.0
(TID 302). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 305
16/08/17 09:28:37 INFO executor.Executor: Running task 280.0 in stage 3.0
(TID 305)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 306
16/08/17 09:28:37 INFO executor.Executor: Running task 281.0 in stage 3.0
(TID 306)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 307
16/08/17 09:28:37 INFO executor.Executor: Running task 282.0 in stage 3.0
(TID 307)
16/08/17 09:28:37 INFO executor.Executor: Finished task 278.0 in stage 3.0
(TID 303). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 279.0 in stage 3.0
(TID 304). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 308
16/08/17 09:28:37 INFO executor.Executor: Running task 283.0 in stage 3.0
(TID 308)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 309
16/08/17 09:28:37 INFO executor.Executor: Running task 284.0 in stage 3.0
(TID 309)
16/08/17 09:28:37 INFO executor.Executor: Finished task 280.0 in stage 3.0
(TID 305). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 281.0 in stage 3.0
(TID 306). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 282.0 in stage 3.0
(TID 307). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 310
16/08/17 09:28:37 INFO executor.Executor: Running task 285.0 in stage 3.0
(TID 310)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 311
16/08/17 09:28:37 INFO executor.Executor: Running task 286.0 in stage 3.0
(TID 311)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 312
16/08/17 09:28:37 INFO executor.Executor: Running task 287.0 in stage 3.0
(TID 312)
16/08/17 09:28:37 INFO executor.Executor: Finished task 283.0 in stage 3.0
(TID 308). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 284.0 in stage 3.0
(TID 309). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 313
16/08/17 09:28:37 INFO executor.Executor: Running task 288.0 in stage 3.0
(TID 313)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 314
16/08/17 09:28:37 INFO executor.Executor: Running task 289.0 in stage 3.0
(TID 314)
16/08/17 09:28:37 INFO executor.Executor: Finished task 285.0 in stage 3.0
(TID 310). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 286.0 in stage 3.0
(TID 311). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 287.0 in stage 3.0
(TID 312). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 315
16/08/17 09:28:37 INFO executor.Executor: Running task 290.0 in stage 3.0
(TID 315)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 316
16/08/17 09:28:37 INFO executor.Executor: Running task 291.0 in stage 3.0
(TID 316)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 317
16/08/17 09:28:37 INFO executor.Executor: Running task 292.0 in stage 3.0
(TID 317)
16/08/17 09:28:37 INFO executor.Executor: Finished task 289.0 in stage 3.0
(TID 314). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 288.0 in stage 3.0
(TID 313). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 318
16/08/17 09:28:37 INFO executor.Executor: Running task 293.0 in stage 3.0
(TID 318)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 319
16/08/17 09:28:37 INFO executor.Executor: Running task 294.0 in stage 3.0
(TID 319)
16/08/17 09:28:37 INFO executor.Executor: Finished task 290.0 in stage 3.0
(TID 315). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 291.0 in stage 3.0
(TID 316). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 292.0 in stage 3.0
(TID 317). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 320
16/08/17 09:28:37 INFO executor.Executor: Running task 295.0 in stage 3.0
(TID 320)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 321
16/08/17 09:28:37 INFO executor.Executor: Running task 296.0 in stage 3.0
(TID 321)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 322
16/08/17 09:28:37 INFO executor.Executor: Running task 297.0 in stage 3.0
(TID 322)
16/08/17 09:28:37 INFO executor.Executor: Finished task 293.0 in stage 3.0
(TID 318). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 294.0 in stage 3.0
(TID 319). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 323
16/08/17 09:28:37 INFO executor.Executor: Running task 298.0 in stage 3.0
(TID 323)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 324
16/08/17 09:28:37 INFO executor.Executor: Running task 299.0 in stage 3.0
(TID 324)
16/08/17 09:28:37 INFO executor.Executor: Finished task 295.0 in stage 3.0
(TID 320). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 296.0 in stage 3.0
(TID 321). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 297.0 in stage 3.0
(TID 322). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 325
16/08/17 09:28:37 INFO executor.Executor: Running task 300.0 in stage 3.0
(TID 325)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 326
16/08/17 09:28:37 INFO executor.Executor: Running task 301.0 in stage 3.0
(TID 326)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 327
16/08/17 09:28:37 INFO executor.Executor: Running task 302.0 in stage 3.0
(TID 327)
16/08/17 09:28:37 INFO executor.Executor: Finished task 299.0 in stage 3.0
(TID 324). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 298.0 in stage 3.0
(TID 323). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 328
16/08/17 09:28:37 INFO executor.Executor: Running task 303.0 in stage 3.0
(TID 328)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 329
16/08/17 09:28:37 INFO executor.Executor: Running task 304.0 in stage 3.0
(TID 329)
16/08/17 09:28:37 INFO executor.Executor: Finished task 300.0 in stage 3.0
(TID 325). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 301.0 in stage 3.0
(TID 326). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 302.0 in stage 3.0
(TID 327). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 330
16/08/17 09:28:37 INFO executor.Executor: Running task 305.0 in stage 3.0
(TID 330)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 331
16/08/17 09:28:37 INFO executor.Executor: Running task 306.0 in stage 3.0
(TID 331)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 332
16/08/17 09:28:37 INFO executor.Executor: Running task 307.0 in stage 3.0
(TID 332)
16/08/17 09:28:37 INFO executor.Executor: Finished task 303.0 in stage 3.0
(TID 328). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 304.0 in stage 3.0
(TID 329). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 333
16/08/17 09:28:37 INFO executor.Executor: Running task 308.0 in stage 3.0
(TID 333)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 334
16/08/17 09:28:37 INFO executor.Executor: Running task 309.0 in stage 3.0
(TID 334)
16/08/17 09:28:37 INFO executor.Executor: Finished task 305.0 in stage 3.0
(TID 330). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 306.0 in stage 3.0
(TID 331). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 307.0 in stage 3.0
(TID 332). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 335
16/08/17 09:28:37 INFO executor.Executor: Running task 310.0 in stage 3.0
(TID 335)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 336
16/08/17 09:28:37 INFO executor.Executor: Running task 311.0 in stage 3.0
(TID 336)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 337
16/08/17 09:28:37 INFO executor.Executor: Running task 312.0 in stage 3.0
(TID 337)
16/08/17 09:28:37 INFO executor.Executor: Finished task 308.0 in stage 3.0
(TID 333). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 309.0 in stage 3.0
(TID 334). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 338
16/08/17 09:28:37 INFO executor.Executor: Running task 313.0 in stage 3.0
(TID 338)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 339
16/08/17 09:28:37 INFO executor.Executor: Running task 314.0 in stage 3.0
(TID 339)
16/08/17 09:28:37 INFO executor.Executor: Finished task 310.0 in stage 3.0
(TID 335). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 311.0 in stage 3.0
(TID 336). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 312.0 in stage 3.0
(TID 337). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 340
16/08/17 09:28:37 INFO executor.Executor: Running task 315.0 in stage 3.0
(TID 340)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 341
16/08/17 09:28:37 INFO executor.Executor: Running task 316.0 in stage 3.0
(TID 341)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 342
16/08/17 09:28:37 INFO executor.Executor: Running task 317.0 in stage 3.0
(TID 342)
16/08/17 09:28:37 INFO executor.Executor: Finished task 314.0 in stage 3.0
(TID 339). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 313.0 in stage 3.0
(TID 338). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 343
16/08/17 09:28:37 INFO executor.Executor: Running task 318.0 in stage 3.0
(TID 343)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 344
16/08/17 09:28:37 INFO executor.Executor: Running task 319.0 in stage 3.0
(TID 344)
16/08/17 09:28:37 INFO executor.Executor: Finished task 315.0 in stage 3.0
(TID 340). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 316.0 in stage 3.0
(TID 341). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 317.0 in stage 3.0
(TID 342). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 345
16/08/17 09:28:37 INFO executor.Executor: Running task 320.0 in stage 3.0
(TID 345)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 346
16/08/17 09:28:37 INFO executor.Executor: Running task 321.0 in stage 3.0
(TID 346)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 347
16/08/17 09:28:37 INFO executor.Executor: Finished task 318.0 in stage 3.0
(TID 343). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 322.0 in stage 3.0
(TID 347)
16/08/17 09:28:37 INFO executor.Executor: Finished task 319.0 in stage 3.0
(TID 344). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 348
16/08/17 09:28:37 INFO executor.Executor: Running task 323.0 in stage 3.0
(TID 348)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 349
16/08/17 09:28:37 INFO executor.Executor: Finished task 320.0 in stage 3.0
(TID 345). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 324.0 in stage 3.0
(TID 349)
16/08/17 09:28:37 INFO executor.Executor: Finished task 321.0 in stage 3.0
(TID 346). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 322.0 in stage 3.0
(TID 347). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 350
16/08/17 09:28:37 INFO executor.Executor: Running task 325.0 in stage 3.0
(TID 350)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 351
16/08/17 09:28:37 INFO executor.Executor: Running task 326.0 in stage 3.0
(TID 351)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 352
16/08/17 09:28:37 INFO executor.Executor: Finished task 323.0 in stage 3.0
(TID 348). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 327.0 in stage 3.0
(TID 352)
16/08/17 09:28:37 INFO executor.Executor: Finished task 324.0 in stage 3.0
(TID 349). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 353
16/08/17 09:28:37 INFO executor.Executor: Running task 328.0 in stage 3.0
(TID 353)
16/08/17 09:28:37 INFO executor.Executor: Finished task 325.0 in stage 3.0
(TID 350). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 354
16/08/17 09:28:37 INFO executor.Executor: Running task 329.0 in stage 3.0
(TID 354)
16/08/17 09:28:37 INFO executor.Executor: Finished task 326.0 in stage 3.0
(TID 351). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 327.0 in stage 3.0
(TID 352). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 355
16/08/17 09:28:37 INFO executor.Executor: Running task 330.0 in stage 3.0
(TID 355)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 356
16/08/17 09:28:37 INFO executor.Executor: Running task 331.0 in stage 3.0
(TID 356)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 357
16/08/17 09:28:37 INFO executor.Executor: Running task 332.0 in stage 3.0
(TID 357)
16/08/17 09:28:37 INFO executor.Executor: Finished task 328.0 in stage 3.0
(TID 353). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 329.0 in stage 3.0
(TID 354). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 358
16/08/17 09:28:37 INFO executor.Executor: Running task 333.0 in stage 3.0
(TID 358)
16/08/17 09:28:37 INFO executor.Executor: Finished task 330.0 in stage 3.0
(TID 355). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 359
16/08/17 09:28:37 INFO executor.Executor: Finished task 331.0 in stage 3.0
(TID 356). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 334.0 in stage 3.0
(TID 359)
16/08/17 09:28:37 INFO executor.Executor: Finished task 332.0 in stage 3.0
(TID 357). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 360
16/08/17 09:28:37 INFO executor.Executor: Running task 335.0 in stage 3.0
(TID 360)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 361
16/08/17 09:28:37 INFO executor.Executor: Running task 336.0 in stage 3.0
(TID 361)
16/08/17 09:28:37 INFO executor.Executor: Finished task 333.0 in stage 3.0
(TID 358). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 334.0 in stage 3.0
(TID 359). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 362
16/08/17 09:28:37 INFO executor.Executor: Running task 337.0 in stage 3.0
(TID 362)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 363
16/08/17 09:28:37 INFO executor.Executor: Running task 338.0 in stage 3.0
(TID 363)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 364
16/08/17 09:28:37 INFO executor.Executor: Running task 339.0 in stage 3.0
(TID 364)
16/08/17 09:28:37 INFO executor.Executor: Finished task 335.0 in stage 3.0
(TID 360). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 336.0 in stage 3.0
(TID 361). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 337.0 in stage 3.0
(TID 362). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 365
16/08/17 09:28:37 INFO executor.Executor: Running task 340.0 in stage 3.0
(TID 365)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 366
16/08/17 09:28:37 INFO executor.Executor: Running task 341.0 in stage 3.0
(TID 366)
16/08/17 09:28:37 INFO executor.Executor: Finished task 338.0 in stage 3.0
(TID 363). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 339.0 in stage 3.0
(TID 364). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 367
16/08/17 09:28:37 INFO executor.Executor: Running task 342.0 in stage 3.0
(TID 367)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 368
16/08/17 09:28:37 INFO executor.Executor: Running task 343.0 in stage 3.0
(TID 368)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 369
16/08/17 09:28:37 INFO executor.Executor: Finished task 340.0 in stage 3.0
(TID 365). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 344.0 in stage 3.0
(TID 369)
16/08/17 09:28:37 INFO executor.Executor: Finished task 341.0 in stage 3.0
(TID 366). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 370
16/08/17 09:28:37 INFO executor.Executor: Running task 345.0 in stage 3.0
(TID 370)
16/08/17 09:28:37 INFO executor.Executor: Finished task 343.0 in stage 3.0
(TID 368). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 371
16/08/17 09:28:37 INFO executor.Executor: Running task 346.0 in stage 3.0
(TID 371)
16/08/17 09:28:37 INFO executor.Executor: Finished task 344.0 in stage 3.0
(TID 369). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 342.0 in stage 3.0
(TID 367). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 372
16/08/17 09:28:37 INFO executor.Executor: Running task 347.0 in stage 3.0
(TID 372)
16/08/17 09:28:37 INFO executor.Executor: Finished task 345.0 in stage 3.0
(TID 370). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 373
16/08/17 09:28:37 INFO executor.Executor: Running task 348.0 in stage 3.0
(TID 373)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 374
16/08/17 09:28:37 INFO executor.Executor: Running task 349.0 in stage 3.0
(TID 374)
16/08/17 09:28:37 INFO executor.Executor: Finished task 346.0 in stage 3.0
(TID 371). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 375
16/08/17 09:28:37 INFO executor.Executor: Running task 350.0 in stage 3.0
(TID 375)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 376
16/08/17 09:28:37 INFO executor.Executor: Finished task 348.0 in stage 3.0
(TID 373). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 351.0 in stage 3.0
(TID 376)
16/08/17 09:28:37 INFO executor.Executor: Finished task 349.0 in stage 3.0
(TID 374). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 347.0 in stage 3.0
(TID 372). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 377
16/08/17 09:28:37 INFO executor.Executor: Running task 352.0 in stage 3.0
(TID 377)
16/08/17 09:28:37 INFO executor.Executor: Finished task 350.0 in stage 3.0
(TID 375). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 378
16/08/17 09:28:37 INFO executor.Executor: Running task 353.0 in stage 3.0
(TID 378)
16/08/17 09:28:37 INFO executor.Executor: Finished task 351.0 in stage 3.0
(TID 376). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 379
16/08/17 09:28:37 INFO executor.Executor: Running task 354.0 in stage 3.0
(TID 379)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 380
16/08/17 09:28:37 INFO executor.Executor: Running task 355.0 in stage 3.0
(TID 380)
16/08/17 09:28:37 INFO executor.Executor: Finished task 352.0 in stage 3.0
(TID 377). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 381
16/08/17 09:28:37 INFO executor.Executor: Running task 356.0 in stage 3.0
(TID 381)
16/08/17 09:28:37 INFO executor.Executor: Finished task 353.0 in stage 3.0
(TID 378). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 354.0 in stage 3.0
(TID 379). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 382
16/08/17 09:28:37 INFO executor.Executor: Running task 357.0 in stage 3.0
(TID 382)
16/08/17 09:28:37 INFO executor.Executor: Finished task 355.0 in stage 3.0
(TID 380). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 356.0 in stage 3.0
(TID 381). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 383
16/08/17 09:28:37 INFO executor.Executor: Running task 358.0 in stage 3.0
(TID 383)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 384
16/08/17 09:28:37 INFO executor.Executor: Running task 359.0 in stage 3.0
(TID 384)
16/08/17 09:28:37 INFO executor.Executor: Finished task 357.0 in stage 3.0
(TID 382). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 385
16/08/17 09:28:37 INFO executor.Executor: Running task 360.0 in stage 3.0
(TID 385)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 386
16/08/17 09:28:37 INFO executor.Executor: Running task 361.0 in stage 3.0
(TID 386)
16/08/17 09:28:37 INFO executor.Executor: Finished task 358.0 in stage 3.0
(TID 383). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 387
16/08/17 09:28:37 INFO executor.Executor: Finished task 359.0 in stage 3.0
(TID 384). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 362.0 in stage 3.0
(TID 387)
16/08/17 09:28:37 INFO executor.Executor: Finished task 360.0 in stage 3.0
(TID 385). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 388
16/08/17 09:28:37 INFO executor.Executor: Running task 363.0 in stage 3.0
(TID 388)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 389
16/08/17 09:28:37 INFO executor.Executor: Running task 364.0 in stage 3.0
(TID 389)
16/08/17 09:28:37 INFO executor.Executor: Finished task 361.0 in stage 3.0
(TID 386). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 390
16/08/17 09:28:37 INFO executor.Executor: Running task 365.0 in stage 3.0
(TID 390)
16/08/17 09:28:37 INFO executor.Executor: Finished task 362.0 in stage 3.0
(TID 387). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 391
16/08/17 09:28:37 INFO executor.Executor: Running task 366.0 in stage 3.0
(TID 391)
16/08/17 09:28:37 INFO executor.Executor: Finished task 363.0 in stage 3.0
(TID 388). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 364.0 in stage 3.0
(TID 389). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 392
16/08/17 09:28:37 INFO executor.Executor: Running task 367.0 in stage 3.0
(TID 392)
16/08/17 09:28:37 INFO executor.Executor: Finished task 365.0 in stage 3.0
(TID 390). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 393
16/08/17 09:28:37 INFO executor.Executor: Running task 368.0 in stage 3.0
(TID 393)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 394
16/08/17 09:28:37 INFO executor.Executor: Running task 369.0 in stage 3.0
(TID 394)
16/08/17 09:28:37 INFO executor.Executor: Finished task 366.0 in stage 3.0
(TID 391). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 395
16/08/17 09:28:37 INFO executor.Executor: Running task 370.0 in stage 3.0
(TID 395)
16/08/17 09:28:37 INFO executor.Executor: Finished task 367.0 in stage 3.0
(TID 392). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 368.0 in stage 3.0
(TID 393). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 396
16/08/17 09:28:37 INFO executor.Executor: Running task 371.0 in stage 3.0
(TID 396)
16/08/17 09:28:37 INFO executor.Executor: Finished task 369.0 in stage 3.0
(TID 394). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 397
16/08/17 09:28:37 INFO executor.Executor: Running task 372.0 in stage 3.0
(TID 397)
16/08/17 09:28:37 INFO executor.Executor: Finished task 370.0 in stage 3.0
(TID 395). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 398
16/08/17 09:28:37 INFO executor.Executor: Running task 373.0 in stage 3.0
(TID 398)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 399
16/08/17 09:28:37 INFO executor.Executor: Running task 374.0 in stage 3.0
(TID 399)
16/08/17 09:28:37 INFO executor.Executor: Finished task 371.0 in stage 3.0
(TID 396). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 400
16/08/17 09:28:37 INFO executor.Executor: Running task 375.0 in stage 3.0
(TID 400)
16/08/17 09:28:37 INFO executor.Executor: Finished task 372.0 in stage 3.0
(TID 397). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 373.0 in stage 3.0
(TID 398). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 401
16/08/17 09:28:37 INFO executor.Executor: Running task 376.0 in stage 3.0
(TID 401)
16/08/17 09:28:37 INFO executor.Executor: Finished task 374.0 in stage 3.0
(TID 399). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 402
16/08/17 09:28:37 INFO executor.Executor: Running task 377.0 in stage 3.0
(TID 402)
16/08/17 09:28:37 INFO executor.Executor: Finished task 375.0 in stage 3.0
(TID 400). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 403
16/08/17 09:28:37 INFO executor.Executor: Running task 378.0 in stage 3.0
(TID 403)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 404
16/08/17 09:28:37 INFO executor.Executor: Running task 379.0 in stage 3.0
(TID 404)
16/08/17 09:28:37 INFO executor.Executor: Finished task 376.0 in stage 3.0
(TID 401). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 405
16/08/17 09:28:37 INFO executor.Executor: Running task 380.0 in stage 3.0
(TID 405)
16/08/17 09:28:37 INFO executor.Executor: Finished task 377.0 in stage 3.0
(TID 402). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 378.0 in stage 3.0
(TID 403). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 406
16/08/17 09:28:37 INFO executor.Executor: Running task 381.0 in stage 3.0
(TID 406)
16/08/17 09:28:37 INFO executor.Executor: Finished task 379.0 in stage 3.0
(TID 404). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 407
16/08/17 09:28:37 INFO executor.Executor: Running task 382.0 in stage 3.0
(TID 407)
16/08/17 09:28:37 INFO executor.Executor: Finished task 380.0 in stage 3.0
(TID 405). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 408
16/08/17 09:28:37 INFO executor.Executor: Running task 383.0 in stage 3.0
(TID 408)
16/08/17 09:28:37 INFO executor.Executor: Finished task 381.0 in stage 3.0
(TID 406). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 409
16/08/17 09:28:37 INFO executor.Executor: Running task 384.0 in stage 3.0
(TID 409)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 410
16/08/17 09:28:37 INFO executor.Executor: Running task 385.0 in stage 3.0
(TID 410)
16/08/17 09:28:37 INFO executor.Executor: Finished task 382.0 in stage 3.0
(TID 407). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 383.0 in stage 3.0
(TID 408). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 411
16/08/17 09:28:37 INFO executor.Executor: Running task 386.0 in stage 3.0
(TID 411)
16/08/17 09:28:37 INFO executor.Executor: Finished task 384.0 in stage 3.0
(TID 409). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 412
16/08/17 09:28:37 INFO executor.Executor: Running task 387.0 in stage 3.0
(TID 412)
16/08/17 09:28:37 INFO executor.Executor: Finished task 385.0 in stage 3.0
(TID 410). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 413
16/08/17 09:28:37 INFO executor.Executor: Running task 388.0 in stage 3.0
(TID 413)
16/08/17 09:28:37 INFO executor.Executor: Finished task 386.0 in stage 3.0
(TID 411). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 414
16/08/17 09:28:37 INFO executor.Executor: Running task 389.0 in stage 3.0
(TID 414)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 415
16/08/17 09:28:37 INFO executor.Executor: Finished task 387.0 in stage 3.0
(TID 412). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 390.0 in stage 3.0
(TID 415)
16/08/17 09:28:37 INFO executor.Executor: Finished task 388.0 in stage 3.0
(TID 413). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 416
16/08/17 09:28:37 INFO executor.Executor: Running task 391.0 in stage 3.0
(TID 416)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 417
16/08/17 09:28:37 INFO executor.Executor: Running task 392.0 in stage 3.0
(TID 417)
16/08/17 09:28:37 INFO executor.Executor: Finished task 389.0 in stage 3.0
(TID 414). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 418
16/08/17 09:28:37 INFO executor.Executor: Running task 393.0 in stage 3.0
(TID 418)
16/08/17 09:28:37 INFO executor.Executor: Finished task 390.0 in stage 3.0
(TID 415). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 391.0 in stage 3.0
(TID 416). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 419
16/08/17 09:28:37 INFO executor.Executor: Running task 394.0 in stage 3.0
(TID 419)
16/08/17 09:28:37 INFO executor.Executor: Finished task 392.0 in stage 3.0
(TID 417). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 393.0 in stage 3.0
(TID 418). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 420
16/08/17 09:28:37 INFO executor.Executor: Running task 395.0 in stage 3.0
(TID 420)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 421
16/08/17 09:28:37 INFO executor.Executor: Running task 396.0 in stage 3.0
(TID 421)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 422
16/08/17 09:28:37 INFO executor.Executor: Running task 397.0 in stage 3.0
(TID 422)
16/08/17 09:28:37 INFO executor.Executor: Finished task 394.0 in stage 3.0
(TID 419). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 423
16/08/17 09:28:37 INFO executor.Executor: Running task 398.0 in stage 3.0
(TID 423)
16/08/17 09:28:37 INFO executor.Executor: Finished task 395.0 in stage 3.0
(TID 420). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 396.0 in stage 3.0
(TID 421). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 424
16/08/17 09:28:37 INFO executor.Executor: Running task 399.0 in stage 3.0
(TID 424)
16/08/17 09:28:37 INFO executor.Executor: Finished task 397.0 in stage 3.0
(TID 422). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 425
16/08/17 09:28:37 INFO executor.Executor: Running task 400.0 in stage 3.0
(TID 425)
16/08/17 09:28:37 INFO executor.Executor: Finished task 398.0 in stage 3.0
(TID 423). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 426
16/08/17 09:28:37 INFO executor.Executor: Running task 401.0 in stage 3.0
(TID 426)
16/08/17 09:28:37 INFO executor.Executor: Finished task 399.0 in stage 3.0
(TID 424). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 427
16/08/17 09:28:37 INFO executor.Executor: Running task 402.0 in stage 3.0
(TID 427)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 428
16/08/17 09:28:37 INFO executor.Executor: Running task 403.0 in stage 3.0
(TID 428)
16/08/17 09:28:37 INFO executor.Executor: Finished task 400.0 in stage 3.0
(TID 425). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 401.0 in stage 3.0
(TID 426). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 429
16/08/17 09:28:37 INFO executor.Executor: Running task 404.0 in stage 3.0
(TID 429)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 430
16/08/17 09:28:37 INFO executor.Executor: Finished task 402.0 in stage 3.0
(TID 427). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 405.0 in stage 3.0
(TID 430)
16/08/17 09:28:37 INFO executor.Executor: Finished task 403.0 in stage 3.0
(TID 428). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 431
16/08/17 09:28:37 INFO executor.Executor: Running task 406.0 in stage 3.0
(TID 431)
16/08/17 09:28:37 INFO executor.Executor: Finished task 404.0 in stage 3.0
(TID 429). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 432
16/08/17 09:28:37 INFO executor.Executor: Running task 407.0 in stage 3.0
(TID 432)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 433
16/08/17 09:28:37 INFO executor.Executor: Running task 408.0 in stage 3.0
(TID 433)
16/08/17 09:28:37 INFO executor.Executor: Finished task 405.0 in stage 3.0
(TID 430). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 406.0 in stage 3.0
(TID 431). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 434
16/08/17 09:28:37 INFO executor.Executor: Running task 409.0 in stage 3.0
(TID 434)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 435
16/08/17 09:28:37 INFO executor.Executor: Running task 410.0 in stage 3.0
(TID 435)
16/08/17 09:28:37 INFO executor.Executor: Finished task 407.0 in stage 3.0
(TID 432). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 436
16/08/17 09:28:37 INFO executor.Executor: Running task 411.0 in stage 3.0
(TID 436)
16/08/17 09:28:37 INFO executor.Executor: Finished task 408.0 in stage 3.0
(TID 433). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 409.0 in stage 3.0
(TID 434). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 437
16/08/17 09:28:37 INFO executor.Executor: Running task 412.0 in stage 3.0
(TID 437)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 438
16/08/17 09:28:37 INFO executor.Executor: Finished task 410.0 in stage 3.0
(TID 435). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 413.0 in stage 3.0
(TID 438)
16/08/17 09:28:37 INFO executor.Executor: Finished task 411.0 in stage 3.0
(TID 436). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 439
16/08/17 09:28:37 INFO executor.Executor: Running task 414.0 in stage 3.0
(TID 439)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 440
16/08/17 09:28:37 INFO executor.Executor: Running task 415.0 in stage 3.0
(TID 440)
16/08/17 09:28:37 INFO executor.Executor: Finished task 412.0 in stage 3.0
(TID 437). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 441
16/08/17 09:28:37 INFO executor.Executor: Running task 416.0 in stage 3.0
(TID 441)
16/08/17 09:28:37 INFO executor.Executor: Finished task 413.0 in stage 3.0
(TID 438). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 414.0 in stage 3.0
(TID 439). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 442
16/08/17 09:28:37 INFO executor.Executor: Running task 417.0 in stage 3.0
(TID 442)
16/08/17 09:28:37 INFO executor.Executor: Finished task 415.0 in stage 3.0
(TID 440). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 443
16/08/17 09:28:37 INFO executor.Executor: Running task 418.0 in stage 3.0
(TID 443)
16/08/17 09:28:37 INFO executor.Executor: Finished task 416.0 in stage 3.0
(TID 441). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 444
16/08/17 09:28:37 INFO executor.Executor: Running task 419.0 in stage 3.0
(TID 444)
16/08/17 09:28:37 INFO executor.Executor: Finished task 417.0 in stage 3.0
(TID 442). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 445
16/08/17 09:28:37 INFO executor.Executor: Running task 420.0 in stage 3.0
(TID 445)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 446
16/08/17 09:28:37 INFO executor.Executor: Running task 421.0 in stage 3.0
(TID 446)
16/08/17 09:28:37 INFO executor.Executor: Finished task 418.0 in stage 3.0
(TID 443). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 419.0 in stage 3.0
(TID 444). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 447
16/08/17 09:28:37 INFO executor.Executor: Running task 422.0 in stage 3.0
(TID 447)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 448
16/08/17 09:28:37 INFO executor.Executor: Running task 423.0 in stage 3.0
(TID 448)
16/08/17 09:28:37 INFO executor.Executor: Finished task 420.0 in stage 3.0
(TID 445). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 421.0 in stage 3.0
(TID 446). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 449
16/08/17 09:28:37 INFO executor.Executor: Running task 424.0 in stage 3.0
(TID 449)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 450
16/08/17 09:28:37 INFO executor.Executor: Running task 425.0 in stage 3.0
(TID 450)
16/08/17 09:28:37 INFO executor.Executor: Finished task 422.0 in stage 3.0
(TID 447). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 451
16/08/17 09:28:37 INFO executor.Executor: Running task 426.0 in stage 3.0
(TID 451)
16/08/17 09:28:37 INFO executor.Executor: Finished task 423.0 in stage 3.0
(TID 448). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 424.0 in stage 3.0
(TID 449). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 452
16/08/17 09:28:37 INFO executor.Executor: Running task 427.0 in stage 3.0
(TID 452)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 453
16/08/17 09:28:37 INFO executor.Executor: Running task 428.0 in stage 3.0
(TID 453)
16/08/17 09:28:37 INFO executor.Executor: Finished task 425.0 in stage 3.0
(TID 450). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 426.0 in stage 3.0
(TID 451). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 454
16/08/17 09:28:37 INFO executor.Executor: Running task 429.0 in stage 3.0
(TID 454)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 455
16/08/17 09:28:37 INFO executor.Executor: Running task 430.0 in stage 3.0
(TID 455)
16/08/17 09:28:37 INFO executor.Executor: Finished task 427.0 in stage 3.0
(TID 452). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 456
16/08/17 09:28:37 INFO executor.Executor: Running task 431.0 in stage 3.0
(TID 456)
16/08/17 09:28:37 INFO executor.Executor: Finished task 428.0 in stage 3.0
(TID 453). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 429.0 in stage 3.0
(TID 454). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 457
16/08/17 09:28:37 INFO executor.Executor: Running task 432.0 in stage 3.0
(TID 457)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 458
16/08/17 09:28:37 INFO executor.Executor: Running task 433.0 in stage 3.0
(TID 458)
16/08/17 09:28:37 INFO executor.Executor: Finished task 430.0 in stage 3.0
(TID 455). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 431.0 in stage 3.0
(TID 456). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 459
16/08/17 09:28:37 INFO executor.Executor: Running task 434.0 in stage 3.0
(TID 459)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 460
16/08/17 09:28:37 INFO executor.Executor: Running task 435.0 in stage 3.0
(TID 460)
16/08/17 09:28:37 INFO executor.Executor: Finished task 432.0 in stage 3.0
(TID 457). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 461
16/08/17 09:28:37 INFO executor.Executor: Running task 436.0 in stage 3.0
(TID 461)
16/08/17 09:28:37 INFO executor.Executor: Finished task 433.0 in stage 3.0
(TID 458). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 434.0 in stage 3.0
(TID 459). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 462
16/08/17 09:28:37 INFO executor.Executor: Running task 437.0 in stage 3.0
(TID 462)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 463
16/08/17 09:28:37 INFO executor.Executor: Running task 438.0 in stage 3.0
(TID 463)
16/08/17 09:28:37 INFO executor.Executor: Finished task 435.0 in stage 3.0
(TID 460). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 436.0 in stage 3.0
(TID 461). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 464
16/08/17 09:28:37 INFO executor.Executor: Running task 439.0 in stage 3.0
(TID 464)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 465
16/08/17 09:28:37 INFO executor.Executor: Running task 440.0 in stage 3.0
(TID 465)
16/08/17 09:28:37 INFO executor.Executor: Finished task 437.0 in stage 3.0
(TID 462). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 466
16/08/17 09:28:37 INFO executor.Executor: Running task 441.0 in stage 3.0
(TID 466)
16/08/17 09:28:37 INFO executor.Executor: Finished task 438.0 in stage 3.0
(TID 463). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 439.0 in stage 3.0
(TID 464). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 467
16/08/17 09:28:37 INFO executor.Executor: Running task 442.0 in stage 3.0
(TID 467)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 468
16/08/17 09:28:37 INFO executor.Executor: Running task 443.0 in stage 3.0
(TID 468)
16/08/17 09:28:37 INFO executor.Executor: Finished task 440.0 in stage 3.0
(TID 465). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 441.0 in stage 3.0
(TID 466). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 469
16/08/17 09:28:37 INFO executor.Executor: Running task 444.0 in stage 3.0
(TID 469)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 470
16/08/17 09:28:37 INFO executor.Executor: Running task 445.0 in stage 3.0
(TID 470)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 471
16/08/17 09:28:37 INFO executor.Executor: Finished task 442.0 in stage 3.0
(TID 467). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 446.0 in stage 3.0
(TID 471)
16/08/17 09:28:37 INFO executor.Executor: Finished task 443.0 in stage 3.0
(TID 468). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 444.0 in stage 3.0
(TID 469). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 472
16/08/17 09:28:37 INFO executor.Executor: Running task 447.0 in stage 3.0
(TID 472)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 473
16/08/17 09:28:37 INFO executor.Executor: Running task 448.0 in stage 3.0
(TID 473)
16/08/17 09:28:37 INFO executor.Executor: Finished task 445.0 in stage 3.0
(TID 470). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 446.0 in stage 3.0
(TID 471). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 474
16/08/17 09:28:37 INFO executor.Executor: Running task 449.0 in stage 3.0
(TID 474)
16/08/17 09:28:37 INFO executor.Executor: Finished task 447.0 in stage 3.0
(TID 472). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 475
16/08/17 09:28:37 INFO executor.Executor: Running task 450.0 in stage 3.0
(TID 475)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 476
16/08/17 09:28:37 INFO executor.Executor: Running task 451.0 in stage 3.0
(TID 476)
16/08/17 09:28:37 INFO executor.Executor: Finished task 448.0 in stage 3.0
(TID 473). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 449.0 in stage 3.0
(TID 474). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 477
16/08/17 09:28:37 INFO executor.Executor: Running task 452.0 in stage 3.0
(TID 477)
16/08/17 09:28:37 INFO executor.Executor: Finished task 450.0 in stage 3.0
(TID 475). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 478
16/08/17 09:28:37 INFO executor.Executor: Running task 453.0 in stage 3.0
(TID 478)
16/08/17 09:28:37 INFO executor.Executor: Finished task 451.0 in stage 3.0
(TID 476). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 479
16/08/17 09:28:37 INFO executor.Executor: Running task 454.0 in stage 3.0
(TID 479)
16/08/17 09:28:37 INFO executor.Executor: Finished task 452.0 in stage 3.0
(TID 477). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 480
16/08/17 09:28:37 INFO executor.Executor: Running task 455.0 in stage 3.0
(TID 480)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 481
16/08/17 09:28:37 INFO executor.Executor: Running task 456.0 in stage 3.0
(TID 481)
16/08/17 09:28:37 INFO executor.Executor: Finished task 453.0 in stage 3.0
(TID 478). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 454.0 in stage 3.0
(TID 479). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 482
16/08/17 09:28:37 INFO executor.Executor: Running task 457.0 in stage 3.0
(TID 482)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 483
16/08/17 09:28:37 INFO executor.Executor: Finished task 455.0 in stage 3.0
(TID 480). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 458.0 in stage 3.0
(TID 483)
16/08/17 09:28:37 INFO executor.Executor: Finished task 456.0 in stage 3.0
(TID 481). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 484
16/08/17 09:28:37 INFO executor.Executor: Running task 459.0 in stage 3.0
(TID 484)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 485
16/08/17 09:28:37 INFO executor.Executor: Finished task 457.0 in stage 3.0
(TID 482). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 460.0 in stage 3.0
(TID 485)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 486
16/08/17 09:28:37 INFO executor.Executor: Running task 461.0 in stage 3.0
(TID 486)
16/08/17 09:28:37 INFO executor.Executor: Finished task 458.0 in stage 3.0
(TID 483). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 459.0 in stage 3.0
(TID 484). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 487
16/08/17 09:28:37 INFO executor.Executor: Running task 462.0 in stage 3.0
(TID 487)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 488
16/08/17 09:28:37 INFO executor.Executor: Running task 463.0 in stage 3.0
(TID 488)
16/08/17 09:28:37 INFO executor.Executor: Finished task 460.0 in stage 3.0
(TID 485). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 489
16/08/17 09:28:37 INFO executor.Executor: Running task 464.0 in stage 3.0
(TID 489)
16/08/17 09:28:37 INFO executor.Executor: Finished task 461.0 in stage 3.0
(TID 486). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 462.0 in stage 3.0
(TID 487). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 490
16/08/17 09:28:37 INFO executor.Executor: Running task 465.0 in stage 3.0
(TID 490)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 491
16/08/17 09:28:37 INFO executor.Executor: Running task 466.0 in stage 3.0
(TID 491)
16/08/17 09:28:37 INFO executor.Executor: Finished task 463.0 in stage 3.0
(TID 488). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 464.0 in stage 3.0
(TID 489). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 492
16/08/17 09:28:37 INFO executor.Executor: Running task 467.0 in stage 3.0
(TID 492)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 493
16/08/17 09:28:37 INFO executor.Executor: Finished task 465.0 in stage 3.0
(TID 490). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 468.0 in stage 3.0
(TID 493)
16/08/17 09:28:37 INFO executor.Executor: Finished task 466.0 in stage 3.0
(TID 491). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 494
16/08/17 09:28:37 INFO executor.Executor: Running task 469.0 in stage 3.0
(TID 494)
16/08/17 09:28:37 INFO executor.Executor: Finished task 467.0 in stage 3.0
(TID 492). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 495
16/08/17 09:28:37 INFO executor.Executor: Running task 470.0 in stage 3.0
(TID 495)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 496
16/08/17 09:28:37 INFO executor.Executor: Running task 471.0 in stage 3.0
(TID 496)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 497
16/08/17 09:28:37 INFO executor.Executor: Running task 472.0 in stage 3.0
(TID 497)
16/08/17 09:28:37 INFO executor.Executor: Finished task 469.0 in stage 3.0
(TID 494). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 468.0 in stage 3.0
(TID 493). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 470.0 in stage 3.0
(TID 495). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 498
16/08/17 09:28:37 INFO executor.Executor: Running task 473.0 in stage 3.0
(TID 498)
16/08/17 09:28:37 INFO executor.Executor: Finished task 471.0 in stage 3.0
(TID 496). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 499
16/08/17 09:28:37 INFO executor.Executor: Running task 474.0 in stage 3.0
(TID 499)
16/08/17 09:28:37 INFO executor.Executor: Finished task 472.0 in stage 3.0
(TID 497). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 500
16/08/17 09:28:37 INFO executor.Executor: Running task 475.0 in stage 3.0
(TID 500)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 501
16/08/17 09:28:37 INFO executor.Executor: Running task 476.0 in stage 3.0
(TID 501)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 502
16/08/17 09:28:37 INFO executor.Executor: Running task 477.0 in stage 3.0
(TID 502)
16/08/17 09:28:37 INFO executor.Executor: Finished task 473.0 in stage 3.0
(TID 498). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 474.0 in stage 3.0
(TID 499). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 475.0 in stage 3.0
(TID 500). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 503
16/08/17 09:28:37 INFO executor.Executor: Running task 478.0 in stage 3.0
(TID 503)
16/08/17 09:28:37 INFO executor.Executor: Finished task 476.0 in stage 3.0
(TID 501). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 477.0 in stage 3.0
(TID 502). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 504
16/08/17 09:28:37 INFO executor.Executor: Running task 479.0 in stage 3.0
(TID 504)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 505
16/08/17 09:28:37 INFO executor.Executor: Running task 480.0 in stage 3.0
(TID 505)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 506
16/08/17 09:28:37 INFO executor.Executor: Running task 481.0 in stage 3.0
(TID 506)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 507
16/08/17 09:28:37 INFO executor.Executor: Running task 482.0 in stage 3.0
(TID 507)
16/08/17 09:28:37 INFO executor.Executor: Finished task 478.0 in stage 3.0
(TID 503). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 479.0 in stage 3.0
(TID 504). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 480.0 in stage 3.0
(TID 505). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 508
16/08/17 09:28:37 INFO executor.Executor: Running task 483.0 in stage 3.0
(TID 508)
16/08/17 09:28:37 INFO executor.Executor: Finished task 481.0 in stage 3.0
(TID 506). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 509
16/08/17 09:28:37 INFO executor.Executor: Running task 484.0 in stage 3.0
(TID 509)
16/08/17 09:28:37 INFO executor.Executor: Finished task 482.0 in stage 3.0
(TID 507). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 510
16/08/17 09:28:37 INFO executor.Executor: Running task 485.0 in stage 3.0
(TID 510)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 511
16/08/17 09:28:37 INFO executor.Executor: Running task 486.0 in stage 3.0
(TID 511)
16/08/17 09:28:37 INFO executor.Executor: Finished task 483.0 in stage 3.0
(TID 508). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 512
16/08/17 09:28:37 INFO executor.Executor: Running task 487.0 in stage 3.0
(TID 512)
16/08/17 09:28:37 INFO executor.Executor: Finished task 484.0 in stage 3.0
(TID 509). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 513
16/08/17 09:28:37 INFO executor.Executor: Running task 488.0 in stage 3.0
(TID 513)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 514
16/08/17 09:28:37 INFO executor.Executor: Running task 489.0 in stage 3.0
(TID 514)
16/08/17 09:28:37 INFO executor.Executor: Finished task 485.0 in stage 3.0
(TID 510). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 487.0 in stage 3.0
(TID 512). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 486.0 in stage 3.0
(TID 511). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 515
16/08/17 09:28:37 INFO executor.Executor: Running task 490.0 in stage 3.0
(TID 515)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 516
16/08/17 09:28:37 INFO executor.Executor: Running task 491.0 in stage 3.0
(TID 516)
16/08/17 09:28:37 INFO executor.Executor: Finished task 488.0 in stage 3.0
(TID 513). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 489.0 in stage 3.0
(TID 514). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 517
16/08/17 09:28:37 INFO executor.Executor: Running task 492.0 in stage 3.0
(TID 517)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 518
16/08/17 09:28:37 INFO executor.Executor: Running task 493.0 in stage 3.0
(TID 518)
16/08/17 09:28:37 INFO executor.Executor: Finished task 490.0 in stage 3.0
(TID 515). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 491.0 in stage 3.0
(TID 516). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 519
16/08/17 09:28:37 INFO executor.Executor: Running task 494.0 in stage 3.0
(TID 519)
16/08/17 09:28:37 INFO executor.Executor: Finished task 492.0 in stage 3.0
(TID 517). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 520
16/08/17 09:28:37 INFO executor.Executor: Running task 495.0 in stage 3.0
(TID 520)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 521
16/08/17 09:28:37 INFO executor.Executor: Running task 496.0 in stage 3.0
(TID 521)
16/08/17 09:28:37 INFO executor.Executor: Finished task 493.0 in stage 3.0
(TID 518). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 522
16/08/17 09:28:37 INFO executor.Executor: Running task 497.0 in stage 3.0
(TID 522)
16/08/17 09:28:37 INFO executor.Executor: Finished task 494.0 in stage 3.0
(TID 519). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 523
16/08/17 09:28:37 INFO executor.Executor: Running task 498.0 in stage 3.0
(TID 523)
16/08/17 09:28:37 INFO executor.Executor: Finished task 495.0 in stage 3.0
(TID 520). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 524
16/08/17 09:28:37 INFO executor.Executor: Running task 499.0 in stage 3.0
(TID 524)
16/08/17 09:28:37 INFO executor.Executor: Finished task 496.0 in stage 3.0
(TID 521). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 497.0 in stage 3.0
(TID 522). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 525
16/08/17 09:28:37 INFO executor.Executor: Running task 500.0 in stage 3.0
(TID 525)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 526
16/08/17 09:28:37 INFO executor.Executor: Running task 501.0 in stage 3.0
(TID 526)
16/08/17 09:28:37 INFO executor.Executor: Finished task 498.0 in stage 3.0
(TID 523). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 527
16/08/17 09:28:37 INFO executor.Executor: Running task 502.0 in stage 3.0
(TID 527)
16/08/17 09:28:37 INFO executor.Executor: Finished task 499.0 in stage 3.0
(TID 524). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 528
16/08/17 09:28:37 INFO executor.Executor: Running task 503.0 in stage 3.0
(TID 528)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 529
16/08/17 09:28:37 INFO executor.Executor: Finished task 500.0 in stage 3.0
(TID 525). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 504.0 in stage 3.0
(TID 529)
16/08/17 09:28:37 INFO executor.Executor: Finished task 501.0 in stage 3.0
(TID 526). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 502.0 in stage 3.0
(TID 527). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 530
16/08/17 09:28:37 INFO executor.Executor: Running task 505.0 in stage 3.0
(TID 530)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 531
16/08/17 09:28:37 INFO executor.Executor: Running task 506.0 in stage 3.0
(TID 531)
16/08/17 09:28:37 INFO executor.Executor: Finished task 503.0 in stage 3.0
(TID 528). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 504.0 in stage 3.0
(TID 529). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 532
16/08/17 09:28:37 INFO executor.Executor: Running task 507.0 in stage 3.0
(TID 532)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 533
16/08/17 09:28:37 INFO executor.Executor: Running task 508.0 in stage 3.0
(TID 533)
16/08/17 09:28:37 INFO executor.Executor: Finished task 505.0 in stage 3.0
(TID 530). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 534
16/08/17 09:28:37 INFO executor.Executor: Running task 509.0 in stage 3.0
(TID 534)
16/08/17 09:28:37 INFO executor.Executor: Finished task 506.0 in stage 3.0
(TID 531). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 507.0 in stage 3.0
(TID 532). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 535
16/08/17 09:28:37 INFO executor.Executor: Running task 510.0 in stage 3.0
(TID 535)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 536
16/08/17 09:28:37 INFO executor.Executor: Running task 511.0 in stage 3.0
(TID 536)
16/08/17 09:28:37 INFO executor.Executor: Finished task 508.0 in stage 3.0
(TID 533). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 537
16/08/17 09:28:37 INFO executor.Executor: Running task 512.0 in stage 3.0
(TID 537)
16/08/17 09:28:37 INFO executor.Executor: Finished task 509.0 in stage 3.0
(TID 534). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 538
16/08/17 09:28:37 INFO executor.Executor: Finished task 510.0 in stage 3.0
(TID 535). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 513.0 in stage 3.0
(TID 538)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 539
16/08/17 09:28:37 INFO executor.Executor: Running task 514.0 in stage 3.0
(TID 539)
16/08/17 09:28:37 INFO executor.Executor: Finished task 511.0 in stage 3.0
(TID 536). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 512.0 in stage 3.0
(TID 537). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 540
16/08/17 09:28:37 INFO executor.Executor: Running task 515.0 in stage 3.0
(TID 540)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 541
16/08/17 09:28:37 INFO executor.Executor: Finished task 513.0 in stage 3.0
(TID 538). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 516.0 in stage 3.0
(TID 541)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 542
16/08/17 09:28:37 INFO executor.Executor: Finished task 514.0 in stage 3.0
(TID 539). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 517.0 in stage 3.0
(TID 542)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 543
16/08/17 09:28:37 INFO executor.Executor: Finished task 515.0 in stage 3.0
(TID 540). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 518.0 in stage 3.0
(TID 543)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 544
16/08/17 09:28:37 INFO executor.Executor: Running task 519.0 in stage 3.0
(TID 544)
16/08/17 09:28:37 INFO executor.Executor: Finished task 516.0 in stage 3.0
(TID 541). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 517.0 in stage 3.0
(TID 542). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 545
16/08/17 09:28:37 INFO executor.Executor: Running task 520.0 in stage 3.0
(TID 545)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 546
16/08/17 09:28:37 INFO executor.Executor: Running task 521.0 in stage 3.0
(TID 546)
16/08/17 09:28:37 INFO executor.Executor: Finished task 518.0 in stage 3.0
(TID 543). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 519.0 in stage 3.0
(TID 544). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 547
16/08/17 09:28:37 INFO executor.Executor: Running task 522.0 in stage 3.0
(TID 547)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 548
16/08/17 09:28:37 INFO executor.Executor: Running task 523.0 in stage 3.0
(TID 548)
16/08/17 09:28:37 INFO executor.Executor: Finished task 520.0 in stage 3.0
(TID 545). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 549
16/08/17 09:28:37 INFO executor.Executor: Running task 524.0 in stage 3.0
(TID 549)
16/08/17 09:28:37 INFO executor.Executor: Finished task 521.0 in stage 3.0
(TID 546). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 522.0 in stage 3.0
(TID 547). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 550
16/08/17 09:28:37 INFO executor.Executor: Running task 525.0 in stage 3.0
(TID 550)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 551
16/08/17 09:28:37 INFO executor.Executor: Running task 526.0 in stage 3.0
(TID 551)
16/08/17 09:28:37 INFO executor.Executor: Finished task 523.0 in stage 3.0
(TID 548). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 524.0 in stage 3.0
(TID 549). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 552
16/08/17 09:28:37 INFO executor.Executor: Running task 527.0 in stage 3.0
(TID 552)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 553
16/08/17 09:28:37 INFO executor.Executor: Running task 528.0 in stage 3.0
(TID 553)
16/08/17 09:28:37 INFO executor.Executor: Finished task 525.0 in stage 3.0
(TID 550). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 554
16/08/17 09:28:37 INFO executor.Executor: Running task 529.0 in stage 3.0
(TID 554)
16/08/17 09:28:37 INFO executor.Executor: Finished task 526.0 in stage 3.0
(TID 551). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 527.0 in stage 3.0
(TID 552). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 555
16/08/17 09:28:37 INFO executor.Executor: Running task 530.0 in stage 3.0
(TID 555)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 556
16/08/17 09:28:37 INFO executor.Executor: Running task 531.0 in stage 3.0
(TID 556)
16/08/17 09:28:37 INFO executor.Executor: Finished task 528.0 in stage 3.0
(TID 553). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 529.0 in stage 3.0
(TID 554). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 557
16/08/17 09:28:37 INFO executor.Executor: Running task 532.0 in stage 3.0
(TID 557)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 558
16/08/17 09:28:37 INFO executor.Executor: Running task 533.0 in stage 3.0
(TID 558)
16/08/17 09:28:37 INFO executor.Executor: Finished task 530.0 in stage 3.0
(TID 555). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 559
16/08/17 09:28:37 INFO executor.Executor: Running task 534.0 in stage 3.0
(TID 559)
16/08/17 09:28:37 INFO executor.Executor: Finished task 531.0 in stage 3.0
(TID 556). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 532.0 in stage 3.0
(TID 557). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 560
16/08/17 09:28:37 INFO executor.Executor: Running task 535.0 in stage 3.0
(TID 560)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 561
16/08/17 09:28:37 INFO executor.Executor: Running task 536.0 in stage 3.0
(TID 561)
16/08/17 09:28:37 INFO executor.Executor: Finished task 533.0 in stage 3.0
(TID 558). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 562
16/08/17 09:28:37 INFO executor.Executor: Running task 537.0 in stage 3.0
(TID 562)
16/08/17 09:28:37 INFO executor.Executor: Finished task 534.0 in stage 3.0
(TID 559). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 563
16/08/17 09:28:37 INFO executor.Executor: Running task 538.0 in stage 3.0
(TID 563)
16/08/17 09:28:37 INFO executor.Executor: Finished task 535.0 in stage 3.0
(TID 560). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 564
16/08/17 09:28:37 INFO executor.Executor: Running task 539.0 in stage 3.0
(TID 564)
16/08/17 09:28:37 INFO executor.Executor: Finished task 536.0 in stage 3.0
(TID 561). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 537.0 in stage 3.0
(TID 562). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 565
16/08/17 09:28:37 INFO executor.Executor: Running task 540.0 in stage 3.0
(TID 565)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 566
16/08/17 09:28:37 INFO executor.Executor: Running task 541.0 in stage 3.0
(TID 566)
16/08/17 09:28:37 INFO executor.Executor: Finished task 538.0 in stage 3.0
(TID 563). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 567
16/08/17 09:28:37 INFO executor.Executor: Running task 542.0 in stage 3.0
(TID 567)
16/08/17 09:28:37 INFO executor.Executor: Finished task 539.0 in stage 3.0
(TID 564). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 568
16/08/17 09:28:37 INFO executor.Executor: Finished task 540.0 in stage 3.0
(TID 565). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 543.0 in stage 3.0
(TID 568)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 569
16/08/17 09:28:37 INFO executor.Executor: Finished task 541.0 in stage 3.0
(TID 566). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 544.0 in stage 3.0
(TID 569)
16/08/17 09:28:37 INFO executor.Executor: Finished task 542.0 in stage 3.0
(TID 567). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 570
16/08/17 09:28:37 INFO executor.Executor: Running task 545.0 in stage 3.0
(TID 570)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 571
16/08/17 09:28:37 INFO executor.Executor: Running task 546.0 in stage 3.0
(TID 571)
16/08/17 09:28:37 INFO executor.Executor: Finished task 543.0 in stage 3.0
(TID 568). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 572
16/08/17 09:28:37 INFO executor.Executor: Running task 547.0 in stage 3.0
(TID 572)
16/08/17 09:28:37 INFO executor.Executor: Finished task 544.0 in stage 3.0
(TID 569). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 545.0 in stage 3.0
(TID 570). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 573
16/08/17 09:28:37 INFO executor.Executor: Running task 548.0 in stage 3.0
(TID 573)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 574
16/08/17 09:28:37 INFO executor.Executor: Running task 549.0 in stage 3.0
(TID 574)
16/08/17 09:28:37 INFO executor.Executor: Finished task 546.0 in stage 3.0
(TID 571). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 547.0 in stage 3.0
(TID 572). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 575
16/08/17 09:28:37 INFO executor.Executor: Running task 550.0 in stage 3.0
(TID 575)
16/08/17 09:28:37 INFO executor.Executor: Finished task 548.0 in stage 3.0
(TID 573). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 549.0 in stage 3.0
(TID 574). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 576
16/08/17 09:28:37 INFO executor.Executor: Running task 551.0 in stage 3.0
(TID 576)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 577
16/08/17 09:28:37 INFO executor.Executor: Running task 552.0 in stage 3.0
(TID 577)
16/08/17 09:28:37 INFO executor.Executor: Finished task 550.0 in stage 3.0
(TID 575). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 578
16/08/17 09:28:37 INFO executor.Executor: Running task 553.0 in stage 3.0
(TID 578)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 579
16/08/17 09:28:37 INFO executor.Executor: Running task 554.0 in stage 3.0
(TID 579)
16/08/17 09:28:37 INFO executor.Executor: Finished task 551.0 in stage 3.0
(TID 576). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 552.0 in stage 3.0
(TID 577). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 580
16/08/17 09:28:37 INFO executor.Executor: Running task 555.0 in stage 3.0
(TID 580)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 581
16/08/17 09:28:37 INFO executor.Executor: Running task 556.0 in stage 3.0
(TID 581)
16/08/17 09:28:37 INFO executor.Executor: Finished task 553.0 in stage 3.0
(TID 578). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 582
16/08/17 09:28:37 INFO executor.Executor: Running task 557.0 in stage 3.0
(TID 582)
16/08/17 09:28:37 INFO executor.Executor: Finished task 554.0 in stage 3.0
(TID 579). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 555.0 in stage 3.0
(TID 580). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 583
16/08/17 09:28:37 INFO executor.Executor: Running task 558.0 in stage 3.0
(TID 583)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 584
16/08/17 09:28:37 INFO executor.Executor: Running task 559.0 in stage 3.0
(TID 584)
16/08/17 09:28:37 INFO executor.Executor: Finished task 556.0 in stage 3.0
(TID 581). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 557.0 in stage 3.0
(TID 582). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 585
16/08/17 09:28:37 INFO executor.Executor: Running task 560.0 in stage 3.0
(TID 585)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 586
16/08/17 09:28:37 INFO executor.Executor: Running task 561.0 in stage 3.0
(TID 586)
16/08/17 09:28:37 INFO executor.Executor: Finished task 558.0 in stage 3.0
(TID 583). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 587
16/08/17 09:28:37 INFO executor.Executor: Running task 562.0 in stage 3.0
(TID 587)
16/08/17 09:28:37 INFO executor.Executor: Finished task 559.0 in stage 3.0
(TID 584). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 560.0 in stage 3.0
(TID 585). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 588
16/08/17 09:28:37 INFO executor.Executor: Running task 563.0 in stage 3.0
(TID 588)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 589
16/08/17 09:28:37 INFO executor.Executor: Running task 564.0 in stage 3.0
(TID 589)
16/08/17 09:28:37 INFO executor.Executor: Finished task 561.0 in stage 3.0
(TID 586). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 562.0 in stage 3.0
(TID 587). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 590
16/08/17 09:28:37 INFO executor.Executor: Running task 565.0 in stage 3.0
(TID 590)
16/08/17 09:28:37 INFO executor.Executor: Finished task 563.0 in stage 3.0
(TID 588). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 591
16/08/17 09:28:37 INFO executor.Executor: Running task 566.0 in stage 3.0
(TID 591)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 592
16/08/17 09:28:37 INFO executor.Executor: Running task 567.0 in stage 3.0
(TID 592)
16/08/17 09:28:37 INFO executor.Executor: Finished task 564.0 in stage 3.0
(TID 589). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 565.0 in stage 3.0
(TID 590). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 593
16/08/17 09:28:37 INFO executor.Executor: Running task 568.0 in stage 3.0
(TID 593)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 594
16/08/17 09:28:37 INFO executor.Executor: Running task 569.0 in stage 3.0
(TID 594)
16/08/17 09:28:37 INFO executor.Executor: Finished task 566.0 in stage 3.0
(TID 591). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 567.0 in stage 3.0
(TID 592). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 595
16/08/17 09:28:37 INFO executor.Executor: Running task 570.0 in stage 3.0
(TID 595)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 596
16/08/17 09:28:37 INFO executor.Executor: Running task 571.0 in stage 3.0
(TID 596)
16/08/17 09:28:37 INFO executor.Executor: Finished task 568.0 in stage 3.0
(TID 593). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 597
16/08/17 09:28:37 INFO executor.Executor: Running task 572.0 in stage 3.0
(TID 597)
16/08/17 09:28:37 INFO executor.Executor: Finished task 569.0 in stage 3.0
(TID 594). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 570.0 in stage 3.0
(TID 595). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 598
16/08/17 09:28:37 INFO executor.Executor: Running task 573.0 in stage 3.0
(TID 598)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 599
16/08/17 09:28:37 INFO executor.Executor: Running task 574.0 in stage 3.0
(TID 599)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 600
16/08/17 09:28:37 INFO executor.Executor: Running task 575.0 in stage 3.0
(TID 600)
16/08/17 09:28:37 INFO executor.Executor: Finished task 571.0 in stage 3.0
(TID 596). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 572.0 in stage 3.0
(TID 597). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 601
16/08/17 09:28:37 INFO executor.Executor: Finished task 573.0 in stage 3.0
(TID 598). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 576.0 in stage 3.0
(TID 601)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 602
16/08/17 09:28:37 INFO executor.Executor: Finished task 574.0 in stage 3.0
(TID 599). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 577.0 in stage 3.0
(TID 602)
16/08/17 09:28:37 INFO executor.Executor: Finished task 575.0 in stage 3.0
(TID 600). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 603
16/08/17 09:28:37 INFO executor.Executor: Running task 578.0 in stage 3.0
(TID 603)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 604
16/08/17 09:28:37 INFO executor.Executor: Running task 579.0 in stage 3.0
(TID 604)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 605
16/08/17 09:28:37 INFO executor.Executor: Finished task 576.0 in stage 3.0
(TID 601). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 580.0 in stage 3.0
(TID 605)
16/08/17 09:28:37 INFO executor.Executor: Finished task 577.0 in stage 3.0
(TID 602). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 578.0 in stage 3.0
(TID 603). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 606
16/08/17 09:28:37 INFO executor.Executor: Running task 581.0 in stage 3.0
(TID 606)
16/08/17 09:28:37 INFO executor.Executor: Finished task 579.0 in stage 3.0
(TID 604). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 607
16/08/17 09:28:37 INFO executor.Executor: Running task 582.0 in stage 3.0
(TID 607)
16/08/17 09:28:37 INFO executor.Executor: Finished task 580.0 in stage 3.0
(TID 605). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 608
16/08/17 09:28:37 INFO executor.Executor: Running task 583.0 in stage 3.0
(TID 608)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 609
16/08/17 09:28:37 INFO executor.Executor: Finished task 581.0 in stage 3.0
(TID 606). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 584.0 in stage 3.0
(TID 609)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 610
16/08/17 09:28:37 INFO executor.Executor: Running task 585.0 in stage 3.0
(TID 610)
16/08/17 09:28:37 INFO executor.Executor: Finished task 582.0 in stage 3.0
(TID 607). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 583.0 in stage 3.0
(TID 608). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 611
16/08/17 09:28:37 INFO executor.Executor: Running task 586.0 in stage 3.0
(TID 611)
16/08/17 09:28:37 INFO executor.Executor: Finished task 584.0 in stage 3.0
(TID 609). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 612
16/08/17 09:28:37 INFO executor.Executor: Running task 587.0 in stage 3.0
(TID 612)
16/08/17 09:28:37 INFO executor.Executor: Finished task 585.0 in stage 3.0
(TID 610). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 613
16/08/17 09:28:37 INFO executor.Executor: Running task 588.0 in stage 3.0
(TID 613)
16/08/17 09:28:37 INFO executor.Executor: Finished task 586.0 in stage 3.0
(TID 611). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 614
16/08/17 09:28:37 INFO executor.Executor: Running task 589.0 in stage 3.0
(TID 614)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 615
16/08/17 09:28:37 INFO executor.Executor: Running task 590.0 in stage 3.0
(TID 615)
16/08/17 09:28:37 INFO executor.Executor: Finished task 587.0 in stage 3.0
(TID 612). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 588.0 in stage 3.0
(TID 613). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 616
16/08/17 09:28:37 INFO executor.Executor: Running task 591.0 in stage 3.0
(TID 616)
16/08/17 09:28:37 INFO executor.Executor: Finished task 589.0 in stage 3.0
(TID 614). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 617
16/08/17 09:28:37 INFO executor.Executor: Running task 592.0 in stage 3.0
(TID 617)
16/08/17 09:28:37 INFO executor.Executor: Finished task 590.0 in stage 3.0
(TID 615). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 618
16/08/17 09:28:37 INFO executor.Executor: Running task 593.0 in stage 3.0
(TID 618)
16/08/17 09:28:37 INFO executor.Executor: Finished task 591.0 in stage 3.0
(TID 616). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 619
16/08/17 09:28:37 INFO executor.Executor: Running task 594.0 in stage 3.0
(TID 619)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 620
16/08/17 09:28:37 INFO executor.Executor: Running task 595.0 in stage 3.0
(TID 620)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 621
16/08/17 09:28:37 INFO executor.Executor: Finished task 592.0 in stage 3.0
(TID 617). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 596.0 in stage 3.0
(TID 621)
16/08/17 09:28:37 INFO executor.Executor: Finished task 593.0 in stage 3.0
(TID 618). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 594.0 in stage 3.0
(TID 619). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 622
16/08/17 09:28:37 INFO executor.Executor: Running task 597.0 in stage 3.0
(TID 622)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 623
16/08/17 09:28:37 INFO executor.Executor: Running task 598.0 in stage 3.0
(TID 623)
16/08/17 09:28:37 INFO executor.Executor: Finished task 595.0 in stage 3.0
(TID 620). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 596.0 in stage 3.0
(TID 621). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 624
16/08/17 09:28:37 INFO executor.Executor: Running task 599.0 in stage 3.0
(TID 624)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 625
16/08/17 09:28:37 INFO executor.Executor: Running task 600.0 in stage 3.0
(TID 625)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 626
16/08/17 09:28:37 INFO executor.Executor: Finished task 597.0 in stage 3.0
(TID 622). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 601.0 in stage 3.0
(TID 626)
16/08/17 09:28:37 INFO executor.Executor: Finished task 598.0 in stage 3.0
(TID 623). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 599.0 in stage 3.0
(TID 624). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 627
16/08/17 09:28:37 INFO executor.Executor: Running task 602.0 in stage 3.0
(TID 627)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 628
16/08/17 09:28:37 INFO executor.Executor: Running task 603.0 in stage 3.0
(TID 628)
16/08/17 09:28:37 INFO executor.Executor: Finished task 600.0 in stage 3.0
(TID 625). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 601.0 in stage 3.0
(TID 626). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 629
16/08/17 09:28:37 INFO executor.Executor: Running task 604.0 in stage 3.0
(TID 629)
16/08/17 09:28:37 INFO executor.Executor: Finished task 602.0 in stage 3.0
(TID 627). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 630
16/08/17 09:28:37 INFO executor.Executor: Running task 605.0 in stage 3.0
(TID 630)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 631
16/08/17 09:28:37 INFO executor.Executor: Finished task 603.0 in stage 3.0
(TID 628). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Running task 606.0 in stage 3.0
(TID 631)
16/08/17 09:28:37 INFO executor.Executor: Finished task 604.0 in stage 3.0
(TID 629). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 632
16/08/17 09:28:37 INFO executor.Executor: Running task 607.0 in stage 3.0
(TID 632)
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 633
16/08/17 09:28:37 INFO executor.Executor: Running task 608.0 in stage 3.0
(TID 633)
16/08/17 09:28:37 INFO executor.Executor: Finished task 605.0 in stage 3.0
(TID 630). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.Executor: Finished task 606.0 in stage 3.0
(TID 631). 903 bytes result sent to driver
16/08/17 09:28:37 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 634
16/08/17 09:28:38 INFO executor.Executor: Running task 609.0 in stage 3.0
(TID 634)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 635
16/08/17 09:28:38 INFO executor.Executor: Running task 610.0 in stage 3.0
(TID 635)
16/08/17 09:28:38 INFO executor.Executor: Finished task 607.0 in stage 3.0
(TID 632). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 636
16/08/17 09:28:38 INFO executor.Executor: Running task 611.0 in stage 3.0
(TID 636)
16/08/17 09:28:38 INFO executor.Executor: Finished task 608.0 in stage 3.0
(TID 633). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 609.0 in stage 3.0
(TID 634). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 637
16/08/17 09:28:38 INFO executor.Executor: Running task 612.0 in stage 3.0
(TID 637)
16/08/17 09:28:38 INFO executor.Executor: Finished task 610.0 in stage 3.0
(TID 635). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 638
16/08/17 09:28:38 INFO executor.Executor: Running task 613.0 in stage 3.0
(TID 638)
16/08/17 09:28:38 INFO executor.Executor: Finished task 611.0 in stage 3.0
(TID 636). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 639
16/08/17 09:28:38 INFO executor.Executor: Running task 614.0 in stage 3.0
(TID 639)
16/08/17 09:28:38 INFO executor.Executor: Finished task 612.0 in stage 3.0
(TID 637). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 640
16/08/17 09:28:38 INFO executor.Executor: Running task 615.0 in stage 3.0
(TID 640)
16/08/17 09:28:38 INFO executor.Executor: Finished task 613.0 in stage 3.0
(TID 638). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 641
16/08/17 09:28:38 INFO executor.Executor: Running task 616.0 in stage 3.0
(TID 641)
16/08/17 09:28:38 INFO executor.Executor: Finished task 614.0 in stage 3.0
(TID 639). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 642
16/08/17 09:28:38 INFO executor.Executor: Running task 617.0 in stage 3.0
(TID 642)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 643
16/08/17 09:28:38 INFO executor.Executor: Running task 618.0 in stage 3.0
(TID 643)
16/08/17 09:28:38 INFO executor.Executor: Finished task 615.0 in stage 3.0
(TID 640). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 644
16/08/17 09:28:38 INFO executor.Executor: Finished task 616.0 in stage 3.0
(TID 641). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 619.0 in stage 3.0
(TID 644)
16/08/17 09:28:38 INFO executor.Executor: Finished task 617.0 in stage 3.0
(TID 642). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 645
16/08/17 09:28:38 INFO executor.Executor: Running task 620.0 in stage 3.0
(TID 645)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 646
16/08/17 09:28:38 INFO executor.Executor: Running task 621.0 in stage 3.0
(TID 646)
16/08/17 09:28:38 INFO executor.Executor: Finished task 618.0 in stage 3.0
(TID 643). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 619.0 in stage 3.0
(TID 644). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 647
16/08/17 09:28:38 INFO executor.Executor: Running task 622.0 in stage 3.0
(TID 647)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 648
16/08/17 09:28:38 INFO executor.Executor: Running task 623.0 in stage 3.0
(TID 648)
16/08/17 09:28:38 INFO executor.Executor: Finished task 620.0 in stage 3.0
(TID 645). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 621.0 in stage 3.0
(TID 646). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 649
16/08/17 09:28:38 INFO executor.Executor: Running task 624.0 in stage 3.0
(TID 649)
16/08/17 09:28:38 INFO executor.Executor: Finished task 622.0 in stage 3.0
(TID 647). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 650
16/08/17 09:28:38 INFO executor.Executor: Running task 625.0 in stage 3.0
(TID 650)
16/08/17 09:28:38 INFO executor.Executor: Finished task 623.0 in stage 3.0
(TID 648). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 651
16/08/17 09:28:38 INFO executor.Executor: Running task 626.0 in stage 3.0
(TID 651)
16/08/17 09:28:38 INFO executor.Executor: Finished task 624.0 in stage 3.0
(TID 649). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 652
16/08/17 09:28:38 INFO executor.Executor: Running task 627.0 in stage 3.0
(TID 652)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 653
16/08/17 09:28:38 INFO executor.Executor: Running task 628.0 in stage 3.0
(TID 653)
16/08/17 09:28:38 INFO executor.Executor: Finished task 625.0 in stage 3.0
(TID 650). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 654
16/08/17 09:28:38 INFO executor.Executor: Running task 629.0 in stage 3.0
(TID 654)
16/08/17 09:28:38 INFO executor.Executor: Finished task 626.0 in stage 3.0
(TID 651). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 627.0 in stage 3.0
(TID 652). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 655
16/08/17 09:28:38 INFO executor.Executor: Running task 630.0 in stage 3.0
(TID 655)
16/08/17 09:28:38 INFO executor.Executor: Finished task 628.0 in stage 3.0
(TID 653). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 656
16/08/17 09:28:38 INFO executor.Executor: Running task 631.0 in stage 3.0
(TID 656)
16/08/17 09:28:38 INFO executor.Executor: Finished task 629.0 in stage 3.0
(TID 654). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 657
16/08/17 09:28:38 INFO executor.Executor: Running task 632.0 in stage 3.0
(TID 657)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 658
16/08/17 09:28:38 INFO executor.Executor: Running task 633.0 in stage 3.0
(TID 658)
16/08/17 09:28:38 INFO executor.Executor: Finished task 630.0 in stage 3.0
(TID 655). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 659
16/08/17 09:28:38 INFO executor.Executor: Running task 634.0 in stage 3.0
(TID 659)
16/08/17 09:28:38 INFO executor.Executor: Finished task 631.0 in stage 3.0
(TID 656). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 632.0 in stage 3.0
(TID 657). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 660
16/08/17 09:28:38 INFO executor.Executor: Finished task 633.0 in stage 3.0
(TID 658). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 635.0 in stage 3.0
(TID 660)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 661
16/08/17 09:28:38 INFO executor.Executor: Running task 636.0 in stage 3.0
(TID 661)
16/08/17 09:28:38 INFO executor.Executor: Finished task 634.0 in stage 3.0
(TID 659). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 662
16/08/17 09:28:38 INFO executor.Executor: Running task 637.0 in stage 3.0
(TID 662)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 663
16/08/17 09:28:38 INFO executor.Executor: Running task 638.0 in stage 3.0
(TID 663)
16/08/17 09:28:38 INFO executor.Executor: Finished task 635.0 in stage 3.0
(TID 660). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 664
16/08/17 09:28:38 INFO executor.Executor: Running task 639.0 in stage 3.0
(TID 664)
16/08/17 09:28:38 INFO executor.Executor: Finished task 636.0 in stage 3.0
(TID 661). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 637.0 in stage 3.0
(TID 662). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 665
16/08/17 09:28:38 INFO executor.Executor: Running task 640.0 in stage 3.0
(TID 665)
16/08/17 09:28:38 INFO executor.Executor: Finished task 638.0 in stage 3.0
(TID 663). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 666
16/08/17 09:28:38 INFO executor.Executor: Running task 641.0 in stage 3.0
(TID 666)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 667
16/08/17 09:28:38 INFO executor.Executor: Finished task 639.0 in stage 3.0
(TID 664). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 642.0 in stage 3.0
(TID 667)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 668
16/08/17 09:28:38 INFO executor.Executor: Running task 643.0 in stage 3.0
(TID 668)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 669
16/08/17 09:28:38 INFO executor.Executor: Finished task 640.0 in stage 3.0
(TID 665). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 644.0 in stage 3.0
(TID 669)
16/08/17 09:28:38 INFO executor.Executor: Finished task 641.0 in stage 3.0
(TID 666). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 642.0 in stage 3.0
(TID 667). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 670
16/08/17 09:28:38 INFO executor.Executor: Running task 645.0 in stage 3.0
(TID 670)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 671
16/08/17 09:28:38 INFO executor.Executor: Running task 646.0 in stage 3.0
(TID 671)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 672
16/08/17 09:28:38 INFO executor.Executor: Running task 647.0 in stage 3.0
(TID 672)
16/08/17 09:28:38 INFO executor.Executor: Finished task 643.0 in stage 3.0
(TID 668). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 644.0 in stage 3.0
(TID 669). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 645.0 in stage 3.0
(TID 670). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 673
16/08/17 09:28:38 INFO executor.Executor: Finished task 646.0 in stage 3.0
(TID 671). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 648.0 in stage 3.0
(TID 673)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 674
16/08/17 09:28:38 INFO executor.Executor: Finished task 647.0 in stage 3.0
(TID 672). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 649.0 in stage 3.0
(TID 674)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 675
16/08/17 09:28:38 INFO executor.Executor: Running task 650.0 in stage 3.0
(TID 675)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 676
16/08/17 09:28:38 INFO executor.Executor: Finished task 648.0 in stage 3.0
(TID 673). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 651.0 in stage 3.0
(TID 676)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 677
16/08/17 09:28:38 INFO executor.Executor: Running task 652.0 in stage 3.0
(TID 677)
16/08/17 09:28:38 INFO executor.Executor: Finished task 649.0 in stage 3.0
(TID 674). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 650.0 in stage 3.0
(TID 675). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 678
16/08/17 09:28:38 INFO executor.Executor: Running task 653.0 in stage 3.0
(TID 678)
16/08/17 09:28:38 INFO executor.Executor: Finished task 651.0 in stage 3.0
(TID 676). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 679
16/08/17 09:28:38 INFO executor.Executor: Running task 654.0 in stage 3.0
(TID 679)
16/08/17 09:28:38 INFO executor.Executor: Finished task 652.0 in stage 3.0
(TID 677). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 680
16/08/17 09:28:38 INFO executor.Executor: Running task 655.0 in stage 3.0
(TID 680)
16/08/17 09:28:38 INFO executor.Executor: Finished task 653.0 in stage 3.0
(TID 678). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 681
16/08/17 09:28:38 INFO executor.Executor: Running task 656.0 in stage 3.0
(TID 681)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 682
16/08/17 09:28:38 INFO executor.Executor: Running task 657.0 in stage 3.0
(TID 682)
16/08/17 09:28:38 INFO executor.Executor: Finished task 654.0 in stage 3.0
(TID 679). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 655.0 in stage 3.0
(TID 680). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 683
16/08/17 09:28:38 INFO executor.Executor: Running task 658.0 in stage 3.0
(TID 683)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 684
16/08/17 09:28:38 INFO executor.Executor: Running task 659.0 in stage 3.0
(TID 684)
16/08/17 09:28:38 INFO executor.Executor: Finished task 656.0 in stage 3.0
(TID 681). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 657.0 in stage 3.0
(TID 682). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 685
16/08/17 09:28:38 INFO executor.Executor: Running task 660.0 in stage 3.0
(TID 685)
16/08/17 09:28:38 INFO executor.Executor: Finished task 658.0 in stage 3.0
(TID 683). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 686
16/08/17 09:28:38 INFO executor.Executor: Running task 661.0 in stage 3.0
(TID 686)
16/08/17 09:28:38 INFO executor.Executor: Finished task 659.0 in stage 3.0
(TID 684). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 687
16/08/17 09:28:38 INFO executor.Executor: Running task 662.0 in stage 3.0
(TID 687)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 688
16/08/17 09:28:38 INFO executor.Executor: Running task 663.0 in stage 3.0
(TID 688)
16/08/17 09:28:38 INFO executor.Executor: Finished task 660.0 in stage 3.0
(TID 685). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 689
16/08/17 09:28:38 INFO executor.Executor: Finished task 661.0 in stage 3.0
(TID 686). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 664.0 in stage 3.0
(TID 689)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 690
16/08/17 09:28:38 INFO executor.Executor: Finished task 662.0 in stage 3.0
(TID 687). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 665.0 in stage 3.0
(TID 690)
16/08/17 09:28:38 INFO executor.Executor: Finished task 663.0 in stage 3.0
(TID 688). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 691
16/08/17 09:28:38 INFO executor.Executor: Running task 666.0 in stage 3.0
(TID 691)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 692
16/08/17 09:28:38 INFO executor.Executor: Running task 667.0 in stage 3.0
(TID 692)
16/08/17 09:28:38 INFO executor.Executor: Finished task 664.0 in stage 3.0
(TID 689). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 693
16/08/17 09:28:38 INFO executor.Executor: Running task 668.0 in stage 3.0
(TID 693)
16/08/17 09:28:38 INFO executor.Executor: Finished task 665.0 in stage 3.0
(TID 690). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 694
16/08/17 09:28:38 INFO executor.Executor: Running task 669.0 in stage 3.0
(TID 694)
16/08/17 09:28:38 INFO executor.Executor: Finished task 667.0 in stage 3.0
(TID 692). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 695
16/08/17 09:28:38 INFO executor.Executor: Running task 670.0 in stage 3.0
(TID 695)
16/08/17 09:28:38 INFO executor.Executor: Finished task 666.0 in stage 3.0
(TID 691). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 668.0 in stage 3.0
(TID 693). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 696
16/08/17 09:28:38 INFO executor.Executor: Running task 671.0 in stage 3.0
(TID 696)
16/08/17 09:28:38 INFO executor.Executor: Finished task 669.0 in stage 3.0
(TID 694). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 697
16/08/17 09:28:38 INFO executor.Executor: Running task 672.0 in stage 3.0
(TID 697)
16/08/17 09:28:38 INFO executor.Executor: Finished task 670.0 in stage 3.0
(TID 695). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 698
16/08/17 09:28:38 INFO executor.Executor: Running task 673.0 in stage 3.0
(TID 698)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 699
16/08/17 09:28:38 INFO executor.Executor: Running task 674.0 in stage 3.0
(TID 699)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 700
16/08/17 09:28:38 INFO executor.Executor: Running task 675.0 in stage 3.0
(TID 700)
16/08/17 09:28:38 INFO executor.Executor: Finished task 671.0 in stage 3.0
(TID 696). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 673.0 in stage 3.0
(TID 698). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 672.0 in stage 3.0
(TID 697). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 674.0 in stage 3.0
(TID 699). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 701
16/08/17 09:28:38 INFO executor.Executor: Running task 676.0 in stage 3.0
(TID 701)
16/08/17 09:28:38 INFO executor.Executor: Finished task 675.0 in stage 3.0
(TID 700). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 702
16/08/17 09:28:38 INFO executor.Executor: Running task 677.0 in stage 3.0
(TID 702)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 703
16/08/17 09:28:38 INFO executor.Executor: Running task 678.0 in stage 3.0
(TID 703)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 704
16/08/17 09:28:38 INFO executor.Executor: Running task 679.0 in stage 3.0
(TID 704)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 705
16/08/17 09:28:38 INFO executor.Executor: Running task 680.0 in stage 3.0
(TID 705)
16/08/17 09:28:38 INFO executor.Executor: Finished task 676.0 in stage 3.0
(TID 701). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 677.0 in stage 3.0
(TID 702). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 706
16/08/17 09:28:38 INFO executor.Executor: Running task 681.0 in stage 3.0
(TID 706)
16/08/17 09:28:38 INFO executor.Executor: Finished task 679.0 in stage 3.0
(TID 704). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 707
16/08/17 09:28:38 INFO executor.Executor: Running task 682.0 in stage 3.0
(TID 707)
16/08/17 09:28:38 INFO executor.Executor: Finished task 678.0 in stage 3.0
(TID 703). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 680.0 in stage 3.0
(TID 705). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 708
16/08/17 09:28:38 INFO executor.Executor: Running task 683.0 in stage 3.0
(TID 708)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 709
16/08/17 09:28:38 INFO executor.Executor: Running task 684.0 in stage 3.0
(TID 709)
16/08/17 09:28:38 INFO executor.Executor: Finished task 681.0 in stage 3.0
(TID 706). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 682.0 in stage 3.0
(TID 707). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 710
16/08/17 09:28:38 INFO executor.Executor: Running task 685.0 in stage 3.0
(TID 710)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 711
16/08/17 09:28:38 INFO executor.Executor: Running task 686.0 in stage 3.0
(TID 711)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 712
16/08/17 09:28:38 INFO executor.Executor: Running task 687.0 in stage 3.0
(TID 712)
16/08/17 09:28:38 INFO executor.Executor: Finished task 683.0 in stage 3.0
(TID 708). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 685.0 in stage 3.0
(TID 710). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 684.0 in stage 3.0
(TID 709). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 686.0 in stage 3.0
(TID 711). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 687.0 in stage 3.0
(TID 712). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 713
16/08/17 09:28:38 INFO executor.Executor: Running task 688.0 in stage 3.0
(TID 713)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 714
16/08/17 09:28:38 INFO executor.Executor: Running task 689.0 in stage 3.0
(TID 714)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 715
16/08/17 09:28:38 INFO executor.Executor: Running task 690.0 in stage 3.0
(TID 715)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 716
16/08/17 09:28:38 INFO executor.Executor: Running task 691.0 in stage 3.0
(TID 716)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 717
16/08/17 09:28:38 INFO executor.Executor: Running task 692.0 in stage 3.0
(TID 717)
16/08/17 09:28:38 INFO executor.Executor: Finished task 688.0 in stage 3.0
(TID 713). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 689.0 in stage 3.0
(TID 714). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 690.0 in stage 3.0
(TID 715). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 691.0 in stage 3.0
(TID 716). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 718
16/08/17 09:28:38 INFO executor.Executor: Running task 693.0 in stage 3.0
(TID 718)
16/08/17 09:28:38 INFO executor.Executor: Finished task 692.0 in stage 3.0
(TID 717). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 719
16/08/17 09:28:38 INFO executor.Executor: Running task 694.0 in stage 3.0
(TID 719)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 720
16/08/17 09:28:38 INFO executor.Executor: Running task 695.0 in stage 3.0
(TID 720)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 721
16/08/17 09:28:38 INFO executor.Executor: Running task 696.0 in stage 3.0
(TID 721)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 722
16/08/17 09:28:38 INFO executor.Executor: Finished task 693.0 in stage 3.0
(TID 718). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 697.0 in stage 3.0
(TID 722)
16/08/17 09:28:38 INFO executor.Executor: Finished task 694.0 in stage 3.0
(TID 719). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 695.0 in stage 3.0
(TID 720). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 723
16/08/17 09:28:38 INFO executor.Executor: Running task 698.0 in stage 3.0
(TID 723)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 724
16/08/17 09:28:38 INFO executor.Executor: Finished task 696.0 in stage 3.0
(TID 721). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 699.0 in stage 3.0
(TID 724)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 725
16/08/17 09:28:38 INFO executor.Executor: Finished task 697.0 in stage 3.0
(TID 722). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 700.0 in stage 3.0
(TID 725)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 726
16/08/17 09:28:38 INFO executor.Executor: Running task 701.0 in stage 3.0
(TID 726)
16/08/17 09:28:38 INFO executor.Executor: Finished task 698.0 in stage 3.0
(TID 723). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 727
16/08/17 09:28:38 INFO executor.Executor: Running task 702.0 in stage 3.0
(TID 727)
16/08/17 09:28:38 INFO executor.Executor: Finished task 699.0 in stage 3.0
(TID 724). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 700.0 in stage 3.0
(TID 725). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 728
16/08/17 09:28:38 INFO executor.Executor: Running task 703.0 in stage 3.0
(TID 728)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 729
16/08/17 09:28:38 INFO executor.Executor: Finished task 701.0 in stage 3.0
(TID 726). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 704.0 in stage 3.0
(TID 729)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 730
16/08/17 09:28:38 INFO executor.Executor: Running task 705.0 in stage 3.0
(TID 730)
16/08/17 09:28:38 INFO executor.Executor: Finished task 702.0 in stage 3.0
(TID 727). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 703.0 in stage 3.0
(TID 728). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 731
16/08/17 09:28:38 INFO executor.Executor: Running task 706.0 in stage 3.0
(TID 731)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 732
16/08/17 09:28:38 INFO executor.Executor: Running task 707.0 in stage 3.0
(TID 732)
16/08/17 09:28:38 INFO executor.Executor: Finished task 704.0 in stage 3.0
(TID 729). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 705.0 in stage 3.0
(TID 730). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 733
16/08/17 09:28:38 INFO executor.Executor: Running task 708.0 in stage 3.0
(TID 733)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 734
16/08/17 09:28:38 INFO executor.Executor: Running task 709.0 in stage 3.0
(TID 734)
16/08/17 09:28:38 INFO executor.Executor: Finished task 706.0 in stage 3.0
(TID 731). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 735
16/08/17 09:28:38 INFO executor.Executor: Running task 710.0 in stage 3.0
(TID 735)
16/08/17 09:28:38 INFO executor.Executor: Finished task 707.0 in stage 3.0
(TID 732). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 736
16/08/17 09:28:38 INFO executor.Executor: Finished task 708.0 in stage 3.0
(TID 733). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 711.0 in stage 3.0
(TID 736)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 737
16/08/17 09:28:38 INFO executor.Executor: Finished task 709.0 in stage 3.0
(TID 734). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 712.0 in stage 3.0
(TID 737)
16/08/17 09:28:38 INFO executor.Executor: Finished task 710.0 in stage 3.0
(TID 735). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 738
16/08/17 09:28:38 INFO executor.Executor: Running task 713.0 in stage 3.0
(TID 738)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 739
16/08/17 09:28:38 INFO executor.Executor: Running task 714.0 in stage 3.0
(TID 739)
16/08/17 09:28:38 INFO executor.Executor: Finished task 711.0 in stage 3.0
(TID 736). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 740
16/08/17 09:28:38 INFO executor.Executor: Running task 715.0 in stage 3.0
(TID 740)
16/08/17 09:28:38 INFO executor.Executor: Finished task 712.0 in stage 3.0
(TID 737). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 741
16/08/17 09:28:38 INFO executor.Executor: Running task 716.0 in stage 3.0
(TID 741)
16/08/17 09:28:38 INFO executor.Executor: Finished task 713.0 in stage 3.0
(TID 738). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 742
16/08/17 09:28:38 INFO executor.Executor: Running task 717.0 in stage 3.0
(TID 742)
16/08/17 09:28:38 INFO executor.Executor: Finished task 714.0 in stage 3.0
(TID 739). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 715.0 in stage 3.0
(TID 740). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 743
16/08/17 09:28:38 INFO executor.Executor: Running task 718.0 in stage 3.0
(TID 743)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 744
16/08/17 09:28:38 INFO executor.Executor: Running task 719.0 in stage 3.0
(TID 744)
16/08/17 09:28:38 INFO executor.Executor: Finished task 716.0 in stage 3.0
(TID 741). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 745
16/08/17 09:28:38 INFO executor.Executor: Running task 720.0 in stage 3.0
(TID 745)
16/08/17 09:28:38 INFO executor.Executor: Finished task 717.0 in stage 3.0
(TID 742). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 746
16/08/17 09:28:38 INFO executor.Executor: Running task 721.0 in stage 3.0
(TID 746)
16/08/17 09:28:38 INFO executor.Executor: Finished task 718.0 in stage 3.0
(TID 743). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 747
16/08/17 09:28:38 INFO executor.Executor: Running task 722.0 in stage 3.0
(TID 747)
16/08/17 09:28:38 INFO executor.Executor: Finished task 719.0 in stage 3.0
(TID 744). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 720.0 in stage 3.0
(TID 745). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 748
16/08/17 09:28:38 INFO executor.Executor: Running task 723.0 in stage 3.0
(TID 748)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 749
16/08/17 09:28:38 INFO executor.Executor: Running task 724.0 in stage 3.0
(TID 749)
16/08/17 09:28:38 INFO executor.Executor: Finished task 721.0 in stage 3.0
(TID 746). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 750
16/08/17 09:28:38 INFO executor.Executor: Running task 725.0 in stage 3.0
(TID 750)
16/08/17 09:28:38 INFO executor.Executor: Finished task 722.0 in stage 3.0
(TID 747). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 751
16/08/17 09:28:38 INFO executor.Executor: Finished task 723.0 in stage 3.0
(TID 748). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 726.0 in stage 3.0
(TID 751)
16/08/17 09:28:38 INFO executor.Executor: Finished task 724.0 in stage 3.0
(TID 749). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 752
16/08/17 09:28:38 INFO executor.Executor: Running task 727.0 in stage 3.0
(TID 752)
16/08/17 09:28:38 INFO executor.Executor: Finished task 725.0 in stage 3.0
(TID 750). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 753
16/08/17 09:28:38 INFO executor.Executor: Running task 728.0 in stage 3.0
(TID 753)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 754
16/08/17 09:28:38 INFO executor.Executor: Running task 729.0 in stage 3.0
(TID 754)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 755
16/08/17 09:28:38 INFO executor.Executor: Finished task 726.0 in stage 3.0
(TID 751). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 730.0 in stage 3.0
(TID 755)
16/08/17 09:28:38 INFO executor.Executor: Finished task 727.0 in stage 3.0
(TID 752). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 756
16/08/17 09:28:38 INFO executor.Executor: Running task 731.0 in stage 3.0
(TID 756)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 757
16/08/17 09:28:38 INFO executor.Executor: Running task 732.0 in stage 3.0
(TID 757)
16/08/17 09:28:38 INFO executor.Executor: Finished task 728.0 in stage 3.0
(TID 753). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 729.0 in stage 3.0
(TID 754). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 730.0 in stage 3.0
(TID 755). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 758
16/08/17 09:28:38 INFO executor.Executor: Finished task 731.0 in stage 3.0
(TID 756). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 733.0 in stage 3.0
(TID 758)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 759
16/08/17 09:28:38 INFO executor.Executor: Running task 734.0 in stage 3.0
(TID 759)
16/08/17 09:28:38 INFO executor.Executor: Finished task 732.0 in stage 3.0
(TID 757). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 760
16/08/17 09:28:38 INFO executor.Executor: Running task 735.0 in stage 3.0
(TID 760)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 761
16/08/17 09:28:38 INFO executor.Executor: Running task 736.0 in stage 3.0
(TID 761)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 762
16/08/17 09:28:38 INFO executor.Executor: Running task 737.0 in stage 3.0
(TID 762)
16/08/17 09:28:38 INFO executor.Executor: Finished task 733.0 in stage 3.0
(TID 758). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 734.0 in stage 3.0
(TID 759). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 735.0 in stage 3.0
(TID 760). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 736.0 in stage 3.0
(TID 761). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 763
16/08/17 09:28:38 INFO executor.Executor: Running task 738.0 in stage 3.0
(TID 763)
16/08/17 09:28:38 INFO executor.Executor: Finished task 737.0 in stage 3.0
(TID 762). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 764
16/08/17 09:28:38 INFO executor.Executor: Running task 739.0 in stage 3.0
(TID 764)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 765
16/08/17 09:28:38 INFO executor.Executor: Running task 740.0 in stage 3.0
(TID 765)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 766
16/08/17 09:28:38 INFO executor.Executor: Running task 741.0 in stage 3.0
(TID 766)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 767
16/08/17 09:28:38 INFO executor.Executor: Running task 742.0 in stage 3.0
(TID 767)
16/08/17 09:28:38 INFO executor.Executor: Finished task 738.0 in stage 3.0
(TID 763). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 739.0 in stage 3.0
(TID 764). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 740.0 in stage 3.0
(TID 765). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 768
16/08/17 09:28:38 INFO executor.Executor: Finished task 741.0 in stage 3.0
(TID 766). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 743.0 in stage 3.0
(TID 768)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 769
16/08/17 09:28:38 INFO executor.Executor: Running task 744.0 in stage 3.0
(TID 769)
16/08/17 09:28:38 INFO executor.Executor: Finished task 742.0 in stage 3.0
(TID 767). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 770
16/08/17 09:28:38 INFO executor.Executor: Running task 745.0 in stage 3.0
(TID 770)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 771
16/08/17 09:28:38 INFO executor.Executor: Running task 746.0 in stage 3.0
(TID 771)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 772
16/08/17 09:28:38 INFO executor.Executor: Finished task 743.0 in stage 3.0
(TID 768). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 747.0 in stage 3.0
(TID 772)
16/08/17 09:28:38 INFO executor.Executor: Finished task 744.0 in stage 3.0
(TID 769). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 773
16/08/17 09:28:38 INFO executor.Executor: Running task 748.0 in stage 3.0
(TID 773)
16/08/17 09:28:38 INFO executor.Executor: Finished task 745.0 in stage 3.0
(TID 770). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 774
16/08/17 09:28:38 INFO executor.Executor: Finished task 746.0 in stage 3.0
(TID 771). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 749.0 in stage 3.0
(TID 774)
16/08/17 09:28:38 INFO executor.Executor: Finished task 747.0 in stage 3.0
(TID 772). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 775
16/08/17 09:28:38 INFO executor.Executor: Running task 750.0 in stage 3.0
(TID 775)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 776
16/08/17 09:28:38 INFO executor.Executor: Running task 751.0 in stage 3.0
(TID 776)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 777
16/08/17 09:28:38 INFO executor.Executor: Finished task 748.0 in stage 3.0
(TID 773). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 752.0 in stage 3.0
(TID 777)
16/08/17 09:28:38 INFO executor.Executor: Finished task 749.0 in stage 3.0
(TID 774). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 778
16/08/17 09:28:38 INFO executor.Executor: Running task 753.0 in stage 3.0
(TID 778)
16/08/17 09:28:38 INFO executor.Executor: Finished task 750.0 in stage 3.0
(TID 775). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 779
16/08/17 09:28:38 INFO executor.Executor: Running task 754.0 in stage 3.0
(TID 779)
16/08/17 09:28:38 INFO executor.Executor: Finished task 751.0 in stage 3.0
(TID 776). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 752.0 in stage 3.0
(TID 777). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 780
16/08/17 09:28:38 INFO executor.Executor: Running task 755.0 in stage 3.0
(TID 780)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 781
16/08/17 09:28:38 INFO executor.Executor: Running task 756.0 in stage 3.0
(TID 781)
16/08/17 09:28:38 INFO executor.Executor: Finished task 753.0 in stage 3.0
(TID 778). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 782
16/08/17 09:28:38 INFO executor.Executor: Finished task 754.0 in stage 3.0
(TID 779). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 757.0 in stage 3.0
(TID 782)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 783
16/08/17 09:28:38 INFO executor.Executor: Running task 758.0 in stage 3.0
(TID 783)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 784
16/08/17 09:28:38 INFO executor.Executor: Running task 759.0 in stage 3.0
(TID 784)
16/08/17 09:28:38 INFO executor.Executor: Finished task 755.0 in stage 3.0
(TID 780). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 756.0 in stage 3.0
(TID 781). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 757.0 in stage 3.0
(TID 782). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 785
16/08/17 09:28:38 INFO executor.Executor: Running task 760.0 in stage 3.0
(TID 785)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 786
16/08/17 09:28:38 INFO executor.Executor: Running task 761.0 in stage 3.0
(TID 786)
16/08/17 09:28:38 INFO executor.Executor: Finished task 758.0 in stage 3.0
(TID 783). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 787
16/08/17 09:28:38 INFO executor.Executor: Running task 762.0 in stage 3.0
(TID 787)
16/08/17 09:28:38 INFO executor.Executor: Finished task 759.0 in stage 3.0
(TID 784). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 788
16/08/17 09:28:38 INFO executor.Executor: Running task 763.0 in stage 3.0
(TID 788)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 789
16/08/17 09:28:38 INFO executor.Executor: Finished task 760.0 in stage 3.0
(TID 785). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 764.0 in stage 3.0
(TID 789)
16/08/17 09:28:38 INFO executor.Executor: Finished task 761.0 in stage 3.0
(TID 786). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 762.0 in stage 3.0
(TID 787). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 790
16/08/17 09:28:38 INFO executor.Executor: Running task 765.0 in stage 3.0
(TID 790)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 791
16/08/17 09:28:38 INFO executor.Executor: Running task 766.0 in stage 3.0
(TID 791)
16/08/17 09:28:38 INFO executor.Executor: Finished task 763.0 in stage 3.0
(TID 788). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 792
16/08/17 09:28:38 INFO executor.Executor: Running task 767.0 in stage 3.0
(TID 792)
16/08/17 09:28:38 INFO executor.Executor: Finished task 764.0 in stage 3.0
(TID 789). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 765.0 in stage 3.0
(TID 790). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 793
16/08/17 09:28:38 INFO executor.Executor: Running task 768.0 in stage 3.0
(TID 793)
16/08/17 09:28:38 INFO executor.Executor: Finished task 766.0 in stage 3.0
(TID 791). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 794
16/08/17 09:28:38 INFO executor.Executor: Running task 769.0 in stage 3.0
(TID 794)
16/08/17 09:28:38 INFO executor.Executor: Finished task 767.0 in stage 3.0
(TID 792). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 795
16/08/17 09:28:38 INFO executor.Executor: Running task 770.0 in stage 3.0
(TID 795)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 796
16/08/17 09:28:38 INFO executor.Executor: Running task 771.0 in stage 3.0
(TID 796)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 797
16/08/17 09:28:38 INFO executor.Executor: Running task 772.0 in stage 3.0
(TID 797)
16/08/17 09:28:38 INFO executor.Executor: Finished task 768.0 in stage 3.0
(TID 793). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 769.0 in stage 3.0
(TID 794). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 770.0 in stage 3.0
(TID 795). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 798
16/08/17 09:28:38 INFO executor.Executor: Running task 773.0 in stage 3.0
(TID 798)
16/08/17 09:28:38 INFO executor.Executor: Finished task 771.0 in stage 3.0
(TID 796). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 799
16/08/17 09:28:38 INFO executor.Executor: Running task 774.0 in stage 3.0
(TID 799)
16/08/17 09:28:38 INFO executor.Executor: Finished task 772.0 in stage 3.0
(TID 797). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 800
16/08/17 09:28:38 INFO executor.Executor: Running task 775.0 in stage 3.0
(TID 800)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 801
16/08/17 09:28:38 INFO executor.Executor: Running task 776.0 in stage 3.0
(TID 801)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 802
16/08/17 09:28:38 INFO executor.Executor: Running task 777.0 in stage 3.0
(TID 802)
16/08/17 09:28:38 INFO executor.Executor: Finished task 773.0 in stage 3.0
(TID 798). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 774.0 in stage 3.0
(TID 799). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 803
16/08/17 09:28:38 INFO executor.Executor: Running task 778.0 in stage 3.0
(TID 803)
16/08/17 09:28:38 INFO executor.Executor: Finished task 775.0 in stage 3.0
(TID 800). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 804
16/08/17 09:28:38 INFO executor.Executor: Running task 779.0 in stage 3.0
(TID 804)
16/08/17 09:28:38 INFO executor.Executor: Finished task 776.0 in stage 3.0
(TID 801). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 777.0 in stage 3.0
(TID 802). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 805
16/08/17 09:28:38 INFO executor.Executor: Running task 780.0 in stage 3.0
(TID 805)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 806
16/08/17 09:28:38 INFO executor.Executor: Running task 781.0 in stage 3.0
(TID 806)
16/08/17 09:28:38 INFO executor.Executor: Finished task 778.0 in stage 3.0
(TID 803). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 807
16/08/17 09:28:38 INFO executor.Executor: Running task 782.0 in stage 3.0
(TID 807)
16/08/17 09:28:38 INFO executor.Executor: Finished task 779.0 in stage 3.0
(TID 804). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 808
16/08/17 09:28:38 INFO executor.Executor: Running task 783.0 in stage 3.0
(TID 808)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 809
16/08/17 09:28:38 INFO executor.Executor: Running task 784.0 in stage 3.0
(TID 809)
16/08/17 09:28:38 INFO executor.Executor: Finished task 780.0 in stage 3.0
(TID 805). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 781.0 in stage 3.0
(TID 806). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 782.0 in stage 3.0
(TID 807). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 810
16/08/17 09:28:38 INFO executor.Executor: Running task 785.0 in stage 3.0
(TID 810)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 811
16/08/17 09:28:38 INFO executor.Executor: Finished task 783.0 in stage 3.0
(TID 808). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 786.0 in stage 3.0
(TID 811)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 812
16/08/17 09:28:38 INFO executor.Executor: Running task 787.0 in stage 3.0
(TID 812)
16/08/17 09:28:38 INFO executor.Executor: Finished task 784.0 in stage 3.0
(TID 809). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 813
16/08/17 09:28:38 INFO executor.Executor: Running task 788.0 in stage 3.0
(TID 813)
16/08/17 09:28:38 INFO executor.Executor: Finished task 785.0 in stage 3.0
(TID 810). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 814
16/08/17 09:28:38 INFO executor.Executor: Running task 789.0 in stage 3.0
(TID 814)
16/08/17 09:28:38 INFO executor.Executor: Finished task 786.0 in stage 3.0
(TID 811). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 787.0 in stage 3.0
(TID 812). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 815
16/08/17 09:28:38 INFO executor.Executor: Running task 790.0 in stage 3.0
(TID 815)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 816
16/08/17 09:28:38 INFO executor.Executor: Running task 791.0 in stage 3.0
(TID 816)
16/08/17 09:28:38 INFO executor.Executor: Finished task 788.0 in stage 3.0
(TID 813). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 817
16/08/17 09:28:38 INFO executor.Executor: Running task 792.0 in stage 3.0
(TID 817)
16/08/17 09:28:38 INFO executor.Executor: Finished task 789.0 in stage 3.0
(TID 814). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 790.0 in stage 3.0
(TID 815). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 818
16/08/17 09:28:38 INFO executor.Executor: Running task 793.0 in stage 3.0
(TID 818)
16/08/17 09:28:38 INFO executor.Executor: Finished task 791.0 in stage 3.0
(TID 816). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 819
16/08/17 09:28:38 INFO executor.Executor: Running task 794.0 in stage 3.0
(TID 819)
16/08/17 09:28:38 INFO executor.Executor: Finished task 792.0 in stage 3.0
(TID 817). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 820
16/08/17 09:28:38 INFO executor.Executor: Running task 795.0 in stage 3.0
(TID 820)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 821
16/08/17 09:28:38 INFO executor.Executor: Running task 796.0 in stage 3.0
(TID 821)
16/08/17 09:28:38 INFO executor.Executor: Finished task 793.0 in stage 3.0
(TID 818). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 822
16/08/17 09:28:38 INFO executor.Executor: Running task 797.0 in stage 3.0
(TID 822)
16/08/17 09:28:38 INFO executor.Executor: Finished task 794.0 in stage 3.0
(TID 819). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 795.0 in stage 3.0
(TID 820). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 823
16/08/17 09:28:38 INFO executor.Executor: Running task 798.0 in stage 3.0
(TID 823)
16/08/17 09:28:38 INFO executor.Executor: Finished task 796.0 in stage 3.0
(TID 821). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 824
16/08/17 09:28:38 INFO executor.Executor: Running task 799.0 in stage 3.0
(TID 824)
16/08/17 09:28:38 INFO executor.Executor: Finished task 797.0 in stage 3.0
(TID 822). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 825
16/08/17 09:28:38 INFO executor.Executor: Running task 800.0 in stage 3.0
(TID 825)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 826
16/08/17 09:28:38 INFO executor.Executor: Running task 801.0 in stage 3.0
(TID 826)
16/08/17 09:28:38 INFO executor.Executor: Finished task 798.0 in stage 3.0
(TID 823). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 827
16/08/17 09:28:38 INFO executor.Executor: Running task 802.0 in stage 3.0
(TID 827)
16/08/17 09:28:38 INFO executor.Executor: Finished task 799.0 in stage 3.0
(TID 824). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 800.0 in stage 3.0
(TID 825). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 828
16/08/17 09:28:38 INFO executor.Executor: Running task 803.0 in stage 3.0
(TID 828)
16/08/17 09:28:38 INFO executor.Executor: Finished task 801.0 in stage 3.0
(TID 826). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 829
16/08/17 09:28:38 INFO executor.Executor: Finished task 802.0 in stage 3.0
(TID 827). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 804.0 in stage 3.0
(TID 829)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 830
16/08/17 09:28:38 INFO executor.Executor: Running task 805.0 in stage 3.0
(TID 830)
16/08/17 09:28:38 INFO executor.Executor: Finished task 803.0 in stage 3.0
(TID 828). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 831
16/08/17 09:28:38 INFO executor.Executor: Running task 806.0 in stage 3.0
(TID 831)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 832
16/08/17 09:28:38 INFO executor.Executor: Running task 807.0 in stage 3.0
(TID 832)
16/08/17 09:28:38 INFO executor.Executor: Finished task 804.0 in stage 3.0
(TID 829). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 805.0 in stage 3.0
(TID 830). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 833
16/08/17 09:28:38 INFO executor.Executor: Running task 808.0 in stage 3.0
(TID 833)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 834
16/08/17 09:28:38 INFO executor.Executor: Finished task 806.0 in stage 3.0
(TID 831). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 809.0 in stage 3.0
(TID 834)
16/08/17 09:28:38 INFO executor.Executor: Finished task 807.0 in stage 3.0
(TID 832). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 835
16/08/17 09:28:38 INFO executor.Executor: Running task 810.0 in stage 3.0
(TID 835)
16/08/17 09:28:38 INFO executor.Executor: Finished task 808.0 in stage 3.0
(TID 833). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 836
16/08/17 09:28:38 INFO executor.Executor: Running task 811.0 in stage 3.0
(TID 836)
16/08/17 09:28:38 INFO executor.Executor: Finished task 809.0 in stage 3.0
(TID 834). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 837
16/08/17 09:28:38 INFO executor.Executor: Running task 812.0 in stage 3.0
(TID 837)
16/08/17 09:28:38 INFO executor.Executor: Finished task 810.0 in stage 3.0
(TID 835). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 838
16/08/17 09:28:38 INFO executor.Executor: Running task 813.0 in stage 3.0
(TID 838)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 839
16/08/17 09:28:38 INFO executor.Executor: Running task 814.0 in stage 3.0
(TID 839)
16/08/17 09:28:38 INFO executor.Executor: Finished task 811.0 in stage 3.0
(TID 836). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 840
16/08/17 09:28:38 INFO executor.Executor: Running task 815.0 in stage 3.0
(TID 840)
16/08/17 09:28:38 INFO executor.Executor: Finished task 812.0 in stage 3.0
(TID 837). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 813.0 in stage 3.0
(TID 838). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 841
16/08/17 09:28:38 INFO executor.Executor: Running task 816.0 in stage 3.0
(TID 841)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 842
16/08/17 09:28:38 INFO executor.Executor: Finished task 814.0 in stage 3.0
(TID 839). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 817.0 in stage 3.0
(TID 842)
16/08/17 09:28:38 INFO executor.Executor: Finished task 815.0 in stage 3.0
(TID 840). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 843
16/08/17 09:28:38 INFO executor.Executor: Running task 818.0 in stage 3.0
(TID 843)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 844
16/08/17 09:28:38 INFO executor.Executor: Finished task 816.0 in stage 3.0
(TID 841). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 819.0 in stage 3.0
(TID 844)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 845
16/08/17 09:28:38 INFO executor.Executor: Running task 820.0 in stage 3.0
(TID 845)
16/08/17 09:28:38 INFO executor.Executor: Finished task 817.0 in stage 3.0
(TID 842). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 818.0 in stage 3.0
(TID 843). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 846
16/08/17 09:28:38 INFO executor.Executor: Running task 821.0 in stage 3.0
(TID 846)
16/08/17 09:28:38 INFO executor.Executor: Finished task 819.0 in stage 3.0
(TID 844). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 847
16/08/17 09:28:38 INFO executor.Executor: Finished task 820.0 in stage 3.0
(TID 845). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 822.0 in stage 3.0
(TID 847)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 848
16/08/17 09:28:38 INFO executor.Executor: Running task 823.0 in stage 3.0
(TID 848)
16/08/17 09:28:38 INFO executor.Executor: Finished task 821.0 in stage 3.0
(TID 846). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 849
16/08/17 09:28:38 INFO executor.Executor: Running task 824.0 in stage 3.0
(TID 849)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 850
16/08/17 09:28:38 INFO executor.Executor: Running task 825.0 in stage 3.0
(TID 850)
16/08/17 09:28:38 INFO executor.Executor: Finished task 822.0 in stage 3.0
(TID 847). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 823.0 in stage 3.0
(TID 848). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 851
16/08/17 09:28:38 INFO executor.Executor: Running task 826.0 in stage 3.0
(TID 851)
16/08/17 09:28:38 INFO executor.Executor: Finished task 824.0 in stage 3.0
(TID 849). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 852
16/08/17 09:28:38 INFO executor.Executor: Running task 827.0 in stage 3.0
(TID 852)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 853
16/08/17 09:28:38 INFO executor.Executor: Finished task 825.0 in stage 3.0
(TID 850). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 828.0 in stage 3.0
(TID 853)
16/08/17 09:28:38 INFO executor.Executor: Finished task 826.0 in stage 3.0
(TID 851). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 854
16/08/17 09:28:38 INFO executor.Executor: Running task 829.0 in stage 3.0
(TID 854)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 855
16/08/17 09:28:38 INFO executor.Executor: Running task 830.0 in stage 3.0
(TID 855)
16/08/17 09:28:38 INFO executor.Executor: Finished task 827.0 in stage 3.0
(TID 852). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 828.0 in stage 3.0
(TID 853). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 856
16/08/17 09:28:38 INFO executor.Executor: Running task 831.0 in stage 3.0
(TID 856)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 857
16/08/17 09:28:38 INFO executor.Executor: Running task 832.0 in stage 3.0
(TID 857)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 858
16/08/17 09:28:38 INFO executor.Executor: Finished task 829.0 in stage 3.0
(TID 854). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 833.0 in stage 3.0
(TID 858)
16/08/17 09:28:38 INFO executor.Executor: Finished task 830.0 in stage 3.0
(TID 855). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 831.0 in stage 3.0
(TID 856). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 859
16/08/17 09:28:38 INFO executor.Executor: Running task 834.0 in stage 3.0
(TID 859)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 860
16/08/17 09:28:38 INFO executor.Executor: Finished task 832.0 in stage 3.0
(TID 857). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 835.0 in stage 3.0
(TID 860)
16/08/17 09:28:38 INFO executor.Executor: Finished task 833.0 in stage 3.0
(TID 858). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 861
16/08/17 09:28:38 INFO executor.Executor: Running task 836.0 in stage 3.0
(TID 861)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 862
16/08/17 09:28:38 INFO executor.Executor: Running task 837.0 in stage 3.0
(TID 862)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 863
16/08/17 09:28:38 INFO executor.Executor: Finished task 834.0 in stage 3.0
(TID 859). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 838.0 in stage 3.0
(TID 863)
16/08/17 09:28:38 INFO executor.Executor: Finished task 835.0 in stage 3.0
(TID 860). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 836.0 in stage 3.0
(TID 861). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 864
16/08/17 09:28:38 INFO executor.Executor: Finished task 837.0 in stage 3.0
(TID 862). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 839.0 in stage 3.0
(TID 864)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 865
16/08/17 09:28:38 INFO executor.Executor: Finished task 838.0 in stage 3.0
(TID 863). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 840.0 in stage 3.0
(TID 865)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 866
16/08/17 09:28:38 INFO executor.Executor: Running task 841.0 in stage 3.0
(TID 866)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 867
16/08/17 09:28:38 INFO executor.Executor: Running task 842.0 in stage 3.0
(TID 867)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 868
16/08/17 09:28:38 INFO executor.Executor: Finished task 839.0 in stage 3.0
(TID 864). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 843.0 in stage 3.0
(TID 868)
16/08/17 09:28:38 INFO executor.Executor: Finished task 840.0 in stage 3.0
(TID 865). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 841.0 in stage 3.0
(TID 866). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 869
16/08/17 09:28:38 INFO executor.Executor: Running task 844.0 in stage 3.0
(TID 869)
16/08/17 09:28:38 INFO executor.Executor: Finished task 842.0 in stage 3.0
(TID 867). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 870
16/08/17 09:28:38 INFO executor.Executor: Running task 845.0 in stage 3.0
(TID 870)
16/08/17 09:28:38 INFO executor.Executor: Finished task 843.0 in stage 3.0
(TID 868). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 871
16/08/17 09:28:38 INFO executor.Executor: Running task 846.0 in stage 3.0
(TID 871)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 872
16/08/17 09:28:38 INFO executor.Executor: Running task 847.0 in stage 3.0
(TID 872)
16/08/17 09:28:38 INFO executor.Executor: Finished task 844.0 in stage 3.0
(TID 869). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 873
16/08/17 09:28:38 INFO executor.Executor: Running task 848.0 in stage 3.0
(TID 873)
16/08/17 09:28:38 INFO executor.Executor: Finished task 845.0 in stage 3.0
(TID 870). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 846.0 in stage 3.0
(TID 871). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 874
16/08/17 09:28:38 INFO executor.Executor: Running task 849.0 in stage 3.0
(TID 874)
16/08/17 09:28:38 INFO executor.Executor: Finished task 847.0 in stage 3.0
(TID 872). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 875
16/08/17 09:28:38 INFO executor.Executor: Running task 850.0 in stage 3.0
(TID 875)
16/08/17 09:28:38 INFO executor.Executor: Finished task 848.0 in stage 3.0
(TID 873). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 876
16/08/17 09:28:38 INFO executor.Executor: Running task 851.0 in stage 3.0
(TID 876)
16/08/17 09:28:38 INFO executor.Executor: Finished task 849.0 in stage 3.0
(TID 874). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 877
16/08/17 09:28:38 INFO executor.Executor: Running task 852.0 in stage 3.0
(TID 877)
16/08/17 09:28:38 INFO executor.Executor: Finished task 850.0 in stage 3.0
(TID 875). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 878
16/08/17 09:28:38 INFO executor.Executor: Running task 853.0 in stage 3.0
(TID 878)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 879
16/08/17 09:28:38 INFO executor.Executor: Running task 854.0 in stage 3.0
(TID 879)
16/08/17 09:28:38 INFO executor.Executor: Finished task 851.0 in stage 3.0
(TID 876). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 880
16/08/17 09:28:38 INFO executor.Executor: Running task 855.0 in stage 3.0
(TID 880)
16/08/17 09:28:38 INFO executor.Executor: Finished task 852.0 in stage 3.0
(TID 877). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 853.0 in stage 3.0
(TID 878). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 881
16/08/17 09:28:38 INFO executor.Executor: Finished task 854.0 in stage 3.0
(TID 879). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 856.0 in stage 3.0
(TID 881)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 882
16/08/17 09:28:38 INFO executor.Executor: Running task 857.0 in stage 3.0
(TID 882)
16/08/17 09:28:38 INFO executor.Executor: Finished task 855.0 in stage 3.0
(TID 880). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 883
16/08/17 09:28:38 INFO executor.Executor: Running task 858.0 in stage 3.0
(TID 883)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 884
16/08/17 09:28:38 INFO executor.Executor: Running task 859.0 in stage 3.0
(TID 884)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 885
16/08/17 09:28:38 INFO executor.Executor: Finished task 856.0 in stage 3.0
(TID 881). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 860.0 in stage 3.0
(TID 885)
16/08/17 09:28:38 INFO executor.Executor: Finished task 857.0 in stage 3.0
(TID 882). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 858.0 in stage 3.0
(TID 883). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 886
16/08/17 09:28:38 INFO executor.Executor: Running task 861.0 in stage 3.0
(TID 886)
16/08/17 09:28:38 INFO executor.Executor: Finished task 859.0 in stage 3.0
(TID 884). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 887
16/08/17 09:28:38 INFO executor.Executor: Running task 862.0 in stage 3.0
(TID 887)
16/08/17 09:28:38 INFO executor.Executor: Finished task 860.0 in stage 3.0
(TID 885). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 888
16/08/17 09:28:38 INFO executor.Executor: Running task 863.0 in stage 3.0
(TID 888)
16/08/17 09:28:38 INFO executor.Executor: Finished task 861.0 in stage 3.0
(TID 886). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 889
16/08/17 09:28:38 INFO executor.Executor: Running task 864.0 in stage 3.0
(TID 889)
16/08/17 09:28:38 INFO executor.Executor: Finished task 862.0 in stage 3.0
(TID 887). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 890
16/08/17 09:28:38 INFO executor.Executor: Running task 865.0 in stage 3.0
(TID 890)
16/08/17 09:28:38 INFO executor.Executor: Finished task 863.0 in stage 3.0
(TID 888). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 891
16/08/17 09:28:38 INFO executor.Executor: Finished task 864.0 in stage 3.0
(TID 889). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 866.0 in stage 3.0
(TID 891)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 892
16/08/17 09:28:38 INFO executor.Executor: Finished task 865.0 in stage 3.0
(TID 890). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 867.0 in stage 3.0
(TID 892)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 893
16/08/17 09:28:38 INFO executor.Executor: Running task 868.0 in stage 3.0
(TID 893)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 894
16/08/17 09:28:38 INFO executor.Executor: Running task 869.0 in stage 3.0
(TID 894)
16/08/17 09:28:38 INFO executor.Executor: Finished task 866.0 in stage 3.0
(TID 891). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 895
16/08/17 09:28:38 INFO executor.Executor: Running task 870.0 in stage 3.0
(TID 895)
16/08/17 09:28:38 INFO executor.Executor: Finished task 867.0 in stage 3.0
(TID 892). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 868.0 in stage 3.0
(TID 893). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 896
16/08/17 09:28:38 INFO executor.Executor: Running task 871.0 in stage 3.0
(TID 896)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 897
16/08/17 09:28:38 INFO executor.Executor: Running task 872.0 in stage 3.0
(TID 897)
16/08/17 09:28:38 INFO executor.Executor: Finished task 869.0 in stage 3.0
(TID 894). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 898
16/08/17 09:28:38 INFO executor.Executor: Running task 873.0 in stage 3.0
(TID 898)
16/08/17 09:28:38 INFO executor.Executor: Finished task 870.0 in stage 3.0
(TID 895). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 899
16/08/17 09:28:38 INFO executor.Executor: Finished task 871.0 in stage 3.0
(TID 896). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 874.0 in stage 3.0
(TID 899)
16/08/17 09:28:38 INFO executor.Executor: Finished task 872.0 in stage 3.0
(TID 897). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 900
16/08/17 09:28:38 INFO executor.Executor: Running task 875.0 in stage 3.0
(TID 900)
16/08/17 09:28:38 INFO executor.Executor: Finished task 873.0 in stage 3.0
(TID 898). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 901
16/08/17 09:28:38 INFO executor.Executor: Running task 876.0 in stage 3.0
(TID 901)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 902
16/08/17 09:28:38 INFO executor.Executor: Running task 877.0 in stage 3.0
(TID 902)
16/08/17 09:28:38 INFO executor.Executor: Finished task 874.0 in stage 3.0
(TID 899). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 903
16/08/17 09:28:38 INFO executor.Executor: Finished task 875.0 in stage 3.0
(TID 900). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 878.0 in stage 3.0
(TID 903)
16/08/17 09:28:38 INFO executor.Executor: Finished task 876.0 in stage 3.0
(TID 901). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 904
16/08/17 09:28:38 INFO executor.Executor: Running task 879.0 in stage 3.0
(TID 904)
16/08/17 09:28:38 INFO executor.Executor: Finished task 877.0 in stage 3.0
(TID 902). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 905
16/08/17 09:28:38 INFO executor.Executor: Running task 880.0 in stage 3.0
(TID 905)
16/08/17 09:28:38 INFO executor.Executor: Finished task 878.0 in stage 3.0
(TID 903). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 906
16/08/17 09:28:38 INFO executor.Executor: Finished task 879.0 in stage 3.0
(TID 904). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 881.0 in stage 3.0
(TID 906)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 907
16/08/17 09:28:38 INFO executor.Executor: Finished task 880.0 in stage 3.0
(TID 905). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 882.0 in stage 3.0
(TID 907)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 908
16/08/17 09:28:38 INFO executor.Executor: Running task 883.0 in stage 3.0
(TID 908)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 909
16/08/17 09:28:38 INFO executor.Executor: Finished task 881.0 in stage 3.0
(TID 906). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 884.0 in stage 3.0
(TID 909)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 910
16/08/17 09:28:38 INFO executor.Executor: Finished task 882.0 in stage 3.0
(TID 907). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 885.0 in stage 3.0
(TID 910)
16/08/17 09:28:38 INFO executor.Executor: Finished task 883.0 in stage 3.0
(TID 908). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 911
16/08/17 09:28:38 INFO executor.Executor: Running task 886.0 in stage 3.0
(TID 911)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 912
16/08/17 09:28:38 INFO executor.Executor: Running task 887.0 in stage 3.0
(TID 912)
16/08/17 09:28:38 INFO executor.Executor: Finished task 884.0 in stage 3.0
(TID 909). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 885.0 in stage 3.0
(TID 910). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 913
16/08/17 09:28:38 INFO executor.Executor: Running task 888.0 in stage 3.0
(TID 913)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 914
16/08/17 09:28:38 INFO executor.Executor: Running task 889.0 in stage 3.0
(TID 914)
16/08/17 09:28:38 INFO executor.Executor: Finished task 886.0 in stage 3.0
(TID 911). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 887.0 in stage 3.0
(TID 912). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 915
16/08/17 09:28:38 INFO executor.Executor: Running task 890.0 in stage 3.0
(TID 915)
16/08/17 09:28:38 INFO executor.Executor: Finished task 888.0 in stage 3.0
(TID 913). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 916
16/08/17 09:28:38 INFO executor.Executor: Running task 891.0 in stage 3.0
(TID 916)
16/08/17 09:28:38 INFO executor.Executor: Finished task 889.0 in stage 3.0
(TID 914). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 917
16/08/17 09:28:38 INFO executor.Executor: Running task 892.0 in stage 3.0
(TID 917)
16/08/17 09:28:38 INFO executor.Executor: Finished task 890.0 in stage 3.0
(TID 915). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 918
16/08/17 09:28:38 INFO executor.Executor: Running task 893.0 in stage 3.0
(TID 918)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 919
16/08/17 09:28:38 INFO executor.Executor: Finished task 891.0 in stage 3.0
(TID 916). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 894.0 in stage 3.0
(TID 919)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 920
16/08/17 09:28:38 INFO executor.Executor: Finished task 892.0 in stage 3.0
(TID 917). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 895.0 in stage 3.0
(TID 920)
16/08/17 09:28:38 INFO executor.Executor: Finished task 893.0 in stage 3.0
(TID 918). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 921
16/08/17 09:28:38 INFO executor.Executor: Running task 896.0 in stage 3.0
(TID 921)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 922
16/08/17 09:28:38 INFO executor.Executor: Running task 897.0 in stage 3.0
(TID 922)
16/08/17 09:28:38 INFO executor.Executor: Finished task 894.0 in stage 3.0
(TID 919). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 895.0 in stage 3.0
(TID 920). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 923
16/08/17 09:28:38 INFO executor.Executor: Running task 898.0 in stage 3.0
(TID 923)
16/08/17 09:28:38 INFO executor.Executor: Finished task 896.0 in stage 3.0
(TID 921). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 924
16/08/17 09:28:38 INFO executor.Executor: Running task 899.0 in stage 3.0
(TID 924)
16/08/17 09:28:38 INFO executor.Executor: Finished task 897.0 in stage 3.0
(TID 922). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 925
16/08/17 09:28:38 INFO executor.Executor: Running task 900.0 in stage 3.0
(TID 925)
16/08/17 09:28:38 INFO executor.Executor: Finished task 898.0 in stage 3.0
(TID 923). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 926
16/08/17 09:28:38 INFO executor.Executor: Running task 901.0 in stage 3.0
(TID 926)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 927
16/08/17 09:28:38 INFO executor.Executor: Running task 902.0 in stage 3.0
(TID 927)
16/08/17 09:28:38 INFO executor.Executor: Finished task 899.0 in stage 3.0
(TID 924). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 928
16/08/17 09:28:38 INFO executor.Executor: Finished task 900.0 in stage 3.0
(TID 925). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 903.0 in stage 3.0
(TID 928)
16/08/17 09:28:38 INFO executor.Executor: Finished task 901.0 in stage 3.0
(TID 926). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 929
16/08/17 09:28:38 INFO executor.Executor: Running task 904.0 in stage 3.0
(TID 929)
16/08/17 09:28:38 INFO executor.Executor: Finished task 902.0 in stage 3.0
(TID 927). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 930
16/08/17 09:28:38 INFO executor.Executor: Running task 905.0 in stage 3.0
(TID 930)
16/08/17 09:28:38 INFO executor.Executor: Finished task 903.0 in stage 3.0
(TID 928). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 931
16/08/17 09:28:38 INFO executor.Executor: Running task 906.0 in stage 3.0
(TID 931)
16/08/17 09:28:38 INFO executor.Executor: Finished task 904.0 in stage 3.0
(TID 929). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 932
16/08/17 09:28:38 INFO executor.Executor: Finished task 905.0 in stage 3.0
(TID 930). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 907.0 in stage 3.0
(TID 932)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 933
16/08/17 09:28:38 INFO executor.Executor: Running task 908.0 in stage 3.0
(TID 933)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 934
16/08/17 09:28:38 INFO executor.Executor: Running task 909.0 in stage 3.0
(TID 934)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 935
16/08/17 09:28:38 INFO executor.Executor: Running task 910.0 in stage 3.0
(TID 935)
16/08/17 09:28:38 INFO executor.Executor: Finished task 906.0 in stage 3.0
(TID 931). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 907.0 in stage 3.0
(TID 932). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 908.0 in stage 3.0
(TID 933). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 909.0 in stage 3.0
(TID 934). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 936
16/08/17 09:28:38 INFO executor.Executor: Running task 911.0 in stage 3.0
(TID 936)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 937
16/08/17 09:28:38 INFO executor.Executor: Finished task 910.0 in stage 3.0
(TID 935). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 912.0 in stage 3.0
(TID 937)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 938
16/08/17 09:28:38 INFO executor.Executor: Running task 913.0 in stage 3.0
(TID 938)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 939
16/08/17 09:28:38 INFO executor.Executor: Running task 914.0 in stage 3.0
(TID 939)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 940
16/08/17 09:28:38 INFO executor.Executor: Finished task 911.0 in stage 3.0
(TID 936). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 915.0 in stage 3.0
(TID 940)
16/08/17 09:28:38 INFO executor.Executor: Finished task 912.0 in stage 3.0
(TID 937). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 913.0 in stage 3.0
(TID 938). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 941
16/08/17 09:28:38 INFO executor.Executor: Running task 916.0 in stage 3.0
(TID 941)
16/08/17 09:28:38 INFO executor.Executor: Finished task 914.0 in stage 3.0
(TID 939). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 942
16/08/17 09:28:38 INFO executor.Executor: Running task 917.0 in stage 3.0
(TID 942)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 943
16/08/17 09:28:38 INFO executor.Executor: Finished task 915.0 in stage 3.0
(TID 940). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 918.0 in stage 3.0
(TID 943)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 944
16/08/17 09:28:38 INFO executor.Executor: Finished task 916.0 in stage 3.0
(TID 941). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 919.0 in stage 3.0
(TID 944)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 945
16/08/17 09:28:38 INFO executor.Executor: Running task 920.0 in stage 3.0
(TID 945)
16/08/17 09:28:38 INFO executor.Executor: Finished task 917.0 in stage 3.0
(TID 942). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 918.0 in stage 3.0
(TID 943). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 946
16/08/17 09:28:38 INFO executor.Executor: Running task 921.0 in stage 3.0
(TID 946)
16/08/17 09:28:38 INFO executor.Executor: Finished task 919.0 in stage 3.0
(TID 944). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 947
16/08/17 09:28:38 INFO executor.Executor: Running task 922.0 in stage 3.0
(TID 947)
16/08/17 09:28:38 INFO executor.Executor: Finished task 920.0 in stage 3.0
(TID 945). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 948
16/08/17 09:28:38 INFO executor.Executor: Running task 923.0 in stage 3.0
(TID 948)
16/08/17 09:28:38 INFO executor.Executor: Finished task 921.0 in stage 3.0
(TID 946). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 949
16/08/17 09:28:38 INFO executor.Executor: Finished task 922.0 in stage 3.0
(TID 947). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 924.0 in stage 3.0
(TID 949)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 950
16/08/17 09:28:38 INFO executor.Executor: Running task 925.0 in stage 3.0
(TID 950)
16/08/17 09:28:38 INFO executor.Executor: Finished task 923.0 in stage 3.0
(TID 948). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 951
16/08/17 09:28:38 INFO executor.Executor: Running task 926.0 in stage 3.0
(TID 951)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 952
16/08/17 09:28:38 INFO executor.Executor: Finished task 924.0 in stage 3.0
(TID 949). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 927.0 in stage 3.0
(TID 952)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 953
16/08/17 09:28:38 INFO executor.Executor: Finished task 925.0 in stage 3.0
(TID 950). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 928.0 in stage 3.0
(TID 953)
16/08/17 09:28:38 INFO executor.Executor: Finished task 926.0 in stage 3.0
(TID 951). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 954
16/08/17 09:28:38 INFO executor.Executor: Running task 929.0 in stage 3.0
(TID 954)
16/08/17 09:28:38 INFO executor.Executor: Finished task 927.0 in stage 3.0
(TID 952). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 955
16/08/17 09:28:38 INFO executor.Executor: Running task 930.0 in stage 3.0
(TID 955)
16/08/17 09:28:38 INFO executor.Executor: Finished task 928.0 in stage 3.0
(TID 953). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 956
16/08/17 09:28:38 INFO executor.Executor: Running task 931.0 in stage 3.0
(TID 956)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 957
16/08/17 09:28:38 INFO executor.Executor: Finished task 929.0 in stage 3.0
(TID 954). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 932.0 in stage 3.0
(TID 957)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 958
16/08/17 09:28:38 INFO executor.Executor: Running task 933.0 in stage 3.0
(TID 958)
16/08/17 09:28:38 INFO executor.Executor: Finished task 930.0 in stage 3.0
(TID 955). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 931.0 in stage 3.0
(TID 956). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 959
16/08/17 09:28:38 INFO executor.Executor: Running task 934.0 in stage 3.0
(TID 959)
16/08/17 09:28:38 INFO executor.Executor: Finished task 932.0 in stage 3.0
(TID 957). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 933.0 in stage 3.0
(TID 958). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 960
16/08/17 09:28:38 INFO executor.Executor: Running task 935.0 in stage 3.0
(TID 960)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 961
16/08/17 09:28:38 INFO executor.Executor: Running task 936.0 in stage 3.0
(TID 961)
16/08/17 09:28:38 INFO executor.Executor: Finished task 934.0 in stage 3.0
(TID 959). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 962
16/08/17 09:28:38 INFO executor.Executor: Finished task 935.0 in stage 3.0
(TID 960). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 937.0 in stage 3.0
(TID 962)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 963
16/08/17 09:28:38 INFO executor.Executor: Running task 938.0 in stage 3.0
(TID 963)
16/08/17 09:28:38 INFO executor.Executor: Finished task 936.0 in stage 3.0
(TID 961). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 937.0 in stage 3.0
(TID 962). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 964
16/08/17 09:28:38 INFO executor.Executor: Running task 939.0 in stage 3.0
(TID 964)
16/08/17 09:28:38 INFO executor.Executor: Finished task 938.0 in stage 3.0
(TID 963). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 965
16/08/17 09:28:38 INFO executor.Executor: Running task 940.0 in stage 3.0
(TID 965)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 966
16/08/17 09:28:38 INFO executor.Executor: Running task 941.0 in stage 3.0
(TID 966)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 967
16/08/17 09:28:38 INFO executor.Executor: Running task 942.0 in stage 3.0
(TID 967)
16/08/17 09:28:38 INFO executor.Executor: Finished task 939.0 in stage 3.0
(TID 964). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 968
16/08/17 09:28:38 INFO executor.Executor: Finished task 940.0 in stage 3.0
(TID 965). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 943.0 in stage 3.0
(TID 968)
16/08/17 09:28:38 INFO executor.Executor: Finished task 941.0 in stage 3.0
(TID 966). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 969
16/08/17 09:28:38 INFO executor.Executor: Running task 944.0 in stage 3.0
(TID 969)
16/08/17 09:28:38 INFO executor.Executor: Finished task 942.0 in stage 3.0
(TID 967). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 970
16/08/17 09:28:38 INFO executor.Executor: Running task 945.0 in stage 3.0
(TID 970)
16/08/17 09:28:38 INFO executor.Executor: Finished task 943.0 in stage 3.0
(TID 968). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 971
16/08/17 09:28:38 INFO executor.Executor: Running task 946.0 in stage 3.0
(TID 971)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 972
16/08/17 09:28:38 INFO executor.Executor: Running task 947.0 in stage 3.0
(TID 972)
16/08/17 09:28:38 INFO executor.Executor: Finished task 944.0 in stage 3.0
(TID 969). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 973
16/08/17 09:28:38 INFO executor.Executor: Running task 948.0 in stage 3.0
(TID 973)
16/08/17 09:28:38 INFO executor.Executor: Finished task 945.0 in stage 3.0
(TID 970). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 946.0 in stage 3.0
(TID 971). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 974
16/08/17 09:28:38 INFO executor.Executor: Running task 949.0 in stage 3.0
(TID 974)
16/08/17 09:28:38 INFO executor.Executor: Finished task 947.0 in stage 3.0
(TID 972). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 975
16/08/17 09:28:38 INFO executor.Executor: Running task 950.0 in stage 3.0
(TID 975)
16/08/17 09:28:38 INFO executor.Executor: Finished task 948.0 in stage 3.0
(TID 973). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 976
16/08/17 09:28:38 INFO executor.Executor: Running task 951.0 in stage 3.0
(TID 976)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 977
16/08/17 09:28:38 INFO executor.Executor: Running task 952.0 in stage 3.0
(TID 977)
16/08/17 09:28:38 INFO executor.Executor: Finished task 949.0 in stage 3.0
(TID 974). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 978
16/08/17 09:28:38 INFO executor.Executor: Running task 953.0 in stage 3.0
(TID 978)
16/08/17 09:28:38 INFO executor.Executor: Finished task 950.0 in stage 3.0
(TID 975). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 951.0 in stage 3.0
(TID 976). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 979
16/08/17 09:28:38 INFO executor.Executor: Running task 954.0 in stage 3.0
(TID 979)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 980
16/08/17 09:28:38 INFO executor.Executor: Running task 955.0 in stage 3.0
(TID 980)
16/08/17 09:28:38 INFO executor.Executor: Finished task 952.0 in stage 3.0
(TID 977). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 953.0 in stage 3.0
(TID 978). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 981
16/08/17 09:28:38 INFO executor.Executor: Running task 956.0 in stage 3.0
(TID 981)
16/08/17 09:28:38 INFO executor.Executor: Finished task 954.0 in stage 3.0
(TID 979). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 982
16/08/17 09:28:38 INFO executor.Executor: Finished task 955.0 in stage 3.0
(TID 980). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 957.0 in stage 3.0
(TID 982)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 983
16/08/17 09:28:38 INFO executor.Executor: Finished task 956.0 in stage 3.0
(TID 981). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 958.0 in stage 3.0
(TID 983)
16/08/17 09:28:38 INFO executor.Executor: Finished task 957.0 in stage 3.0
(TID 982). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 984
16/08/17 09:28:38 INFO executor.Executor: Running task 959.0 in stage 3.0
(TID 984)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 985
16/08/17 09:28:38 INFO executor.Executor: Running task 960.0 in stage 3.0
(TID 985)
16/08/17 09:28:38 INFO executor.Executor: Finished task 958.0 in stage 3.0
(TID 983). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 986
16/08/17 09:28:38 INFO executor.Executor: Running task 961.0 in stage 3.0
(TID 986)
16/08/17 09:28:38 INFO executor.Executor: Finished task 959.0 in stage 3.0
(TID 984). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 987
16/08/17 09:28:38 INFO executor.Executor: Finished task 960.0 in stage 3.0
(TID 985). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 962.0 in stage 3.0
(TID 987)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 988
16/08/17 09:28:38 INFO executor.Executor: Running task 963.0 in stage 3.0
(TID 988)
16/08/17 09:28:38 INFO executor.Executor: Finished task 961.0 in stage 3.0
(TID 986). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 989
16/08/17 09:28:38 INFO executor.Executor: Running task 964.0 in stage 3.0
(TID 989)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 990
16/08/17 09:28:38 INFO executor.Executor: Running task 965.0 in stage 3.0
(TID 990)
16/08/17 09:28:38 INFO executor.Executor: Finished task 962.0 in stage 3.0
(TID 987). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 963.0 in stage 3.0
(TID 988). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 991
16/08/17 09:28:38 INFO executor.Executor: Running task 966.0 in stage 3.0
(TID 991)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 992
16/08/17 09:28:38 INFO executor.Executor: Finished task 964.0 in stage 3.0
(TID 989). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 967.0 in stage 3.0
(TID 992)
16/08/17 09:28:38 INFO executor.Executor: Finished task 965.0 in stage 3.0
(TID 990). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 993
16/08/17 09:28:38 INFO executor.Executor: Running task 968.0 in stage 3.0
(TID 993)
16/08/17 09:28:38 INFO executor.Executor: Finished task 966.0 in stage 3.0
(TID 991). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 967.0 in stage 3.0
(TID 992). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 968.0 in stage 3.0
(TID 993). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 994
16/08/17 09:28:38 INFO executor.Executor: Running task 969.0 in stage 3.0
(TID 994)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 995
16/08/17 09:28:38 INFO executor.Executor: Running task 970.0 in stage 3.0
(TID 995)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 996
16/08/17 09:28:38 INFO executor.Executor: Running task 971.0 in stage 3.0
(TID 996)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 997
16/08/17 09:28:38 INFO executor.Executor: Running task 972.0 in stage 3.0
(TID 997)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 998
16/08/17 09:28:38 INFO executor.Executor: Finished task 969.0 in stage 3.0
(TID 994). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 973.0 in stage 3.0
(TID 998)
16/08/17 09:28:38 INFO executor.Executor: Finished task 970.0 in stage 3.0
(TID 995). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 971.0 in stage 3.0
(TID 996). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 972.0 in stage 3.0
(TID 997). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 999
16/08/17 09:28:38 INFO executor.Executor: Running task 974.0 in stage 3.0
(TID 999)
16/08/17 09:28:38 INFO executor.Executor: Finished task 973.0 in stage 3.0
(TID 998). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1000
16/08/17 09:28:38 INFO executor.Executor: Running task 975.0 in stage 3.0
(TID 1000)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1001
16/08/17 09:28:38 INFO executor.Executor: Running task 976.0 in stage 3.0
(TID 1001)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1002
16/08/17 09:28:38 INFO executor.Executor: Running task 977.0 in stage 3.0
(TID 1002)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1003
16/08/17 09:28:38 INFO executor.Executor: Running task 978.0 in stage 3.0
(TID 1003)
16/08/17 09:28:38 INFO executor.Executor: Finished task 974.0 in stage 3.0
(TID 999). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 975.0 in stage 3.0
(TID 1000). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 976.0 in stage 3.0
(TID 1001). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 977.0 in stage 3.0
(TID 1002). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1004
16/08/17 09:28:38 INFO executor.Executor: Running task 979.0 in stage 3.0
(TID 1004)
16/08/17 09:28:38 INFO executor.Executor: Finished task 978.0 in stage 3.0
(TID 1003). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1005
16/08/17 09:28:38 INFO executor.Executor: Running task 980.0 in stage 3.0
(TID 1005)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1006
16/08/17 09:28:38 INFO executor.Executor: Running task 981.0 in stage 3.0
(TID 1006)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1007
16/08/17 09:28:38 INFO executor.Executor: Running task 982.0 in stage 3.0
(TID 1007)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1008
16/08/17 09:28:38 INFO executor.Executor: Finished task 979.0 in stage 3.0
(TID 1004). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 983.0 in stage 3.0
(TID 1008)
16/08/17 09:28:38 INFO executor.Executor: Finished task 980.0 in stage 3.0
(TID 1005). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 981.0 in stage 3.0
(TID 1006). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1009
16/08/17 09:28:38 INFO executor.Executor: Finished task 982.0 in stage 3.0
(TID 1007). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 984.0 in stage 3.0
(TID 1009)
16/08/17 09:28:38 INFO executor.Executor: Finished task 983.0 in stage 3.0
(TID 1008). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1010
16/08/17 09:28:38 INFO executor.Executor: Running task 985.0 in stage 3.0
(TID 1010)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1011
16/08/17 09:28:38 INFO executor.Executor: Running task 986.0 in stage 3.0
(TID 1011)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1012
16/08/17 09:28:38 INFO executor.Executor: Finished task 985.0 in stage 3.0
(TID 1010). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 984.0 in stage 3.0
(TID 1009). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 987.0 in stage 3.0
(TID 1012)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1013
16/08/17 09:28:38 INFO executor.Executor: Running task 988.0 in stage 3.0
(TID 1013)
16/08/17 09:28:38 INFO executor.Executor: Finished task 986.0 in stage 3.0
(TID 1011). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 987.0 in stage 3.0
(TID 1012). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 988.0 in stage 3.0
(TID 1013). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1014
16/08/17 09:28:38 INFO executor.Executor: Running task 989.0 in stage 3.0
(TID 1014)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1015
16/08/17 09:28:38 INFO executor.Executor: Running task 990.0 in stage 3.0
(TID 1015)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1016
16/08/17 09:28:38 INFO executor.Executor: Finished task 989.0 in stage 3.0
(TID 1014). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 991.0 in stage 3.0
(TID 1016)
16/08/17 09:28:38 INFO executor.Executor: Finished task 990.0 in stage 3.0
(TID 1015). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1017
16/08/17 09:28:38 INFO executor.Executor: Running task 992.0 in stage 3.0
(TID 1017)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1018
16/08/17 09:28:38 INFO executor.Executor: Running task 993.0 in stage 3.0
(TID 1018)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1019
16/08/17 09:28:38 INFO executor.Executor: Finished task 993.0 in stage 3.0
(TID 1018). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 992.0 in stage 3.0
(TID 1017). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 994.0 in stage 3.0
(TID 1019)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1020
16/08/17 09:28:38 INFO executor.Executor: Running task 995.0 in stage 3.0
(TID 1020)
16/08/17 09:28:38 INFO executor.Executor: Finished task 991.0 in stage 3.0
(TID 1016). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1021
16/08/17 09:28:38 INFO executor.Executor: Running task 996.0 in stage 3.0
(TID 1021)
16/08/17 09:28:38 INFO executor.Executor: Finished task 994.0 in stage 3.0
(TID 1019). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1022
16/08/17 09:28:38 INFO executor.Executor: Running task 997.0 in stage 3.0
(TID 1022)
16/08/17 09:28:38 INFO executor.Executor: Finished task 995.0 in stage 3.0
(TID 1020). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1023
16/08/17 09:28:38 INFO executor.Executor: Running task 998.0 in stage 3.0
(TID 1023)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1024
16/08/17 09:28:38 INFO executor.Executor: Running task 999.0 in stage 3.0
(TID 1024)
16/08/17 09:28:38 INFO executor.Executor: Finished task 997.0 in stage 3.0
(TID 1022). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1025
16/08/17 09:28:38 INFO executor.Executor: Running task 1000.0 in stage 3.0
(TID 1025)
16/08/17 09:28:38 INFO executor.Executor: Finished task 998.0 in stage 3.0
(TID 1023). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 996.0 in stage 3.0
(TID 1021). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1026
16/08/17 09:28:38 INFO executor.Executor: Finished task 999.0 in stage 3.0
(TID 1024). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 1001.0 in stage 3.0
(TID 1026)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1027
16/08/17 09:28:38 INFO executor.Executor: Finished task 1000.0 in stage 3.0
(TID 1025). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 1002.0 in stage 3.0
(TID 1027)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1028
16/08/17 09:28:38 INFO executor.Executor: Running task 1003.0 in stage 3.0
(TID 1028)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1029
16/08/17 09:28:38 INFO executor.Executor: Running task 1004.0 in stage 3.0
(TID 1029)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1002.0 in stage 3.0
(TID 1027). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1030
16/08/17 09:28:38 INFO executor.Executor: Running task 1005.0 in stage 3.0
(TID 1030)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1003.0 in stage 3.0
(TID 1028). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1001.0 in stage 3.0
(TID 1026). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1004.0 in stage 3.0
(TID 1029). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1031
16/08/17 09:28:38 INFO executor.Executor: Finished task 1005.0 in stage 3.0
(TID 1030). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 1006.0 in stage 3.0
(TID 1031)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1032
16/08/17 09:28:38 INFO executor.Executor: Running task 1007.0 in stage 3.0
(TID 1032)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1033
16/08/17 09:28:38 INFO executor.Executor: Running task 1008.0 in stage 3.0
(TID 1033)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1034
16/08/17 09:28:38 INFO executor.Executor: Running task 1009.0 in stage 3.0
(TID 1034)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1035
16/08/17 09:28:38 INFO executor.Executor: Running task 1010.0 in stage 3.0
(TID 1035)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1006.0 in stage 3.0
(TID 1031). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1007.0 in stage 3.0
(TID 1032). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1009.0 in stage 3.0
(TID 1034). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1036
16/08/17 09:28:38 INFO executor.Executor: Running task 1011.0 in stage 3.0
(TID 1036)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1010.0 in stage 3.0
(TID 1035). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1037
16/08/17 09:28:38 INFO executor.Executor: Running task 1012.0 in stage 3.0
(TID 1037)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1008.0 in stage 3.0
(TID 1033). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1038
16/08/17 09:28:38 INFO executor.Executor: Running task 1013.0 in stage 3.0
(TID 1038)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1011.0 in stage 3.0
(TID 1036). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1039
16/08/17 09:28:38 INFO executor.Executor: Running task 1014.0 in stage 3.0
(TID 1039)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1012.0 in stage 3.0
(TID 1037). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1040
16/08/17 09:28:38 INFO executor.Executor: Running task 1015.0 in stage 3.0
(TID 1040)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1041
16/08/17 09:28:38 INFO executor.Executor: Running task 1016.0 in stage 3.0
(TID 1041)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1042
16/08/17 09:28:38 INFO executor.Executor: Running task 1017.0 in stage 3.0
(TID 1042)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1014.0 in stage 3.0
(TID 1039). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1013.0 in stage 3.0
(TID 1038). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1015.0 in stage 3.0
(TID 1040). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1016.0 in stage 3.0
(TID 1041). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1043
16/08/17 09:28:38 INFO executor.Executor: Finished task 1017.0 in stage 3.0
(TID 1042). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Running task 1018.0 in stage 3.0
(TID 1043)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1044
16/08/17 09:28:38 INFO executor.Executor: Running task 1019.0 in stage 3.0
(TID 1044)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1045
16/08/17 09:28:38 INFO executor.Executor: Running task 1020.0 in stage 3.0
(TID 1045)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1046
16/08/17 09:28:38 INFO executor.Executor: Running task 1021.0 in stage 3.0
(TID 1046)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1047
16/08/17 09:28:38 INFO executor.Executor: Running task 1022.0 in stage 3.0
(TID 1047)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1018.0 in stage 3.0
(TID 1043). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1019.0 in stage 3.0
(TID 1044). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1020.0 in stage 3.0
(TID 1045). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1022.0 in stage 3.0
(TID 1047). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1048
16/08/17 09:28:38 INFO executor.Executor: Running task 1023.0 in stage 3.0
(TID 1048)
16/08/17 09:28:38 INFO executor.Executor: Finished task 1021.0 in stage 3.0
(TID 1046). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.Executor: Finished task 1023.0 in stage 3.0
(TID 1048). 903 bytes result sent to driver
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1049
16/08/17 09:28:38 INFO executor.Executor: Running task 0.0 in stage 4.0 (TID
1049)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1050
16/08/17 09:28:38 INFO executor.Executor: Running task 1.0 in stage 4.0 (TID
1050)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1051
16/08/17 09:28:38 INFO executor.Executor: Running task 2.0 in stage 4.0 (TID
1051)
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1052
16/08/17 09:28:38 INFO executor.Executor: Running task 3.0 in stage 4.0 (TID
1052)
16/08/17 09:28:38 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 4
16/08/17 09:28:38 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1053
16/08/17 09:28:38 INFO executor.Executor: Running task 4.0 in stage 4.0 (TID
1053)
16/08/17 09:28:39 INFO storage.MemoryStore: Block broadcast_4_piece0 stored
as bytes in memory (estimated size 2.4 KB, free 15.2 KB)
16/08/17 09:28:39 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 4 took 11 ms
16/08/17 09:28:39 INFO storage.MemoryStore: Block broadcast_4 stored as
values in memory (estimated size 2.4 KB, free 17.6 KB)
16/08/17 09:28:39 INFO executor.Executor: Finished task 0.0 in stage 4.0
(TID 1049). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 3.0 in stage 4.0
(TID 1052). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 2.0 in stage 4.0
(TID 1051). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 1.0 in stage 4.0
(TID 1050). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 4.0 in stage 4.0
(TID 1053). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1054
16/08/17 09:28:39 INFO executor.Executor: Running task 5.0 in stage 4.0 (TID
1054)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1055
16/08/17 09:28:39 INFO executor.Executor: Running task 6.0 in stage 4.0 (TID
1055)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1056
16/08/17 09:28:39 INFO executor.Executor: Running task 7.0 in stage 4.0 (TID
1056)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1057
16/08/17 09:28:39 INFO executor.Executor: Running task 8.0 in stage 4.0 (TID
1057)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1058
16/08/17 09:28:39 INFO executor.Executor: Running task 9.0 in stage 4.0 (TID
1058)
16/08/17 09:28:39 INFO executor.Executor: Finished task 5.0 in stage 4.0
(TID 1054). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 6.0 in stage 4.0
(TID 1055). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 7.0 in stage 4.0
(TID 1056). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 8.0 in stage 4.0
(TID 1057). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 9.0 in stage 4.0
(TID 1058). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1059
16/08/17 09:28:39 INFO executor.Executor: Running task 10.0 in stage 4.0
(TID 1059)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1060
16/08/17 09:28:39 INFO executor.Executor: Running task 11.0 in stage 4.0
(TID 1060)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1061
16/08/17 09:28:39 INFO executor.Executor: Running task 12.0 in stage 4.0
(TID 1061)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1062
16/08/17 09:28:39 INFO executor.Executor: Running task 13.0 in stage 4.0
(TID 1062)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1063
16/08/17 09:28:39 INFO executor.Executor: Running task 14.0 in stage 4.0
(TID 1063)
16/08/17 09:28:39 INFO executor.Executor: Finished task 10.0 in stage 4.0
(TID 1059). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 11.0 in stage 4.0
(TID 1060). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 12.0 in stage 4.0
(TID 1061). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 13.0 in stage 4.0
(TID 1062). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 14.0 in stage 4.0
(TID 1063). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1064
16/08/17 09:28:39 INFO executor.Executor: Running task 15.0 in stage 4.0
(TID 1064)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1065
16/08/17 09:28:39 INFO executor.Executor: Running task 16.0 in stage 4.0
(TID 1065)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1066
16/08/17 09:28:39 INFO executor.Executor: Running task 17.0 in stage 4.0
(TID 1066)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1067
16/08/17 09:28:39 INFO executor.Executor: Running task 18.0 in stage 4.0
(TID 1067)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1068
16/08/17 09:28:39 INFO executor.Executor: Running task 19.0 in stage 4.0
(TID 1068)
16/08/17 09:28:39 INFO executor.Executor: Finished task 15.0 in stage 4.0
(TID 1064). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 16.0 in stage 4.0
(TID 1065). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 17.0 in stage 4.0
(TID 1066). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 18.0 in stage 4.0
(TID 1067). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 19.0 in stage 4.0
(TID 1068). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1069
16/08/17 09:28:39 INFO executor.Executor: Running task 20.0 in stage 4.0
(TID 1069)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1070
16/08/17 09:28:39 INFO executor.Executor: Running task 21.0 in stage 4.0
(TID 1070)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1071
16/08/17 09:28:39 INFO executor.Executor: Running task 22.0 in stage 4.0
(TID 1071)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1072
16/08/17 09:28:39 INFO executor.Executor: Running task 23.0 in stage 4.0
(TID 1072)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1073
16/08/17 09:28:39 INFO executor.Executor: Running task 24.0 in stage 4.0
(TID 1073)
16/08/17 09:28:39 INFO executor.Executor: Finished task 21.0 in stage 4.0
(TID 1070). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 20.0 in stage 4.0
(TID 1069). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 22.0 in stage 4.0
(TID 1071). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 23.0 in stage 4.0
(TID 1072). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 24.0 in stage 4.0
(TID 1073). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1074
16/08/17 09:28:39 INFO executor.Executor: Running task 25.0 in stage 4.0
(TID 1074)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1075
16/08/17 09:28:39 INFO executor.Executor: Running task 26.0 in stage 4.0
(TID 1075)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1076
16/08/17 09:28:39 INFO executor.Executor: Running task 27.0 in stage 4.0
(TID 1076)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1077
16/08/17 09:28:39 INFO executor.Executor: Running task 28.0 in stage 4.0
(TID 1077)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1078
16/08/17 09:28:39 INFO executor.Executor: Running task 29.0 in stage 4.0
(TID 1078)
16/08/17 09:28:39 INFO executor.Executor: Finished task 25.0 in stage 4.0
(TID 1074). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 26.0 in stage 4.0
(TID 1075). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 27.0 in stage 4.0
(TID 1076). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 28.0 in stage 4.0
(TID 1077). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1079
16/08/17 09:28:39 INFO executor.Executor: Running task 30.0 in stage 4.0
(TID 1079)
16/08/17 09:28:39 INFO executor.Executor: Finished task 29.0 in stage 4.0
(TID 1078). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1080
16/08/17 09:28:39 INFO executor.Executor: Running task 31.0 in stage 4.0
(TID 1080)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1081
16/08/17 09:28:39 INFO executor.Executor: Running task 32.0 in stage 4.0
(TID 1081)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1082
16/08/17 09:28:39 INFO executor.Executor: Running task 33.0 in stage 4.0
(TID 1082)
16/08/17 09:28:39 INFO executor.Executor: Finished task 30.0 in stage 4.0
(TID 1079). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1083
16/08/17 09:28:39 INFO executor.Executor: Running task 34.0 in stage 4.0
(TID 1083)
16/08/17 09:28:39 INFO executor.Executor: Finished task 31.0 in stage 4.0
(TID 1080). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 32.0 in stage 4.0
(TID 1081). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 33.0 in stage 4.0
(TID 1082). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1084
16/08/17 09:28:39 INFO executor.Executor: Running task 35.0 in stage 4.0
(TID 1084)
16/08/17 09:28:39 INFO executor.Executor: Finished task 34.0 in stage 4.0
(TID 1083). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1085
16/08/17 09:28:39 INFO executor.Executor: Running task 36.0 in stage 4.0
(TID 1085)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1086
16/08/17 09:28:39 INFO executor.Executor: Running task 37.0 in stage 4.0
(TID 1086)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1087
16/08/17 09:28:39 INFO executor.Executor: Running task 38.0 in stage 4.0
(TID 1087)
16/08/17 09:28:39 INFO executor.Executor: Finished task 35.0 in stage 4.0
(TID 1084). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1088
16/08/17 09:28:39 INFO executor.Executor: Running task 39.0 in stage 4.0
(TID 1088)
16/08/17 09:28:39 INFO executor.Executor: Finished task 36.0 in stage 4.0
(TID 1085). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 37.0 in stage 4.0
(TID 1086). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 38.0 in stage 4.0
(TID 1087). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1089
16/08/17 09:28:39 INFO executor.Executor: Running task 40.0 in stage 4.0
(TID 1089)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1090
16/08/17 09:28:39 INFO executor.Executor: Running task 41.0 in stage 4.0
(TID 1090)
16/08/17 09:28:39 INFO executor.Executor: Finished task 39.0 in stage 4.0
(TID 1088). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1091
16/08/17 09:28:39 INFO executor.Executor: Running task 42.0 in stage 4.0
(TID 1091)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1092
16/08/17 09:28:39 INFO executor.Executor: Running task 43.0 in stage 4.0
(TID 1092)
16/08/17 09:28:39 INFO executor.Executor: Finished task 40.0 in stage 4.0
(TID 1089). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1093
16/08/17 09:28:39 INFO executor.Executor: Finished task 41.0 in stage 4.0
(TID 1090). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 44.0 in stage 4.0
(TID 1093)
16/08/17 09:28:39 INFO executor.Executor: Finished task 42.0 in stage 4.0
(TID 1091). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1094
16/08/17 09:28:39 INFO executor.Executor: Running task 45.0 in stage 4.0
(TID 1094)
16/08/17 09:28:39 INFO executor.Executor: Finished task 43.0 in stage 4.0
(TID 1092). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1095
16/08/17 09:28:39 INFO executor.Executor: Running task 46.0 in stage 4.0
(TID 1095)
16/08/17 09:28:39 INFO executor.Executor: Finished task 44.0 in stage 4.0
(TID 1093). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1096
16/08/17 09:28:39 INFO executor.Executor: Running task 47.0 in stage 4.0
(TID 1096)
16/08/17 09:28:39 INFO executor.Executor: Finished task 45.0 in stage 4.0
(TID 1094). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1097
16/08/17 09:28:39 INFO executor.Executor: Running task 48.0 in stage 4.0
(TID 1097)
16/08/17 09:28:39 INFO executor.Executor: Finished task 46.0 in stage 4.0
(TID 1095). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1098
16/08/17 09:28:39 INFO executor.Executor: Running task 49.0 in stage 4.0
(TID 1098)
16/08/17 09:28:39 INFO executor.Executor: Finished task 47.0 in stage 4.0
(TID 1096). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1099
16/08/17 09:28:39 INFO executor.Executor: Finished task 48.0 in stage 4.0
(TID 1097). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 50.0 in stage 4.0
(TID 1099)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1100
16/08/17 09:28:39 INFO executor.Executor: Running task 51.0 in stage 4.0
(TID 1100)
16/08/17 09:28:39 INFO executor.Executor: Finished task 49.0 in stage 4.0
(TID 1098). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1101
16/08/17 09:28:39 INFO executor.Executor: Running task 52.0 in stage 4.0
(TID 1101)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1102
16/08/17 09:28:39 INFO executor.Executor: Running task 53.0 in stage 4.0
(TID 1102)
16/08/17 09:28:39 INFO executor.Executor: Finished task 50.0 in stage 4.0
(TID 1099). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1103
16/08/17 09:28:39 INFO executor.Executor: Running task 54.0 in stage 4.0
(TID 1103)
16/08/17 09:28:39 INFO executor.Executor: Finished task 51.0 in stage 4.0
(TID 1100). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1104
16/08/17 09:28:39 INFO executor.Executor: Running task 55.0 in stage 4.0
(TID 1104)
16/08/17 09:28:39 INFO executor.Executor: Finished task 52.0 in stage 4.0
(TID 1101). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 53.0 in stage 4.0
(TID 1102). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1105
16/08/17 09:28:39 INFO executor.Executor: Running task 56.0 in stage 4.0
(TID 1105)
16/08/17 09:28:39 INFO executor.Executor: Finished task 54.0 in stage 4.0
(TID 1103). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1106
16/08/17 09:28:39 INFO executor.Executor: Running task 57.0 in stage 4.0
(TID 1106)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1107
16/08/17 09:28:39 INFO executor.Executor: Running task 58.0 in stage 4.0
(TID 1107)
16/08/17 09:28:39 INFO executor.Executor: Finished task 55.0 in stage 4.0
(TID 1104). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1108
16/08/17 09:28:39 INFO executor.Executor: Finished task 56.0 in stage 4.0
(TID 1105). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 59.0 in stage 4.0
(TID 1108)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1109
16/08/17 09:28:39 INFO executor.Executor: Running task 60.0 in stage 4.0
(TID 1109)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1110
16/08/17 09:28:39 INFO executor.Executor: Running task 61.0 in stage 4.0
(TID 1110)
16/08/17 09:28:39 INFO executor.Executor: Finished task 57.0 in stage 4.0
(TID 1106). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 58.0 in stage 4.0
(TID 1107). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 59.0 in stage 4.0
(TID 1108). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1111
16/08/17 09:28:39 INFO executor.Executor: Running task 62.0 in stage 4.0
(TID 1111)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1112
16/08/17 09:28:39 INFO executor.Executor: Running task 63.0 in stage 4.0
(TID 1112)
16/08/17 09:28:39 INFO executor.Executor: Finished task 60.0 in stage 4.0
(TID 1109). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 61.0 in stage 4.0
(TID 1110). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1113
16/08/17 09:28:39 INFO executor.Executor: Running task 64.0 in stage 4.0
(TID 1113)
16/08/17 09:28:39 INFO executor.Executor: Finished task 62.0 in stage 4.0
(TID 1111). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1114
16/08/17 09:28:39 INFO executor.Executor: Running task 65.0 in stage 4.0
(TID 1114)
16/08/17 09:28:39 INFO executor.Executor: Finished task 63.0 in stage 4.0
(TID 1112). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 64.0 in stage 4.0
(TID 1113). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1115
16/08/17 09:28:39 INFO executor.Executor: Running task 66.0 in stage 4.0
(TID 1115)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1116
16/08/17 09:28:39 INFO executor.Executor: Running task 67.0 in stage 4.0
(TID 1116)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1117
16/08/17 09:28:39 INFO executor.Executor: Running task 68.0 in stage 4.0
(TID 1117)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1118
16/08/17 09:28:39 INFO executor.Executor: Running task 69.0 in stage 4.0
(TID 1118)
16/08/17 09:28:39 INFO executor.Executor: Finished task 65.0 in stage 4.0
(TID 1114). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 66.0 in stage 4.0
(TID 1115). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1119
16/08/17 09:28:39 INFO executor.Executor: Running task 70.0 in stage 4.0
(TID 1119)
16/08/17 09:28:39 INFO executor.Executor: Finished task 67.0 in stage 4.0
(TID 1116). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1120
16/08/17 09:28:39 INFO executor.Executor: Running task 71.0 in stage 4.0
(TID 1120)
16/08/17 09:28:39 INFO executor.Executor: Finished task 68.0 in stage 4.0
(TID 1117). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 69.0 in stage 4.0
(TID 1118). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1121
16/08/17 09:28:39 INFO executor.Executor: Running task 72.0 in stage 4.0
(TID 1121)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1122
16/08/17 09:28:39 INFO executor.Executor: Running task 73.0 in stage 4.0
(TID 1122)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1123
16/08/17 09:28:39 INFO executor.Executor: Running task 74.0 in stage 4.0
(TID 1123)
16/08/17 09:28:39 INFO executor.Executor: Finished task 70.0 in stage 4.0
(TID 1119). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 71.0 in stage 4.0
(TID 1120). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1124
16/08/17 09:28:39 INFO executor.Executor: Running task 75.0 in stage 4.0
(TID 1124)
16/08/17 09:28:39 INFO executor.Executor: Finished task 72.0 in stage 4.0
(TID 1121). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1125
16/08/17 09:28:39 INFO executor.Executor: Running task 76.0 in stage 4.0
(TID 1125)
16/08/17 09:28:39 INFO executor.Executor: Finished task 73.0 in stage 4.0
(TID 1122). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 74.0 in stage 4.0
(TID 1123). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1126
16/08/17 09:28:39 INFO executor.Executor: Running task 77.0 in stage 4.0
(TID 1126)
16/08/17 09:28:39 INFO executor.Executor: Finished task 75.0 in stage 4.0
(TID 1124). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1127
16/08/17 09:28:39 INFO executor.Executor: Running task 78.0 in stage 4.0
(TID 1127)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1128
16/08/17 09:28:39 INFO executor.Executor: Running task 79.0 in stage 4.0
(TID 1128)
16/08/17 09:28:39 INFO executor.Executor: Finished task 76.0 in stage 4.0
(TID 1125). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1129
16/08/17 09:28:39 INFO executor.Executor: Running task 80.0 in stage 4.0
(TID 1129)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1130
16/08/17 09:28:39 INFO executor.Executor: Finished task 77.0 in stage 4.0
(TID 1126). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 81.0 in stage 4.0
(TID 1130)
16/08/17 09:28:39 INFO executor.Executor: Finished task 78.0 in stage 4.0
(TID 1127). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 79.0 in stage 4.0
(TID 1128). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1131
16/08/17 09:28:39 INFO executor.Executor: Running task 82.0 in stage 4.0
(TID 1131)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1132
16/08/17 09:28:39 INFO executor.Executor: Running task 83.0 in stage 4.0
(TID 1132)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1133
16/08/17 09:28:39 INFO executor.Executor: Finished task 80.0 in stage 4.0
(TID 1129). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 84.0 in stage 4.0
(TID 1133)
16/08/17 09:28:39 INFO executor.Executor: Finished task 81.0 in stage 4.0
(TID 1130). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1134
16/08/17 09:28:39 INFO executor.Executor: Running task 85.0 in stage 4.0
(TID 1134)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1135
16/08/17 09:28:39 INFO executor.Executor: Running task 86.0 in stage 4.0
(TID 1135)
16/08/17 09:28:39 INFO executor.Executor: Finished task 82.0 in stage 4.0
(TID 1131). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 83.0 in stage 4.0
(TID 1132). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 84.0 in stage 4.0
(TID 1133). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1136
16/08/17 09:28:39 INFO executor.Executor: Running task 87.0 in stage 4.0
(TID 1136)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1137
16/08/17 09:28:39 INFO executor.Executor: Running task 88.0 in stage 4.0
(TID 1137)
16/08/17 09:28:39 INFO executor.Executor: Finished task 85.0 in stage 4.0
(TID 1134). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1138
16/08/17 09:28:39 INFO executor.Executor: Running task 89.0 in stage 4.0
(TID 1138)
16/08/17 09:28:39 INFO executor.Executor: Finished task 86.0 in stage 4.0
(TID 1135). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1139
16/08/17 09:28:39 INFO executor.Executor: Running task 90.0 in stage 4.0
(TID 1139)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1140
16/08/17 09:28:39 INFO executor.Executor: Finished task 87.0 in stage 4.0
(TID 1136). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 91.0 in stage 4.0
(TID 1140)
16/08/17 09:28:39 INFO executor.Executor: Finished task 88.0 in stage 4.0
(TID 1137). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 89.0 in stage 4.0
(TID 1138). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1141
16/08/17 09:28:39 INFO executor.Executor: Running task 92.0 in stage 4.0
(TID 1141)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1142
16/08/17 09:28:39 INFO executor.Executor: Running task 93.0 in stage 4.0
(TID 1142)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1143
16/08/17 09:28:39 INFO executor.Executor: Running task 94.0 in stage 4.0
(TID 1143)
16/08/17 09:28:39 INFO executor.Executor: Finished task 90.0 in stage 4.0
(TID 1139). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 91.0 in stage 4.0
(TID 1140). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1144
16/08/17 09:28:39 INFO executor.Executor: Running task 95.0 in stage 4.0
(TID 1144)
16/08/17 09:28:39 INFO executor.Executor: Finished task 92.0 in stage 4.0
(TID 1141). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1145
16/08/17 09:28:39 INFO executor.Executor: Running task 96.0 in stage 4.0
(TID 1145)
16/08/17 09:28:39 INFO executor.Executor: Finished task 93.0 in stage 4.0
(TID 1142). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 94.0 in stage 4.0
(TID 1143). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1146
16/08/17 09:28:39 INFO executor.Executor: Running task 97.0 in stage 4.0
(TID 1146)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1147
16/08/17 09:28:39 INFO executor.Executor: Running task 98.0 in stage 4.0
(TID 1147)
16/08/17 09:28:39 INFO executor.Executor: Finished task 95.0 in stage 4.0
(TID 1144). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1148
16/08/17 09:28:39 INFO executor.Executor: Running task 99.0 in stage 4.0
(TID 1148)
16/08/17 09:28:39 INFO executor.Executor: Finished task 96.0 in stage 4.0
(TID 1145). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1149
16/08/17 09:28:39 INFO executor.Executor: Running task 100.0 in stage 4.0
(TID 1149)
16/08/17 09:28:39 INFO executor.Executor: Finished task 97.0 in stage 4.0
(TID 1146). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1150
16/08/17 09:28:39 INFO executor.Executor: Running task 101.0 in stage 4.0
(TID 1150)
16/08/17 09:28:39 INFO executor.Executor: Finished task 98.0 in stage 4.0
(TID 1147). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 99.0 in stage 4.0
(TID 1148). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1151
16/08/17 09:28:39 INFO executor.Executor: Running task 102.0 in stage 4.0
(TID 1151)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1152
16/08/17 09:28:39 INFO executor.Executor: Running task 103.0 in stage 4.0
(TID 1152)
16/08/17 09:28:39 INFO executor.Executor: Finished task 100.0 in stage 4.0
(TID 1149). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1153
16/08/17 09:28:39 INFO executor.Executor: Running task 104.0 in stage 4.0
(TID 1153)
16/08/17 09:28:39 INFO executor.Executor: Finished task 101.0 in stage 4.0
(TID 1150). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1154
16/08/17 09:28:39 INFO executor.Executor: Running task 105.0 in stage 4.0
(TID 1154)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1155
16/08/17 09:28:39 INFO executor.Executor: Running task 106.0 in stage 4.0
(TID 1155)
16/08/17 09:28:39 INFO executor.Executor: Finished task 103.0 in stage 4.0
(TID 1152). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 102.0 in stage 4.0
(TID 1151). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 104.0 in stage 4.0
(TID 1153). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 105.0 in stage 4.0
(TID 1154). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1156
16/08/17 09:28:39 INFO executor.Executor: Running task 107.0 in stage 4.0
(TID 1156)
16/08/17 09:28:39 INFO executor.Executor: Finished task 106.0 in stage 4.0
(TID 1155). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1157
16/08/17 09:28:39 INFO executor.Executor: Running task 108.0 in stage 4.0
(TID 1157)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1158
16/08/17 09:28:39 INFO executor.Executor: Running task 109.0 in stage 4.0
(TID 1158)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1159
16/08/17 09:28:39 INFO executor.Executor: Running task 110.0 in stage 4.0
(TID 1159)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1160
16/08/17 09:28:39 INFO executor.Executor: Finished task 107.0 in stage 4.0
(TID 1156). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 111.0 in stage 4.0
(TID 1160)
16/08/17 09:28:39 INFO executor.Executor: Finished task 108.0 in stage 4.0
(TID 1157). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 109.0 in stage 4.0
(TID 1158). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 110.0 in stage 4.0
(TID 1159). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1161
16/08/17 09:28:39 INFO executor.Executor: Running task 112.0 in stage 4.0
(TID 1161)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1162
16/08/17 09:28:39 INFO executor.Executor: Finished task 111.0 in stage 4.0
(TID 1160). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 113.0 in stage 4.0
(TID 1162)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1163
16/08/17 09:28:39 INFO executor.Executor: Running task 114.0 in stage 4.0
(TID 1163)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1164
16/08/17 09:28:39 INFO executor.Executor: Running task 115.0 in stage 4.0
(TID 1164)
16/08/17 09:28:39 INFO executor.Executor: Finished task 112.0 in stage 4.0
(TID 1161). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1165
16/08/17 09:28:39 INFO executor.Executor: Running task 116.0 in stage 4.0
(TID 1165)
16/08/17 09:28:39 INFO executor.Executor: Finished task 113.0 in stage 4.0
(TID 1162). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 114.0 in stage 4.0
(TID 1163). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 115.0 in stage 4.0
(TID 1164). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1166
16/08/17 09:28:39 INFO executor.Executor: Running task 117.0 in stage 4.0
(TID 1166)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1167
16/08/17 09:28:39 INFO executor.Executor: Running task 118.0 in stage 4.0
(TID 1167)
16/08/17 09:28:39 INFO executor.Executor: Finished task 116.0 in stage 4.0
(TID 1165). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1168
16/08/17 09:28:39 INFO executor.Executor: Running task 119.0 in stage 4.0
(TID 1168)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1169
16/08/17 09:28:39 INFO executor.Executor: Running task 120.0 in stage 4.0
(TID 1169)
16/08/17 09:28:39 INFO executor.Executor: Finished task 117.0 in stage 4.0
(TID 1166). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1170
16/08/17 09:28:39 INFO executor.Executor: Finished task 118.0 in stage 4.0
(TID 1167). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 121.0 in stage 4.0
(TID 1170)
16/08/17 09:28:39 INFO executor.Executor: Finished task 119.0 in stage 4.0
(TID 1168). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 120.0 in stage 4.0
(TID 1169). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1171
16/08/17 09:28:39 INFO executor.Executor: Running task 122.0 in stage 4.0
(TID 1171)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1172
16/08/17 09:28:39 INFO executor.Executor: Running task 123.0 in stage 4.0
(TID 1172)
16/08/17 09:28:39 INFO executor.Executor: Finished task 121.0 in stage 4.0
(TID 1170). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1173
16/08/17 09:28:39 INFO executor.Executor: Running task 124.0 in stage 4.0
(TID 1173)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1174
16/08/17 09:28:39 INFO executor.Executor: Running task 125.0 in stage 4.0
(TID 1174)
16/08/17 09:28:39 INFO executor.Executor: Finished task 122.0 in stage 4.0
(TID 1171). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 123.0 in stage 4.0
(TID 1172). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1175
16/08/17 09:28:39 INFO executor.Executor: Running task 126.0 in stage 4.0
(TID 1175)
16/08/17 09:28:39 INFO executor.Executor: Finished task 124.0 in stage 4.0
(TID 1173). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 125.0 in stage 4.0
(TID 1174). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1176
16/08/17 09:28:39 INFO executor.Executor: Running task 127.0 in stage 4.0
(TID 1176)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1177
16/08/17 09:28:39 INFO executor.Executor: Running task 128.0 in stage 4.0
(TID 1177)
16/08/17 09:28:39 INFO executor.Executor: Finished task 126.0 in stage 4.0
(TID 1175). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1178
16/08/17 09:28:39 INFO executor.Executor: Running task 129.0 in stage 4.0
(TID 1178)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1179
16/08/17 09:28:39 INFO executor.Executor: Running task 130.0 in stage 4.0
(TID 1179)
16/08/17 09:28:39 INFO executor.Executor: Finished task 127.0 in stage 4.0
(TID 1176). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 128.0 in stage 4.0
(TID 1177). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1180
16/08/17 09:28:39 INFO executor.Executor: Running task 131.0 in stage 4.0
(TID 1180)
16/08/17 09:28:39 INFO executor.Executor: Finished task 129.0 in stage 4.0
(TID 1178). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 130.0 in stage 4.0
(TID 1179). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1181
16/08/17 09:28:39 INFO executor.Executor: Running task 132.0 in stage 4.0
(TID 1181)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1182
16/08/17 09:28:39 INFO executor.Executor: Running task 133.0 in stage 4.0
(TID 1182)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1183
16/08/17 09:28:39 INFO executor.Executor: Finished task 131.0 in stage 4.0
(TID 1180). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 134.0 in stage 4.0
(TID 1183)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1184
16/08/17 09:28:39 INFO executor.Executor: Running task 135.0 in stage 4.0
(TID 1184)
16/08/17 09:28:39 INFO executor.Executor: Finished task 132.0 in stage 4.0
(TID 1181). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 133.0 in stage 4.0
(TID 1182). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1185
16/08/17 09:28:39 INFO executor.Executor: Running task 136.0 in stage 4.0
(TID 1185)
16/08/17 09:28:39 INFO executor.Executor: Finished task 134.0 in stage 4.0
(TID 1183). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 135.0 in stage 4.0
(TID 1184). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1186
16/08/17 09:28:39 INFO executor.Executor: Running task 137.0 in stage 4.0
(TID 1186)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1187
16/08/17 09:28:39 INFO executor.Executor: Running task 138.0 in stage 4.0
(TID 1187)
16/08/17 09:28:39 INFO executor.Executor: Finished task 136.0 in stage 4.0
(TID 1185). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1188
16/08/17 09:28:39 INFO executor.Executor: Running task 139.0 in stage 4.0
(TID 1188)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1189
16/08/17 09:28:39 INFO executor.Executor: Running task 140.0 in stage 4.0
(TID 1189)
16/08/17 09:28:39 INFO executor.Executor: Finished task 137.0 in stage 4.0
(TID 1186). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1190
16/08/17 09:28:39 INFO executor.Executor: Running task 141.0 in stage 4.0
(TID 1190)
16/08/17 09:28:39 INFO executor.Executor: Finished task 138.0 in stage 4.0
(TID 1187). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 139.0 in stage 4.0
(TID 1188). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 140.0 in stage 4.0
(TID 1189). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 141.0 in stage 4.0
(TID 1190). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1191
16/08/17 09:28:39 INFO executor.Executor: Running task 142.0 in stage 4.0
(TID 1191)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1192
16/08/17 09:28:39 INFO executor.Executor: Running task 143.0 in stage 4.0
(TID 1192)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1193
16/08/17 09:28:39 INFO executor.Executor: Running task 144.0 in stage 4.0
(TID 1193)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1194
16/08/17 09:28:39 INFO executor.Executor: Running task 145.0 in stage 4.0
(TID 1194)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1195
16/08/17 09:28:39 INFO executor.Executor: Running task 146.0 in stage 4.0
(TID 1195)
16/08/17 09:28:39 INFO executor.Executor: Finished task 142.0 in stage 4.0
(TID 1191). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 143.0 in stage 4.0
(TID 1192). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 144.0 in stage 4.0
(TID 1193). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 145.0 in stage 4.0
(TID 1194). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1196
16/08/17 09:28:39 INFO executor.Executor: Running task 147.0 in stage 4.0
(TID 1196)
16/08/17 09:28:39 INFO executor.Executor: Finished task 146.0 in stage 4.0
(TID 1195). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1197
16/08/17 09:28:39 INFO executor.Executor: Running task 148.0 in stage 4.0
(TID 1197)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1198
16/08/17 09:28:39 INFO executor.Executor: Running task 149.0 in stage 4.0
(TID 1198)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1199
16/08/17 09:28:39 INFO executor.Executor: Running task 150.0 in stage 4.0
(TID 1199)
16/08/17 09:28:39 INFO executor.Executor: Finished task 147.0 in stage 4.0
(TID 1196). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1200
16/08/17 09:28:39 INFO executor.Executor: Running task 151.0 in stage 4.0
(TID 1200)
16/08/17 09:28:39 INFO executor.Executor: Finished task 148.0 in stage 4.0
(TID 1197). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 149.0 in stage 4.0
(TID 1198). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 150.0 in stage 4.0
(TID 1199). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 151.0 in stage 4.0
(TID 1200). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1201
16/08/17 09:28:39 INFO executor.Executor: Running task 152.0 in stage 4.0
(TID 1201)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1202
16/08/17 09:28:39 INFO executor.Executor: Running task 153.0 in stage 4.0
(TID 1202)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1203
16/08/17 09:28:39 INFO executor.Executor: Running task 154.0 in stage 4.0
(TID 1203)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1204
16/08/17 09:28:39 INFO executor.Executor: Running task 155.0 in stage 4.0
(TID 1204)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1205
16/08/17 09:28:39 INFO executor.Executor: Running task 156.0 in stage 4.0
(TID 1205)
16/08/17 09:28:39 INFO executor.Executor: Finished task 152.0 in stage 4.0
(TID 1201). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 153.0 in stage 4.0
(TID 1202). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 154.0 in stage 4.0
(TID 1203). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 156.0 in stage 4.0
(TID 1205). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 155.0 in stage 4.0
(TID 1204). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1206
16/08/17 09:28:39 INFO executor.Executor: Running task 157.0 in stage 4.0
(TID 1206)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1207
16/08/17 09:28:39 INFO executor.Executor: Running task 158.0 in stage 4.0
(TID 1207)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1208
16/08/17 09:28:39 INFO executor.Executor: Running task 159.0 in stage 4.0
(TID 1208)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1209
16/08/17 09:28:39 INFO executor.Executor: Running task 160.0 in stage 4.0
(TID 1209)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1210
16/08/17 09:28:39 INFO executor.Executor: Finished task 157.0 in stage 4.0
(TID 1206). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Running task 161.0 in stage 4.0
(TID 1210)
16/08/17 09:28:39 INFO executor.Executor: Finished task 158.0 in stage 4.0
(TID 1207). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 159.0 in stage 4.0
(TID 1208). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.Executor: Finished task 160.0 in stage 4.0
(TID 1209). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1211
16/08/17 09:28:39 INFO executor.Executor: Running task 162.0 in stage 4.0
(TID 1211)
16/08/17 09:28:39 INFO executor.Executor: Finished task 161.0 in stage 4.0
(TID 1210). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1212
16/08/17 09:28:39 INFO executor.Executor: Running task 163.0 in stage 4.0
(TID 1212)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1213
16/08/17 09:28:39 INFO executor.Executor: Running task 164.0 in stage 4.0
(TID 1213)
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1214
16/08/17 09:28:39 INFO executor.Executor: Running task 165.0 in stage 4.0
(TID 1214)
16/08/17 09:28:39 INFO executor.Executor: Finished task 162.0 in stage 4.0
(TID 1211). 903 bytes result sent to driver
16/08/17 09:28:39 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1215
16/08/17 09:28:39 INFO executor.Executor: Finished task 163.0 in stage 4.0
(TID 1212). 903 bytes result 



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7120.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Thanks vkulichenko.

1)I have tried this code as your new method on our production env and submit
to yarn cluster, final result is not correct, it seems that case data was
lost.
val sharedRDD = ic.fromCache(new CacheConfiguration[String,
String]().setCacheMode(CacheMode.REPLICATED)); 

2) this is all the executor logs
spark-submit print logs
$/u01/spark-1.6.0-hive/bin/spark-submit --driver-memory 4G --class
com..ValidSparkCache --master yarn --executor-cores 5 --executor-memory
15000m --num-executors 5 --conf spark.rdd.compress=false --conf
spark.shuffle.compress=false --conf spark.broadcast.compress=false
/u01/xx/spark_zmqpull_engine841.jar                                                  
initalRDD.couner=/. 100000      partition=> 10                                  
*=====>totalcounter20000  paris => 1024         is should be 100000                                 
**=====>10000    *

totally num-executors 5 

==1)=============
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in
[jar:file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/filecache/871/spark-assembly-1.6.0-hadoop2.5.0-cdh5.3.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in
[jar:file:/u01/hbase/hadoop-2.5.0-cdh5.3.0/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
16/08/17 09:28:11 INFO executor.CoarseGrainedExecutorBackend: Registered
signal handlers for [TERM, HUP, INT]
16/08/17 09:28:12 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:12 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:12 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:13 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:13 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:13 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:13 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/17 09:28:13 INFO Remoting: Starting remoting
16/08/17 09:28:13 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkExecutorActorSystem@xxxx:18374]
16/08/17 09:28:13 INFO util.Utils: Successfully started service
'sparkExecutorActorSystem' on port 18374.
16/08/17 09:28:13 INFO storage.DiskBlockManager: Created local directory at
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/blockmgr-5c0d998e-15b8-43c5-b73d-96e1e76af179
16/08/17 09:28:14 INFO storage.MemoryStore: MemoryStore started with
capacity 10.3 GB
16/08/17 09:28:14 INFO executor.CoarseGrainedExecutorBackend: Connecting to
driver: spark://CoarseGrainedScheduler@10.194.70.26:64381
16/08/17 09:28:14 INFO executor.CoarseGrainedExecutorBackend: Successfully
registered with driver
16/08/17 09:28:14 INFO executor.Executor: Starting executor ID 1 on host xxx
16/08/17 09:28:14 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 28593.
16/08/17 09:28:14 INFO netty.NettyBlockTransferService: Server created on
28593
16/08/17 09:28:14 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/17 09:28:14 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/17 09:28:17 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 1
16/08/17 09:28:17 INFO executor.Executor: Running task 1.0 in stage 0.0 (TID
1)
16/08/17 09:28:17 INFO executor.Executor: Fetching
http://10.194.70.26:64443/jars/spark_zmqpull_engine841.jar with timestamp
1471397276248
16/08/17 09:28:17 INFO util.Utils: Fetching
http://xxxxx:64443/jars/spark_zmqpull_engine841.jar to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-a963fd26-783c-4f09-947c-48163270764d/fetchFileTemp8027243307717085221.tmp
16/08/17 09:28:23 INFO util.Utils: Copying
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-a963fd26-783c-4f09-947c-48163270764d/15389795251471397276248_cache
to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000002/./spark_zmqpull_engine841.jar
16/08/17 09:28:24 INFO executor.Executor: Adding
file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000002/./spark_zmqpull_engine841.jar
to class loader
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 0
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0_piece0 stored
as bytes in memory (estimated size 1571.0 B, free 1571.0 B)
16/08/17 09:28:24 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 0 took 128 ms
16/08/17 09:28:24 INFO storage.MemoryStore: Block broadcast_0 stored as
values in memory (estimated size 1608.0 B, free 3.1 KB)
16/08/17 09:28:27 INFO internal.IgniteKernal: 

>>>    __________  ________________  
>>>   /  _/ ___/ |/ /  _/_  __/ __/  
>>>  _/ // (7 7    // /  / / / _/    
>>> /___/\___/_/|_/___/ /_/ /___/   
>>> 
>>> ver. 1.6.0#20160518-sha1:0b22c45b
>>> 2016 Copyright(C) Apache Software Foundation
>>> 
>>> Ignite documentation: http://ignite.apache.org

16/08/17 09:28:27 INFO internal.IgniteKernal: Config URL: n/a
16/08/17 09:28:27 INFO internal.IgniteKernal: Daemon mode: off
16/08/17 09:28:27 INFO internal.IgniteKernal: OS: Linux
2.6.32-220.23.2.ali878.el6.x86_64 amd64
16/08/17 09:28:27 INFO internal.IgniteKernal: OS user: hbase
16/08/17 09:28:27 INFO internal.IgniteKernal: Language runtime: Java
Platform API Specification ver. 1.7
16/08/17 09:28:27 INFO internal.IgniteKernal: VM information: Java(TM) SE
Runtime Environment 1.7.0_79-b15 Oracle Corporation OpenJDK (Alibaba) 64-Bit
Server VM 24.79-b02-internal
16/08/17 09:28:27 INFO internal.IgniteKernal: VM total memory: 14.0GB
16/08/17 09:28:27 INFO internal.IgniteKernal: Remote Management [restart:
off, REST: on, JMX (remote: off)]
16/08/17 09:28:27 INFO internal.IgniteKernal: IGNITE_HOME=null
16/08/17 09:28:27 INFO internal.IgniteKernal: VM arguments:
[-XX:OnOutOfMemoryError=kill %p, -Xms15000m, -Xmx15000m,
-XX:MaxPermSize=256M,
-Djava.io.tmpdir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000002/tmp,
-Dspark.driver.port=64381,
-Dspark.yarn.app.container.log.dir=/u01/hbase/hadoop-2.5.0-cdh5.3.0/logs/userlogs/application_1455892346017_5248/container_1455892346017_5248_01_000002,
-XX:MaxPermSize=256m]
16/08/17 09:28:27 INFO internal.IgniteKernal: Configured caches
['ignite-marshaller-sys-cache', 'ignite-sys-cache',
'ignite-atomics-sys-cache']
16/08/17 09:28:27 INFO internal.IgniteKernal: Non-loopback local IPs: xxxxx
16/08/17 09:28:27 INFO internal.IgniteKernal: Enabled local MACs:
283152A81308
16/08/17 09:28:27 INFO plugin.IgnitePluginProcessor: Configured plugins:
16/08/17 09:28:27 INFO plugin.IgnitePluginProcessor:   ^-- None
16/08/17 09:28:27 INFO plugin.IgnitePluginProcessor: 
16/08/17 09:28:27 INFO tcp.TcpCommunicationSpi: IPC shared memory server
endpoint started [port=48100,
tokDir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000002/tmp/ignite/work/ipc/shmem/6fc9a7ab-ebfc-4d84-8a66-8aa83f4ef9ec-77197]
16/08/17 09:28:27 INFO tcp.TcpCommunicationSpi: Successfully bound shared
memory communication to TCP port [port=48100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:27 INFO tcp.TcpCommunicationSpi: Successfully bound to TCP
port [port=47100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:27 WARN noop.NoopCheckpointSpi: Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
16/08/17 09:28:28 WARN collision.GridCollisionManager: Collision resolution
is disabled (all jobs will be activated upon arrival).
16/08/17 09:28:28 WARN noop.NoopSwapSpaceSpi: Swap space is disabled. To
enable use FileSwapSpaceSpi.
16/08/17 09:28:28 INFO internal.IgniteKernal: Security status
[authentication=off, tls/ssl=off]
16/08/17 09:28:28 INFO tcp.GridTcpRestProtocol: Command protocol
successfully started [name=TCP binary, host=0.0.0.0/0.0.0.0, port=11211]
16/08/17 09:28:28 INFO tcp.TcpDiscoverySpi: Successfully bound to TCP port
[port=47500, localHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:28 WARN multicast.TcpDiscoveryMulticastIpFinder:
TcpDiscoveryMulticastIpFinder has no pre-configured addresses (it is
recommended in production to specify at least one address in
TcpDiscoveryMulticastIpFinder.getAddresses() configuration property)
16/08/17 09:28:29 INFO cache.GridCacheProcessor: Started cache
[name=ignite-marshaller-sys-cache, mode=REPLICATED]
16/08/17 09:28:29 INFO cache.GridCacheProcessor: Started cache
[name=ignite-atomics-sys-cache, mode=PARTITIONED]
16/08/17 09:28:29 INFO cache.GridCacheProcessor: Started cache
[name=ignite-sys-cache, mode=REPLICATED]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-sys-cache, waitList=[]]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-marshaller-sys-cache, waitList=[]]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Cache
rebalancing scheduled: [cache=ignite-atomics-sys-cache,
waitList=[ignite-sys-cache, ignite-marshaller-sys-cache]]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Rebalancing
required [top=AffinityTopologyVersion [topVer=2, minorTopVer=0],
evt=NODE_JOINED, node=6fc9a7ab-ebfc-4d84-8a66-8aa83f4ef9ec]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-marshaller-sys-cache> Starting rebalancing
[cache=ignite-marshaller-sys-cache, mode=SYNC,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03, partitionsCount=20,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-sys-cache> Starting rebalancing [cache=ignite-sys-cache, mode=SYNC,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03, partitionsCount=100,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-marshaller-sys-cache> Completed (final) rebalancing
[cache=ignite-marshaller-sys-cache,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=20 ms]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-sys-cache> Completed (final) rebalancing [cache=ignite-sys-cache,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=20 ms]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-atomics-sys-cache> Starting rebalancing
[cache=ignite-atomics-sys-cache, mode=SYNC,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03, partitionsCount=500,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], updateSeq=1]
16/08/17 09:28:30 INFO preloader.GridDhtPartitionDemander:
<ignite-atomics-sys-cache> Completed (final) rebalancing
[cache=ignite-atomics-sys-cache,
fromNode=c2671205-0499-428b-b2a3-c180a70a6c03,
topology=AffinityTopologyVersion [topVer=2, minorTopVer=0], time=61 ms]
16/08/17 09:28:30 INFO internal.IgniteKernal: To start Console Management &
Monitoring run ignitevisorcmd.{sh|bat}
16/08/17 09:28:30 INFO internal.IgniteKernal: 
16/08/17 09:28:30 INFO internal.IgniteKernal: 

>>> +----------------------------------------------------------------------+
>>> Ignite ver. 1.6.0#20160518-sha1:0b22c45bb9b97692208fd0705ddf8045ff34a031
>>> +----------------------------------------------------------------------+
>>> OS name: Linux 2.6.32-220.23.2.ali878.el6.x86_64 amd64
>>> CPU(s): 24
>>> Heap: 15.0GB
>>> VM name: 77197@xxxx
>>> Local node [ID=6FC9A7AB-EBFC-4D84-8A66-8AA83F4EF9EC, order=2,
>>> clientMode=false]
>>> Local node addresses: [xxxx, /127.0.0.1]
>>> Local ports: TCP:11211 TCP:47100 UDP:47400 TCP:47500 TCP:48100 

16/08/17 09:28:30 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=2, servers=2, clients=0, CPUs=48, heap=29.0GB]
16/08/17 09:28:30 INFO executor.Executor: Finished task 1.0 in stage 0.0
(TID 1). 903 bytes result sent to driver
16/08/17 09:28:31 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=1], evt=DISCOVERY_CUSTOM_EVT,
node=c2671205-0499-428b-b2a3-c180a70a6c03]
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 9
16/08/17 09:28:33 INFO executor.Executor: Running task 4.0 in stage 1.0 (TID
9)
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 14
16/08/17 09:28:33 INFO executor.Executor: Running task 9.0 in stage 1.0 (TID
14)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 1
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1_piece0 stored
as bytes in memory (estimated size 1845.0 B, free 1845.0 B)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 1 took 13 ms
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1 stored as
values in memory (estimated size 1888.0 B, free 3.6 KB)
16/08/17 09:28:33 INFO executor.Executor: Finished task 9.0 in stage 1.0
(TID 14). 905 bytes result sent to driver
16/08/17 09:28:33 INFO executor.Executor: Finished task 4.0 in stage 1.0
(TID 9). 905 bytes result sent to driver
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 18
16/08/17 09:28:34 INFO executor.Executor: Running task 3.0 in stage 2.0 (TID
18)
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 23
16/08/17 09:28:34 INFO executor.Executor: Running task 8.0 in stage 2.0 (TID
23)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 2
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2_piece0 stored
as bytes in memory (estimated size 2.9 KB, free 6.6 KB)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 2 took 13 ms
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2 stored as
values in memory (estimated size 3.0 KB, free 9.5 KB)
16/08/17 09:28:34 INFO cache.GridCacheProcessor: Started cache
[name=sharedBaselineCacheRDD, mode=PARTITIONED]
16/08/17 09:28:34 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=2], evt=DISCOVERY_CUSTOM_EVT,
node=c2671205-0499-428b-b2a3-c180a70a6c03]
16/08/17 09:28:35 INFO executor.Executor: Finished task 8.0 in stage 2.0
(TID 23). 903 bytes result sent to driver
16/08/17 09:28:35 INFO executor.Executor: Finished task 3.0 in stage 2.0
(TID 18). 903 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2077
16/08/17 09:28:40 INFO executor.Executor: Running task 4.0 in stage 5.0 (TID
2077)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2082
16/08/17 09:28:40 INFO executor.Executor: Running task 9.0 in stage 5.0 (TID
2082)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2087
16/08/17 09:28:40 INFO executor.Executor: Running task 14.0 in stage 5.0
(TID 2087)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2092
16/08/17 09:28:40 INFO executor.Executor: Running task 19.0 in stage 5.0
(TID 2092)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2097
16/08/17 09:28:40 INFO executor.Executor: Running task 24.0 in stage 5.0
(TID 2097)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 5
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5_piece0 stored
as bytes in memory (estimated size 2.7 KB, free 12.2 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 5 took 10 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5 stored as
values in memory (estimated size 2.7 KB, free 15.0 KB)
16/08/17 09:28:40 INFO executor.Executor: Finished task 9.0 in stage 5.0
(TID 2082). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 4.0 in stage 5.0
(TID 2077). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 19.0 in stage 5.0
(TID 2092). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 24.0 in stage 5.0
(TID 2097). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 14.0 in stage 5.0
(TID 2087). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2113
16/08/17 09:28:40 INFO executor.Executor: Running task 40.0 in stage 5.0
(TID 2113)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2114
16/08/17 09:28:40 INFO executor.Executor: Running task 41.0 in stage 5.0
(TID 2114)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2115
16/08/17 09:28:40 INFO executor.Executor: Running task 42.0 in stage 5.0
(TID 2115)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2116
16/08/17 09:28:40 INFO executor.Executor: Running task 43.0 in stage 5.0
(TID 2116)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2117
16/08/17 09:28:40 INFO executor.Executor: Running task 44.0 in stage 5.0
(TID 2117)
16/08/17 09:28:40 INFO executor.Executor: Finished task 42.0 in stage 5.0
(TID 2115). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 44.0 in stage 5.0
(TID 2117). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 43.0 in stage 5.0
(TID 2116). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 40.0 in stage 5.0
(TID 2113). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 41.0 in stage 5.0
(TID 2114). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2124
16/08/17 09:28:40 INFO executor.Executor: Running task 1.0 in stage 6.0 (TID
2124)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2129
16/08/17 09:28:40 INFO executor.Executor: Running task 5.0 in stage 6.0 (TID
2129)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2134
16/08/17 09:28:40 INFO executor.Executor: Running task 10.0 in stage 6.0
(TID 2134)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2139
16/08/17 09:28:40 INFO executor.Executor: Running task 15.0 in stage 6.0
(TID 2139)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Updating epoch to 1 and
clearing cache
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 6
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6_piece0 stored
as bytes in memory (estimated size 2.5 KB, free 17.5 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 6 took 10 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6 stored as
values in memory (estimated size 2.6 KB, free 20.0 KB)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Doing the fetch;
tracker endpoint =
NettyRpcEndpointRef(spark://MapOutputTracker@10.194.70.26:64381)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Got the output
locations
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 0 remote
fetches in 2 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 11 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 14 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 13 ms
16/08/17 09:28:40 INFO executor.Executor: Finished task 5.0 in stage 6.0
(TID 2129). 1172 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 10.0 in stage 6.0
(TID 2134). 1172 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 15.0 in stage 6.0
(TID 2139). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 1.0 in stage 6.0
(TID 2124). 1172 bytes result sent to driver
16/08/17 09:28:42 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2150
16/08/17 09:28:42 INFO executor.Executor: Running task 0.0 in stage 14.0
(TID 2150)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 14
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_14_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 82.4 KB)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 14 took 12 ms
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_14 stored as
values in memory (estimated size 62.4 KB, free 144.8 KB)
16/08/17 09:28:42 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:28:43 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2152
16/08/17 09:28:43 INFO executor.Executor: Running task 0.0 in stage 16.0
(TID 2152)
16/08/17 09:28:43 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 16
16/08/17 09:28:43 INFO storage.MemoryStore: Block broadcast_16_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 207.2 KB)
16/08/17 09:28:43 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 16 took 10 ms
16/08/17 09:28:43 INFO storage.MemoryStore: Block broadcast_16 stored as
values in memory (estimated size 62.4 KB, free 269.6 KB)
16/08/17 09:28:43 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:43 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:43 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:43 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 30
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 29
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 28
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 18
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 19
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 20
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 21
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 22
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 23
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 24
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 25
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 26
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 27
16/08/17 09:29:30 INFO internal.IgniteKernal: 
Metrics for local node (to disable set 'metricsLogFrequency' to 0)
    ^-- Node [id=6fc9a7ab, name=null, uptime=00:01:00:008]
    ^-- H/N/C [hosts=2, nodes=2, CPUs=48]
    ^-- CPU [cur=0.13%, avg=1.2%, GC=0%]
    ^-- Heap [used=2651MB, free=81.56%, comm=14375MB]
    ^-- Non heap [used=59MB, free=80.42%, comm=59MB]
    ^-- Public thread pool [active=0, idle=48, qSize=0]
    ^-- System thread pool [active=0, idle=48, qSize=0]
    ^-- Outbound messages queue [size=0]
16/08/17 09:29:39 INFO cluster.GridUpdateNotifier: Update status is not
available.
16/08/17 09:29:40 INFO storage.BlockManager: Removing RDD 43
16/08/17 09:29:40 INFO storage.BlockManager: Removing RDD 42

==2)=============
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in
[jar:file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/filecache/818/spark-assembly-1.6.0-hadoop2.5.0-cdh5.3.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in
[jar:file:/u01/hbase/hadoop-2.5.0-cdh5.3.0/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
16/08/17 09:28:13 INFO executor.CoarseGrainedExecutorBackend: Registered
signal handlers for [TERM, HUP, INT]
16/08/17 09:28:14 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:14 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO spark.SecurityManager: Changing view acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: Changing modify acls to: hbase
16/08/17 09:28:15 INFO spark.SecurityManager: SecurityManager:
authentication disabled; ui acls disabled; users with view permissions:
Set(hbase); users with modify permissions: Set(hbase)
16/08/17 09:28:15 INFO slf4j.Slf4jLogger: Slf4jLogger started
16/08/17 09:28:16 INFO Remoting: Starting remoting
16/08/17 09:28:16 INFO Remoting: Remoting started; listening on addresses
:[akka.tcp://sparkExecutorActorSystem@xxx:30500]
16/08/17 09:28:16 INFO util.Utils: Successfully started service
'sparkExecutorActorSystem' on port 30500.
16/08/17 09:28:16 INFO storage.DiskBlockManager: Created local directory at
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/blockmgr-46f4b00b-c1ce-4c08-b96c-508af544e8f3
16/08/17 09:28:16 INFO storage.MemoryStore: MemoryStore started with
capacity 10.3 GB
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Connecting to
driver: spark://CoarseGrainedScheduler@10.194.70.26:64381
16/08/17 09:28:16 INFO executor.CoarseGrainedExecutorBackend: Successfully
registered with driver
16/08/17 09:28:16 INFO executor.Executor: Starting executor ID 2 on host xx
16/08/17 09:28:16 INFO util.Utils: Successfully started service
'org.apache.spark.network.netty.NettyBlockTransferService' on port 34050.
16/08/17 09:28:16 INFO netty.NettyBlockTransferService: Server created on
34050
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Trying to register
BlockManager
16/08/17 09:28:16 INFO storage.BlockManagerMaster: Registered BlockManager
16/08/17 09:28:17 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 3
16/08/17 09:28:17 INFO executor.Executor: Running task 3.0 in stage 0.0 (TID
3)
16/08/17 09:28:17 INFO executor.Executor: Fetching
http://10.194.70.26:64443/jars/spark_zmqpull_engine841.jar with timestamp
1471397276248
16/08/17 09:28:17 INFO util.Utils: Fetching
http://10.194.70.26:64443/jars/spark_zmqpull_engine841.jar to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-15ae60da-1f76-49fb-998e-ebac19da08a5/fetchFileTemp6372437656391040566.tmp
16/08/17 09:28:21 INFO util.Utils: Copying
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/spark-15ae60da-1f76-49fb-998e-ebac19da08a5/15389795251471397276248_cache
to
/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000003/./spark_zmqpull_engine841.jar
16/08/17 09:28:22 INFO executor.Executor: Adding
file:/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000003/./spark_zmqpull_engine841.jar
to class loader
16/08/17 09:28:22 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 0
16/08/17 09:28:23 INFO storage.MemoryStore: Block broadcast_0_piece0 stored
as bytes in memory (estimated size 1571.0 B, free 1571.0 B)
16/08/17 09:28:23 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 0 took 277 ms
16/08/17 09:28:23 INFO storage.MemoryStore: Block broadcast_0 stored as
values in memory (estimated size 1608.0 B, free 3.1 KB)
16/08/17 09:28:23 INFO internal.IgniteKernal: 

>>>    __________  ________________  
>>>   /  _/ ___/ |/ /  _/_  __/ __/  
>>>  _/ // (7 7    // /  / / / _/    
>>> /___/\___/_/|_/___/ /_/ /___/   
>>> 
>>> ver. 1.6.0#20160518-sha1:0b22c45b
>>> 2016 Copyright(C) Apache Software Foundation
>>> 
>>> Ignite documentation: http://ignite.apache.org

16/08/17 09:28:23 INFO internal.IgniteKernal: Config URL: n/a
16/08/17 09:28:23 INFO internal.IgniteKernal: Daemon mode: off
16/08/17 09:28:23 INFO internal.IgniteKernal: OS: Linux
2.6.32-220.23.2.ali878.el6.x86_64 amd64
16/08/17 09:28:23 INFO internal.IgniteKernal: OS user: hbase
16/08/17 09:28:23 INFO internal.IgniteKernal: Language runtime: Java
Platform API Specification ver. 1.7
16/08/17 09:28:23 INFO internal.IgniteKernal: VM information: Java(TM) SE
Runtime Environment 1.7.0_79-b15 Oracle Corporation OpenJDK (Alibaba) 64-Bit
Server VM 24.79-b02-internal
16/08/17 09:28:23 INFO internal.IgniteKernal: VM total memory: 14.0GB
16/08/17 09:28:23 INFO internal.IgniteKernal: Remote Management [restart:
off, REST: on, JMX (remote: off)]
16/08/17 09:28:23 INFO internal.IgniteKernal: IGNITE_HOME=null
16/08/17 09:28:23 INFO internal.IgniteKernal: VM arguments:
[-XX:OnOutOfMemoryError=kill %p, -Xms15000m, -Xmx15000m,
-XX:MaxPermSize=256M,
-Djava.io.tmpdir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000003/tmp,
-Dspark.driver.port=64381,
-Dspark.yarn.app.container.log.dir=/u01/hbase/hadoop-2.5.0-cdh5.3.0/logs/userlogs/application_1455892346017_5248/container_1455892346017_5248_01_000003,
-XX:MaxPermSize=256m]
16/08/17 09:28:23 INFO internal.IgniteKernal: Configured caches
['ignite-marshaller-sys-cache', 'ignite-sys-cache',
'ignite-atomics-sys-cache']
16/08/17 09:28:23 INFO internal.IgniteKernal: Non-loopback local IPs:
10.194.62.14
16/08/17 09:28:23 INFO internal.IgniteKernal: Enabled local MACs:
283152A835B8
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor: Configured plugins:
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor:   ^-- None
16/08/17 09:28:23 INFO plugin.IgnitePluginProcessor: 
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: IPC shared memory server
endpoint started [port=48100,
tokDir=/u01/hbase/tmp/nm-local-dir/usercache/hbase/appcache/application_1455892346017_5248/container_1455892346017_5248_01_000003/tmp/ignite/work/ipc/shmem/bc7e0b69-22f1-499b-8363-4291fff4a50e-22030]
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: Successfully bound shared
memory communication to TCP port [port=48100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:23 INFO tcp.TcpCommunicationSpi: Successfully bound to TCP
port [port=47100, locHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:23 WARN noop.NoopCheckpointSpi: Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
16/08/17 09:28:23 WARN collision.GridCollisionManager: Collision resolution
is disabled (all jobs will be activated upon arrival).
16/08/17 09:28:23 WARN noop.NoopSwapSpaceSpi: Swap space is disabled. To
enable use FileSwapSpaceSpi.
16/08/17 09:28:23 INFO internal.IgniteKernal: Security status
[authentication=off, tls/ssl=off]
16/08/17 09:28:24 INFO tcp.GridTcpRestProtocol: Command protocol
successfully started [name=TCP binary, host=0.0.0.0/0.0.0.0, port=11211]
16/08/17 09:28:24 INFO tcp.TcpDiscoverySpi: Successfully bound to TCP port
[port=47500, localHost=0.0.0.0/0.0.0.0]
16/08/17 09:28:24 WARN multicast.TcpDiscoveryMulticastIpFinder:
TcpDiscoveryMulticastIpFinder has no pre-configured addresses (it is
recommended in production to specify at least one address in
TcpDiscoveryMulticastIpFinder.getAddresses() configuration property)
16/08/17 09:28:26 INFO cache.GridCacheProcessor: Started cache
[name=ignite-marshaller-sys-cache, mode=REPLICATED]
16/08/17 09:28:26 INFO cache.GridCacheProcessor: Started cache
[name=ignite-atomics-sys-cache, mode=PARTITIONED]
16/08/17 09:28:26 INFO cache.GridCacheProcessor: Started cache
[name=ignite-sys-cache, mode=REPLICATED]
16/08/17 09:28:26 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=1,
minorTopVer=0], evt=NODE_JOINED, node=bc7e0b69-22f1-499b-8363-4291fff4a50e]
16/08/17 09:28:26 INFO internal.IgniteKernal: To start Console Management &
Monitoring run ignitevisorcmd.{sh|bat}
16/08/17 09:28:26 INFO internal.IgniteKernal: 
16/08/17 09:28:26 INFO internal.IgniteKernal: 

>>> +----------------------------------------------------------------------+
>>> Ignite ver. 1.6.0#20160518-sha1:0b22c45bb9b97692208fd0705ddf8045ff34a031
>>> +----------------------------------------------------------------------+
>>> OS name: Linux 2.6.32-220.23.2.ali878.el6.x86_64 amd64
>>> CPU(s): 24
>>> Heap: 15.0GB
>>> VM name: 22030@xxx
>>> Local node [ID=BC7E0B69-22F1-499B-8363-4291FFF4A50E, order=1,
>>> clientMode=false]
>>> Local node addresses: [xxx, /127.0.0.1]
>>> Local ports: TCP:11211 TCP:47100 UDP:47400 TCP:47500 TCP:48100 

16/08/17 09:28:26 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=1, servers=1, clients=0, CPUs=24, heap=15.0GB]
16/08/17 09:28:26 INFO executor.Executor: Finished task 3.0 in stage 0.0
(TID 3). 903 bytes result sent to driver
16/08/17 09:28:28 INFO discovery.GridDiscoveryManager: Added new node to
topology: TcpDiscoveryNode [id=150c335f-9127-4771-a035-25ac29a286a9,
addrs=[10.194.62.42, 127.0.0.1], sockAddrs=[xxx:47500, /xxx:47500,
/127.0.0.1:47500], discPort=47500, order=2, intOrder=2,
lastExchangeTime=1471397308216, loc=false, ver=1.6.0#20160518-sha1:0b22c45b,
isClient=false]
16/08/17 09:28:28 INFO discovery.GridDiscoveryManager: Topology snapshot
[ver=2, servers=2, clients=0, CPUs=48, heap=29.0GB]
16/08/17 09:28:29 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=0], evt=NODE_JOINED, node=150c335f-9127-4771-a035-25ac29a286a9]
16/08/17 09:28:30 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=1], evt=DISCOVERY_CUSTOM_EVT,
node=bc7e0b69-22f1-499b-8363-4291fff4a50e]
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 5
16/08/17 09:28:33 INFO executor.Executor: Running task 0.0 in stage 1.0 (TID
5)
16/08/17 09:28:33 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 10
16/08/17 09:28:33 INFO executor.Executor: Running task 5.0 in stage 1.0 (TID
10)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 1
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1_piece0 stored
as bytes in memory (estimated size 1845.0 B, free 1845.0 B)
16/08/17 09:28:33 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 1 took 11 ms
16/08/17 09:28:33 INFO storage.MemoryStore: Block broadcast_1 stored as
values in memory (estimated size 1888.0 B, free 3.6 KB)
16/08/17 09:28:33 INFO executor.Executor: Finished task 0.0 in stage 1.0
(TID 5). 905 bytes result sent to driver
16/08/17 09:28:33 INFO executor.Executor: Finished task 5.0 in stage 1.0
(TID 10). 905 bytes result sent to driver
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 17
16/08/17 09:28:34 INFO executor.Executor: Running task 2.0 in stage 2.0 (TID
17)
16/08/17 09:28:34 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 22
16/08/17 09:28:34 INFO executor.Executor: Running task 7.0 in stage 2.0 (TID
22)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 2
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2_piece0 stored
as bytes in memory (estimated size 2.9 KB, free 6.6 KB)
16/08/17 09:28:34 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 2 took 11 ms
16/08/17 09:28:34 INFO storage.MemoryStore: Block broadcast_2 stored as
values in memory (estimated size 3.0 KB, free 9.5 KB)
16/08/17 09:28:34 INFO cache.GridCacheProcessor: Started cache
[name=sharedBaselineCacheRDD, mode=PARTITIONED]
16/08/17 09:28:34 INFO cache.GridCachePartitionExchangeManager: Skipping
rebalancing (nothing scheduled) [top=AffinityTopologyVersion [topVer=2,
minorTopVer=2], evt=DISCOVERY_CUSTOM_EVT,
node=bc7e0b69-22f1-499b-8363-4291fff4a50e]
16/08/17 09:28:35 INFO executor.Executor: Finished task 7.0 in stage 2.0
(TID 22). 903 bytes result sent to driver
16/08/17 09:28:35 INFO executor.Executor: Finished task 2.0 in stage 2.0
(TID 17). 903 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2074
16/08/17 09:28:40 INFO executor.Executor: Running task 1.0 in stage 5.0 (TID
2074)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2079
16/08/17 09:28:40 INFO executor.Executor: Running task 6.0 in stage 5.0 (TID
2079)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2084
16/08/17 09:28:40 INFO executor.Executor: Running task 11.0 in stage 5.0
(TID 2084)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2089
16/08/17 09:28:40 INFO executor.Executor: Running task 16.0 in stage 5.0
(TID 2089)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2094
16/08/17 09:28:40 INFO executor.Executor: Running task 21.0 in stage 5.0
(TID 2094)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 5
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5_piece0 stored
as bytes in memory (estimated size 2.7 KB, free 12.2 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 5 took 64 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_5 stored as
values in memory (estimated size 2.7 KB, free 15.0 KB)
16/08/17 09:28:40 INFO executor.Executor: Finished task 21.0 in stage 5.0
(TID 2094). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 6.0 in stage 5.0
(TID 2079). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 1.0 in stage 5.0
(TID 2074). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 16.0 in stage 5.0
(TID 2089). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 11.0 in stage 5.0
(TID 2084). 1162 bytes result sent to driver
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2125
16/08/17 09:28:40 INFO executor.Executor: Running task 2.0 in stage 6.0 (TID
2125)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2130
16/08/17 09:28:40 INFO executor.Executor: Running task 7.0 in stage 6.0 (TID
2130)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2135
16/08/17 09:28:40 INFO executor.Executor: Running task 12.0 in stage 6.0
(TID 2135)
16/08/17 09:28:40 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2140
16/08/17 09:28:40 INFO executor.Executor: Running task 17.0 in stage 6.0
(TID 2140)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Updating epoch to 1 and
clearing cache
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 6
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6_piece0 stored
as bytes in memory (estimated size 2.5 KB, free 17.5 KB)
16/08/17 09:28:40 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 6 took 9 ms
16/08/17 09:28:40 INFO storage.MemoryStore: Block broadcast_6 stored as
values in memory (estimated size 2.6 KB, free 20.0 KB)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Don't have map outputs
for shuffle 0, fetching them
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Doing the fetch;
tracker endpoint =
NettyRpcEndpointRef(spark://MapOutputTracker@10.194.70.26:64381)
16/08/17 09:28:40 INFO spark.MapOutputTrackerWorker: Got the output
locations
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 2
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Getting 3
non-empty blocks out of 50 blocks
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 11 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 8 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 7 ms
16/08/17 09:28:40 INFO storage.ShuffleBlockFetcherIterator: Started 1 remote
fetches in 12 ms
16/08/17 09:28:40 INFO executor.Executor: Finished task 17.0 in stage 6.0
(TID 2140). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 7.0 in stage 6.0
(TID 2130). 1172 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 12.0 in stage 6.0
(TID 2135). 1166 bytes result sent to driver
16/08/17 09:28:40 INFO executor.Executor: Finished task 2.0 in stage 6.0
(TID 2125). 1172 bytes result sent to driver
16/08/17 09:28:41 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2143
16/08/17 09:28:41 INFO executor.Executor: Running task 0.0 in stage 7.0 (TID
2143)
16/08/17 09:28:41 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 7
16/08/17 09:28:41 INFO storage.MemoryStore: Block broadcast_7_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 82.4 KB)
16/08/17 09:28:41 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 7 took 10 ms
16/08/17 09:28:41 INFO storage.MemoryStore: Block broadcast_7 stored as
values in memory (estimated size 62.4 KB, free 144.8 KB)
16/08/17 09:28:41 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:41 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:41 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:41 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:41 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:41 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:28:42 INFO executor.CoarseGrainedExecutorBackend: Got assigned
task 2145
16/08/17 09:28:42 INFO executor.Executor: Running task 0.0 in stage 9.0 (TID
2145)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Started reading broadcast
variable 9
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_9_piece0 stored
as bytes in memory (estimated size 62.4 KB, free 207.2 KB)
16/08/17 09:28:42 INFO broadcast.TorrentBroadcast: Reading broadcast
variable 9 took 11 ms
16/08/17 09:28:42 INFO storage.MemoryStore: Block broadcast_9 stored as
values in memory (estimated size 62.4 KB, free 269.6 KB)
16/08/17 09:28:42 INFO util.RecurringTimer: Started timer for BlockGenerator
at time 1471397324000
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started BlockGenerator
16/08/17 09:28:42 INFO receiver.BlockGenerator: Started block pushing thread
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Starting receiver
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Called receiver
onStart
16/08/17 09:28:42 INFO receiver.ReceiverSupervisorImpl: Waiting for receiver
to be stopped
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 29
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 30
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 28
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 18
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 19
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 20
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 21
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 22
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 23
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 24
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 25
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 26
16/08/17 09:29:20 INFO storage.BlockManager: Removing RDD 27
16/08/17 09:29:26 INFO internal.IgniteKernal: 
Metrics for local node (to disable set 'metricsLogFrequency' to 0)



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7119.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
Hi,

Can you provide the Ignite logs from the driver and all the executors? Is
there a node on each executor? It seems to me that some of the Ignite nodes
are stopped after the data is loaded. I embedded mode it should happen only
if executor is stopped and we should see this in the logs.

Can you also try to switch the cache to replicated mode and check if it
changes anything? To do this create the RDD like this:

val sharedRDD = ic.fromCache(new CacheConfiguration[String,
String]().setCacheMode(CacheMode.REPLICATED));

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7079.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
Thanks vkulichenko!!!!

I will describe my issues detailed as below. I have the same code on two
scenarios  but firestone is correct and second one is not correct.

I'm studying ignite recent days but can't get correct result on
this....Hopefully anyone can help me on this.

==============================
1、Run ignite with spark-shell
1)./spark-shell --jars
/u01/xxx/apache-ignite-hadoop-1.6.0-bin/libs/ignite-core-1.6.0.jar,/u01/xxx/apache-ignite-hadoop-1.6.0-bin/libs/ignite-spark/ignite-spark-1.6.0.jar,/u01/xxx/apache-ignite-hadoop-1.6.0-bin/libs/cache-api-1.0.0.jar,/u01/xxx/apache-ignite-hadoop-1.6.0-bin/libs/ignite-log4j/ignite-log4j-1.6.0.jar,/u01/xxx/apache-ignite-hadoop-1.6.0-bin/libs/ignite-log4j/log4j-1.2.17.jar
--packages
org.apache.ignite:ignite-spark:1.6.0,org.apache.ignite:ignite-spring:1.6.0

2)running the following code on spark-shell
val ic = new IgniteContext[Int, Int](sc, () => new
IgniteConfiguration(),false)
    val sharedRDD = ic.fromCache("sharedBaselineCacheRDD")
    val initalRDD = sc.parallelize(1 to 100000,10).map(i => (i, i))
    println("initalRDD.counter=/. " + initalRDD.count() +"\t
partitionCounter=> " + initalRDD.partitions.size)

    //sharedRDD.saveValues(initalRDD.map(line=>line._1))
    sharedRDD.savePairs(initalRDD, true)//override cache on ignite
    println("=====>totalIgniteEmbedCounter" + sharedRDD.count + "\t
igniteParitionCounter => " + sharedRDD.partitions.size)
    println("=====>totalIgniteFilterConditionEmbedCounter" +
sharedRDD.filter(_._2 > 50000).count)

3)result as below
scala> import org.apache.ignite.spark._
import org.apache.ignite.spark._

scala> import org.apache.ignite.configuration._
import org.apache.ignite.configuration._

scala> val ic = new IgniteContext[Int, Int](sc, () => new
IgniteConfiguration(),false)
ic: org.apache.ignite.spark.IgniteContext[Int,Int] =
org.apache.ignite.spark.IgniteContext@74e72ff4

scala>     val sharedRDD = ic.fromCache("sharedBaselineCacheRDD")
sharedRDD: org.apache.ignite.spark.IgniteRDD[Int,Int] = IgniteRDD[1] at RDD
at IgniteAbstractRDD.scala:31

scala>     val initalRDD = sc.parallelize(1 to 100000,10).map(i => (i, i))
initalRDD: org.apache.spark.rdd.RDD[(Int, Int)] = MapPartitionsRDD[3] at map
at <console>:33

scala>     println("initalRDD.counter=/. " + initalRDD.count() +"\t
partitionCounter=> " + initalRDD.partitions.size)
initalRDD.counter=/. 100000	 partitionCounter=> 10

scala> sharedRDD.savePairs(initalRDD, true)//override cache on ignite
                                                                                
scala>     println("=====>totalIgniteEmbedCounter" + sharedRDD.count + "\t
igniteParitionCounter => " + sharedRDD.partitions.size)
*=====>totalIgniteEmbedCounter100000      igniteParitionCounter => 1024          
*
scala>     println("=====>totalIgniteFilterConditionEmbedCounter" +
sharedRDD.filter(_._2 > 50000).count)
*=====>totalIgniteFilterConditionEmbedCounter50000    *

totalIgniteEmbedCounter is :100000 ,right
totalIgniteFilterConditionEmbedCounteris :50000, right
==============================


2、IDEA project
1)create a maven project on idea
2) import ignite maven files as above [1]
3)code as below for idea
object TestIgniteEmbedCache {
  def main(args: Array[String]) {
    val conf = new SparkConf().setAppName("TestIgniteEmbedCache")
    val sc = new SparkContext(conf)

    //val ic = new IgniteContext[Int, Int](sc, () => new
IgniteConfiguration().setIncludeEventTypes(EventType.EVT_TASK_FAILED),false)
    val ic = new IgniteContext[Int, Int](sc, () => new
IgniteConfiguration(),false)
    val sharedRDD = ic.fromCache("sharedBaselineCacheRDD")
    val initalRDD = sc.parallelize(1 to 100000,10).map(i => (i, i))
    println("initalRDD.counter=/. " + initalRDD.count() +"\t
partitionCounter=> " + initalRDD.partitions.size)

    //sharedRDD.saveValues(initalRDD.map(line=>line._1))
    sharedRDD.savePairs(initalRDD, true)//override cache on ignite
    println("=====>totalIgniteEmbedCounter" + sharedRDD.count + "\t
igniteParitionCounter => " + sharedRDD.partitions.size)
    println("=====>totalIgniteFilterConditionEmbedCounter" +
sharedRDD.filter(_._2 > 50000).count)

  }

}
4、running maven clean assembly:assembly and get sparkignitedemo.jar

5、upload this jar to our linux driver machine and submit jar to yarn cluster
using spark-submit command as below

/u01/spark-1.6.0-hive/bin/spark-submit --driver-memory 8G --class
com.TestIgniteEmbedCache *--master yarn *--executor-cores 5
--executor-memory 1000m --num-executors 10 --conf spark.rdd.compress=false
--conf spark.shuffle.compress=false --conf spark.broadcast.compress=false
/home/sparkignitedemo.jar


6、result: this is issue on this
totalIgniteEmbedCounter is : 40000 or 3000(I think is random)
totalIgniteFilterConditionEmbedCounteris :10000 or 2000(random)
==========================

This result is very make me confused on this why the same code have two
different result on this? Can anyone help me on this? I'm blocking this
issue on sereval days. If I can't still fix this issue and I will consider
other solutions NOT ignite.

Thanks!!!




--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7039.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by vkulichenko <va...@gmail.com>.
Hi,

We're missing something here... Can you go through the steps described in
[1] and let me know if get correct results there?

Also if you can create a small project on GitHub that I can use to reproduce
the issue, that would be great.

[1]
https://apacheignite-fs.readme.io/docs/testing-integration-with-spark-shell

-Val



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7026.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
I verified this code as below

val ic = new IgniteContext[Int, Int](sc, () => new
IgniteConfiguration(),false)
    val sharedRDD = ic.fromCache("sharedBaselineCacheRDD")
    val initalRDD = sc.parallelize(1 to 100000,10).map(i => (i, i))
    println("initalRDD.couner=/. " + initalRDD.count() +"\tparition=> " +
initalRDD.partitions.size)
    sharedRDD.savePairs(initalRDD)
    println("=====>totalcounter" + sharedRDD.count + "\t paris => " +
sharedRDD.partitions.size)
    println("=====>" + sharedRDD.filter(_._2 > 50000).count)

but this result is not what i need, 

define shared context start
define shared context end                                                       
[Stage 1:=====================================================>   (28 + 2) /
30][09:29:21] New version is available at ignite.apache.org: 1.7.0
initalRDD.couner=/. 100000      parition=> 10                                   
=====>totalcounter40000  paris => 1024  (need to be 10000)                                        
=====>10000                                                                     
==


Can anyone help me on this issues? Thanks!!!



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p7001.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by percent620 <pe...@163.com>.
thaks ,Alisher,

Can you also give more ideas about discard datas for ignite cache? thanks!



--
View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942p6999.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Embedded mode ignite on spark

Posted by Alisher Alimov <al...@gmail.com>.
Hi!

I want to notice that totalCounter var is not passed to job by reference, that why you retrieves the different values on computation, and it is not a good idea to change the var outside fun context

If you wan’t to calculate totalCount use map that reduce result

With best regards
Alisher Alimov
alimovalisher@gmail.com




> On 11 авг. 2016 г., at 8:09, percent620 <pe...@163.com> wrote:
> 
> Hello, I want to integrate ignite with spark on Embedded mode , and here is
> my detailed steps for this.
> 
> 1、added maven dependencies for pom.xml
> 
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-core</artifactId>
>            <version>1.6.0</version>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-indexing</artifactId>
>            <version>1.6.0</version>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-visor-console</artifactId>
>            <version>1.6.0</version>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-spring</artifactId>
>            <version>1.6.0</version>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-spark</artifactId>
>            <version>1.6.0</version>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.ignite</groupId>
>            <artifactId>ignite-yarn</artifactId>
>            <version>1.6.0</version>
>        </dependency>
> 
> 2、Write spark code and submit these code to yarn application, and the code
> is
> val igniteContext = new IgniteContext[String, BaseLine](sc,() => new
> IgniteConfiguration(),false)
> 
> false: is embedded mode for ignite, right?
> tempDStream.foreachRDD(rdd =>{
>      val rddCounter = rdd.count().toInt
> totallyCounter += rddCounter
> println(DateUtil.getNowDate() + " invoked! count=" + rddCounter +
> ";totallyCounter= => " + totallyCounter)
> if(!rdd.isEmpty()) {
>        //==================================start======
>        val cacheRdd = igniteContext.fromCache("partitioned")
> 
>       //fianlLatestBaselineRDD: total rdd that need to cache on ignite
>       cacheRdd.savePairs(fianlLatestBaselineRDD)
> 
> println("xx=> " + xxx() +"\t " +
>          " xxx => " + xxx() + "\t " +
>          " cacheRdd.counter=> " + cacheRdd.count())
> }
> 
> 
> 
> }
> 3、the code is running on yarn successfully and I found that the ignite can't
> cache all the datas,and it discard some datas, such as
> 2016-08-11 11:28:00:es write invoked! count=10;totally totallyCounter= => 10
> cacheRdd.start.counter=> 0
> 2、cacheRdd.start.fianlLatestBaselineRDD.counter=> 10
> xxx.count=> 140       yyy.count => 10	  cacheRdd.counter=> 5(need to be 10)
> =======================================================================================================================
> 2016-08-11 11:28:48:write invoked! count= 9;totallyCounter= => 19
> cacheRdd.start.counter=> 5
> xxxx.count=> 126       yyy.count => 9	  cacheRdd.counter=> 9(need to be 19)
> =========================================================================================================================
> 
> 
> Can anyone help me on this issues? thanks again!!!!
> 
> 
> 
> 
> 
> --
> View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Embedded-mode-ignite-on-spark-tp6942.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.