문제

I know that Storm now runs on Netty for communication betwen nodes?

Does Apache Spark also use Netty? If so, in what way?

도움이 되었습니까?

해결책

Spark uses Akka Actor for RPC and messaging, which in turn uses Netty.

Also, for moving bulk data, Netty is used.

  • For shuffle data, Netty can be optionally used. By default, NIO is directly used to do transfer shuffle data.
  • For broadcast data (driver-to-all-worker data transfer), Jetty is used by default.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top