0
votes

How to view the Java Custom objects and their values in Apache Ignite Cache through DBeaver or any other tool. as of now, the DBeaver is able to display the Cache objects in the form of an RDBMS table for only Java defined data types

3

3 Answers

0
votes

DBeaver can show cache contents, for which QueryEntities or indexed types are configured. This configuration specifies a way of conversion of Java objects into SQL tables, that can be viewed by any JDBC client.

0
votes

You can use Web Console's Scan Queries or REST API to view objects which don't have SQL mapping.

0
votes

I was able to get the answer - actually you need to use to_char("column name") for custom objects.