Re: Why does spark take so much time for simple task without calculation?

2016-09-09 Thread Bedrytski Aliaksandr
3.nabble.com/Why-does-spark-take-so-much-time-for-simple-task-without-calculation-tp27628p27657.html > Sent from the Apache Spark User List mailing list archive at Nabble.com. > > - > To unsubscribe e-

Re: Why does spark take so much time for simple task without calculation?

2016-09-04 Thread 刘虓
; -- > View this message in context: http://apache-spark-user-list. > 1001560.n3.nabble.com/Why-does-spark-take-so-much-time- > for-simple-task-without-calculation-tp27628p27657.html > Sent from the Apache Spark User Lis

Re: Why does spark take so much time for simple task without calculation?

2016-09-04 Thread xiefeng
The spark context will be reused, so the spark context initialization won't affect the throughput test. -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Why-does-spark-take-so-much-time-for-simple-task-without-calculation-tp27628p27657.html Sent from

Re: Why does spark take so much time for simple task without calculation?

2016-09-04 Thread xiefeng
job initialization and dispatch. Add more workers can’t help improve this situation. Is anyone can explain this? -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Why-does-spark-take-so-much-time-for-simple-task-without-calculation-tp27628p27656.html Sent f

RE: Why does spark take so much time for simple task without calculation?

2016-09-04 Thread Xie, Feng
! -Original Message- From: Bedrytski Aliaksandr [mailto:sp...@bedryt.ski] Sent: Wednesday, August 31, 2016 8:45 PM To: Xie, Feng Cc: user@spark.apache.org Subject: Re: Why does spark take so much time for simple task without calculation? Hi xiefeng, Spark Context initialization takes

Re: Why does spark take so much time for simple task without calculation?

2016-08-31 Thread Bedrytski Aliaksandr
> public static String simpleRDDTest() > { > JavaRDD rddData = simpleRDDs.get("MyRDD"); > return rddData.first(); > } > > > > > -- > View this message in co

Why does spark take so much time for simple task without calculation?

2016-08-31 Thread xiefeng
} public static String simpleRDDTest() { JavaRDD rddData = simpleRDDs.get("MyRDD"); return rddData.first(); } -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Why-does-spark-take-so-mu