79451040

Date: 2025-02-19 10:49:40
Score: 12 🚩
Natty: 4.5
Report link

I have exactly the same problem. I want to create a simple Dataset in Java, but use a POJO class which I generated with ByteBuddy before. Then, I get the issue you described. It works, when I use a POJO class which is compiled within the JAR file i am executing with spark. See my code snippet here:

            final GenericRowMapper genericRowMapper = new GenericRowMapper(dynamicType);
            applyParquetDefaults(
                spark.createDataset(new ArrayList<>(), kryo(dynamicType))
                  .map(genericRowMapper, genericRowMapper.getEncoder())
                  .writeTo(join(".", db, tableName))
            ).create();

Did you find any solution to your problem?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution to your problem
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2): any solution to your problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Chris