当前位置:   article > 正文

RDD转换为DataFrame案例_rdd转换得到dataframe实例

rdd转换得到dataframe实例

SparkSQL支持两种方式来将RDD转换为DataFrame。

第一种方式,是使用反射来推断包含了特定数据类型的RDD的元数据。这种基于反射的方式,代码比较简洁,当你已经知道你的RDD的元数据时,是一种非常不错的方式。

第二种方式,是通过编程接口来创建DataFrame,你可以在程序运行时动态构建一份元数据,然后将其应用到已经存在的RDD上。这种方式的代码比较冗长,但是如果在编写程序时,还不知道RDD的元数据,只有在程序运行时,才能动态得知其元数据,那么只能通过这种动态构建元数据的方式。


文件students.txt中内容如下:

1,leo,17
2,marry,17
3,jack,18
4,tom,19

1. 使用反射方式将RDD转换为DataFrame

Java代码如下:

  1. public class RDD2DataFrameReclection {
  2. public static void main(String[] args) {
  3. SparkConf conf = new SparkConf()
  4. .setMaster("local")
  5. .setAppName("RDD2DataFrameReflection");
  6. JavaSparkContext sc = new JavaSparkContext(conf);
  7. SQLContext sqlContext = new SQLContext(sc);
  8. JavaRDD<String> lines = sc.textFile("./data/students.txt");
  9. JavaRDD<Student> students = lines.map(new Function<String, Student>() {
  10. @Override
  11. public Student call(String line) throws Exception {
  12. String[] lineSplited = line.split(",");
  13. Student stu = new Student();
  14. stu.setId(Integer.valueOf(lineSplited[0].trim()));
  15. stu.setName(lineSplited[1]);
  16. stu.setAge(Integer.valueOf(lineSplited[2]));
  17. return stu;
  18. }
  19. });
  20. //使用反射方式将RDD转换为DataFrame
  21. //将Student.class传入进入,其实就是用反射的方式来创建DataFrame
  22. //因为Student.class本身就是反射的一个应用
  23. //然后底层还得通过对Student Class进行反射,来获取其中的field
  24. //这里要求,JavaBean必须实现Serializable接口,是可序列化的
  25. DataFrame studentDF = sqlContext.createDataFrame(students, Student.class);
  26. //拿到了一个DataFrame之后,就可以将去注册为一个临时表,然后针对其中的数据执行SQL语句
  27. studentDF.registerTempTable("students");
  28. //针对students临时表执行SQL语句,查询年龄小于等于18岁的学生,就是teenager
  29. DataFrame teenagerDF = sqlContext.sql("select * from students where age<=18");
  30. //将查询出来的DataFrame再次转换为RDD
  31. JavaRDD<Row> teenagerRDD = teenagerDF.javaRDD();
  32. //将RDD中的数据进行映射,映射为student
  33. JavaRDD<Student> teenagerStudentRDD = teenagerRDD.map(new Function<Row, Student>() {
  34. @Override
  35. public Student call(Row row) throws Exception {
  36. //row中的数据顺序可以与期望的不同
  37. Student stu = new Student();
  38. stu.setAge(row.getInt(0));
  39. stu.setId(row.getInt(1));
  40. stu.setName(row.getString(2));
  41. return stu;
  42. }
  43. });
  44. //将数据collect回来,打印出来
  45. List<Student> studentList = teenagerStudentRDD.collect();
  46. for(Student stu : studentList)
  47. System.out.println(stu);
  48. }
  49. }

Scala代码如下:

object RDD2DataFrameReflection extends App {
  
  val conf = new SparkConf()
      .setAppName("RDD2DataFrameReflection")
      .setMaster("local")
  val sc = new SparkContext(conf)
  val sqlContext = new SQLContext(sc)
  
  //在scala中使用反射方式,进行RDD到DataFrame的转换,需要手动导入一个隐式转换
  import sqlContext.implicits._
  
  case class Student(id:Int,name:String,age:Int)
  
  //这里其实就是一个普通的,元素为case class的RDD
  //直接对它使用toDF()方法,即可转换为DataFrame
  val studentDF = sc.textFile("./data/students.txt", 1)
      .map { line => line.split(",") }
      .map { arr => Student(arr(0).trim().toInt, arr(1), arr(2).trim().toInt) }
      .toDF()
     
   studentDF.registerTempTable("students")
   val teenagerDF = sqlContext.sql("select * from students where age<=18")
   
   val teenagerRDD = teenagerDF.rdd
   
