Skip to content

[Client] Java Client Add Pojo Support #1731

@polyzos

Description

@polyzos

Search before asking

  • I searched in the issues and found nothing similar.

Description

#1404 introduced a RowConverterUtils to handle the conversion between InternalRow <> POJOs.

Next, we need to use these utilities to allow the users to work with POJOs directly. For example

AppendWriter<User> writer = table.newAppend().createWriter(User.class);
User u = new User(1, "John");
writer.append(u)

We should handle the AppendWriter, UpsertWriter, the LogScanner and also ensure it can be used by operations like lookups, projections, and partial updates.

Willingness to contribute

  • I'm willing to submit a PR!

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions