tolerant parsing of OAF-store-graph mdstores #180
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
RDGraph
RSAC
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: D-Net/dnet-hadoop#180
Loading…
Reference in New Issue
No description provided.
Delete Branch "graph_interpretation_mdstores"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR introduces a change in the serialisation of the records stored in the
OAF-store-graph
mdstores. They were stored in Kryo (binary) format, therefore any slight change in the schema version would made them unreadable, forcing us to recreate them quite frequently. Instead, we're going to store them in as a json serialization, so that reading them again in the graph construction phase with a parser (com.fasterxml.jackson.databind.ObjectMapper
) we have better changes to support backward compatible changes in the evolution of the schema.