mazeboard edited a comment on issue #24299: [SPARK-27388][SQL] expression encoder for objects defined by properties URL: https://github.com/apache/spark/pull/24299#issuecomment-482883525 Currently we modified JavaTypeInference to be able to create encoders for Avro objects; we have now two solutions, the one in this PR and another one using Encoders.bean (fewer code changes); which one is better? how to proceed? we should create another PR for the Encoders.bean solution? The test we used for Encoders.bean is as follows: import spark.implicits._ implicit val avroExampleEncoder = Encoders.bean[AvroExample1](classOf[AvroExample1]).asInstanceOf[ExpressionEncoder[AvroExample1]] val input: AvroExample1 = AvroExample1.newBuilder() .setMyarray(List("Foo", "Bar").asJava) .setMyboolean(true) .setMybytes(java.nio.ByteBuffer.wrap("MyBytes".getBytes())) .setMydouble(2.5) .setMyfixed(new Magic("magic".getBytes)) .setMyfloat(25.0F) .setMyint(100) .setMylong(10L) .setMystring("hello") .setMymap(Map( "foo" -> new java.lang.Integer(1), "bar" -> new java.lang.Integer(2)).asJava) .setMymoney(Money.newBuilder().setAmount(100.0F).setCurrency(Currency.EUR).build()) .build() val row: InternalRow = avroExampleEncoder.toRow(input) val output: AvroExample1 = avroExampleEncoder.resolveAndBind().fromRow(row) val ds: Dataset[AvroExample1] = List(input).toDS() println(ds.schema) println(ds.collect().toList) ds.write.format("avro").save("example1") val fooDF = spark.read.format("avro").load("example1") val fooDS = fooDF.as[AvroExample1] println(fooDS.collect().toList) The change is made in the branch https://github.com/mazeboard/spark/tree/bean-encoder
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
