I follow the guide to deploy the spark on Alluxio. When I try to load data from alluxio to run rdd operation,
val ccc = sc.textFile("alluxio://localhost:19998/findbugs.xml")
ccc.count
error shows up like following:
16/07/24 23:27:16 INFO logger.type: getFileStatus(alluxio://localhost:19998/findbugs.xml)
16/07/24 23:27:16 ERROR logger.type: Frame size (273247862) larger than max length (16777216)!
alluxio.org.apache.thrift.transport.TTransportException: Frame size (273247862) larger than max length (16777216)!
at alluxio.org.apache.thrift.transport.TFramedTransport.readFrame(TFramedTransport.java:137)
at alluxio.org.apache.thrift.transport.TFramedTransport.read(TFramedTransport.java:101)
at alluxio.org.apache.thrift.transport.TTransport.readAll(TTransport.java:86)
java version is 1.8.0_74, spark:1.2.0; alluxio 1.2.0
The issue bothers me for such a long time.