Hi,
I have an Ignite cluster with 3rd party persistence enabled (Postgres db). I
have a few tables in Postgres which don't have primary keys bur I need to
keep these tables in Ignite:
They look like this table (as an example):
KeyValuesTable {
key: UUID
value: String
}
NOTE: there is no Primary key or any unique index in this table. The same
key value may have multiple values attached, for ex:
#1 record: key=1, value="v1"
#2 record: key=1, value="v2"
#3 record: key=2, value="v1"
#4 record: key=3, value="v1"
#5 record: key=3, value="v2"
NOTE: I can not change the table in Postress and add a primary key field,
like id or something like that.
Can you suggest some solution, please?
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/