   teenagerRDD.map { row => Student(row(0).toString().toInt,row(1).toString(),row(2).toString().toInt) }
   .collect()
   .foreach { stu => println(stu.id + ":" + stu.name + ":" + stu.age) }
   
   // 在scala中,对row的使用,比java中的row的使用,更加丰富
   // 在scala中,可以用row的getAs()方法,获取指定列名的列
   teenagerRDD.map { row => Student(row.getAs[Int]("id"),row.getAs[String]("name"),row.getAs[Int]("age")) }
   .collect()
   .foreach { stu => println(stu.id + ":" + stu.name + ":" + stu.age) }
   
    // 还可以通过row的getValuesMap()方法,获取指定几列的值,返回的是个map
   val studentRDD = teenagerRDD.map { row => {
     val map = row.getValuesMap[Any](Array("id","name","age"));
     Student(map("id").toString().toInt,map("name").toString(),map("age").toString().toInt)
   } 
   }
   studentRDD.collect().foreach { stu => println(stu.id + ":" + stu.name + ":" + stu.age) }

}

2. 以编程方式动态指定元数据,将RDD转换为DataFrame

Java代码如下:

  1. public class RDD2DataFrameProgramatically {
  2. public static void main(String[] args) {
  3. //创建SparkConf、JavaSparkContext、SQLContext
  4. SparkConf conf = new SparkConf()
  5. .setMaster("local")
  6. .setAppName("RDD2DataFrameProgramatically");
  7. JavaSparkContext sc = new JavaSparkContext(conf);
  8. SQLContext sqlContext = new SQLContext(sc);
  9. //第一步,创建一个普通的RDD,但是,必须将其转换为RDD<Row>的这种格式
  10. JavaRDD<String> lines = sc.textFile("./data/students.txt");
  11. JavaRDD<Row> studentRows = lines.map(new Function<String, Row>() {
  12. @Override
  13. public Row call(String line) throws Exception {
  14. String[] lineSplited = line.split(",");
  15. return RowFactory.create(Integer.valueOf(lineSplited[0])
  16. ,lineSplited[1],
  17. Integer.valueOf(lineSplited[2]));
  18. }
  19. });
  20. //第二步,动态构造元数据
  21. //比如说,id、name等,field的名称和类型,可能都是在程序运行过程中,动态从mysql db里
  22. //或者配置文件中,加载出来的,是不固定的
  23. //所以特别适合用这种编程的方式,来构造元数据
  24. List<StructField> structFields = new ArrayList<StructField>();
  25. structFields.add(DataTypes.createStructField("id", DataTypes.IntegerType, true));
  26. structFields.add(DataTypes.createStructField("name", DataTypes.StringType, true));
  27. structFields.add(DataTypes.createStructField("age", DataTypes.IntegerType, true));
  28. StructType structType = DataTypes.createStructType(structFields);
  29. //第三步,使用动态构造的元数据将RDD转换为DataFrame
  30. DataFrame studentDF = sqlContext.createDataFrame(studentRows, structType);
  31. //后面,就可以使用DataFrame了
  32. studentDF.registerTempTable("students");
  33. DataFrame teenagerDF = sqlContext.sql("select * from students where age < 18");
  34. List<Row> rows = teenagerDF.javaRDD().collect();
  35. for(Row row : rows) {
  36. System.out.println(row);
  37. }
  38. }
  39. }
Scala代码如下:

object RDD2DataFrameProgrammatically extends App {
  
  val conf = new SparkConf()
        .setMaster("local")
        .setAppName("RDD2DataFrameProgrammatically")
        
  val sc = new SparkContext(conf)
  val sqlContext = new SQLContext(sc)
  
  //第一步,构造出元素为Row的普通RDD
  val studentRDD = sc.textFile("./data/students.txt", 1)
        .map { line => Row(line.split(",")(0).toInt, line.split(",")(1), line.split(",")(2).toInt) }
  
  //第二步,编程方式动态构造元数据
  val structType = StructType(Array(
      StructField("id",IntegerType,true),
      StructField("name",StringType,true),
      StructField("age",IntegerType,true)))
  
  //第三步,进行RDD到DataFrame的转换
  val studentDF = sqlContext.createDataFrame(studentRDD, structType)
  
  //接续正常使用
  studentDF.registerTempTable("students")
  
  val teenagerDF = sqlContext.sql("select * from students where age<=18")
  
  val teenagerRDD = teenagerDF.rdd.collect().foreach { row => println(row) }
}



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/389325
推荐阅读
相关标签
  

闽ICP备14008679号