Hibernate creates orphaned large objects

Description

From class org.opensaml.storage.impl.JPAStorageRecord:

@Lob
@Column(name="value", nullable = false)
@Nonnull
@Override
public String getValue()

The @Lob apparently causes Hibernate, when used together with Postgresql, to use the "value" column to store a large object's OID as a string, but this value is not seen as an object reference by Postgresql so the large object is immediately orphaned (vacuumlo would delete it).
Overriding the @Lob annotation with a custom orm.xml mapping makes Hibernate store the actual value (JSON) in the column, as it probably should. Would it be possible to remove @Lob in order to get correct behaviour with Postgresql? I don't know how this would affect other database engines...

Environment

  • IdP 3.1.2

  • Postgresql 9.2 or 9.4, with corresponding JDBC connector

Activity

Show:

Daniel FisherOctober 9, 2018 at 4:40 AM

Updated shib wiki.

Brent PutmanSeptember 21, 2018 at 4:18 PM

Discussed on call today.  Daniel will look at and confirm final status of docs etc for 3.4.0.

Former userJanuary 6, 2017 at 8:10 AM

We've documented a workaround for Postgres in our installation guide (https://www.switch.ch/aai/guides/idp/installation/#ormxmlworkaround) but this is not in the Shib wiki I think.

Scott CantorJanuary 4, 2017 at 6:51 PM

As long as there's documentation on what needs to be done to use various databases, that's fine.

Daniel FisherJanuary 4, 2017 at 6:47 PM

No. I guess silence on the list would make me tend towards leaving it as is.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Created October 21, 2015 at 1:30 PM
Updated October 9, 2018 at 6:26 PM
Resolved October 9, 2018 at 4:40 AM