@HollowPrimaryKey(field="actorId") public class Actor { long actorId; String actorName; public Actor(long actorId, String actorName) { this.actorId = actorId; this.actorName = actorName; } } Some records are added to a HollowProducer: ...