You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the LDES Server allows to ingest both state objects and versions objects. However, state objects can be ingested in bulk while version objects can not.
To determine individual state objects within a pool of RDF triples, we take each named node and collect all its triples as well as the triples of the blank nodes it directly or indirectly refers to. Preconditions are: no shared and no dangling blank nodes.
For version objects we can do something similar. Because no mix of state and version objects is allowed, we can first check the preconditions: no shared and no dangling blank nodes, all versions (named nodes) contain the configured versionOfPath and timestampPath predicates. We can collect the triples in exactly the same way as for state objects.
The text was updated successfully, but these errors were encountered:
@rorlic As we have the intention of deprecating version ingest in the future, do you think it makes sense to still spend time on this? Personally I wouldn't put any more effort in the version ingest.
@rorlic As we have the intention of deprecating version ingest in the future, do you think it makes sense to still spend time on this? Personally I wouldn't put any more effort in the version ingest.
Version creation on the server should not be deprecated, as I want to have control on the used time stamp of the members. Versions may arrive out-of-order
Currently the LDES Server allows to ingest both state objects and versions objects. However, state objects can be ingested in bulk while version objects can not.
To determine individual state objects within a pool of RDF triples, we take each named node and collect all its triples as well as the triples of the blank nodes it directly or indirectly refers to. Preconditions are: no shared and no dangling blank nodes.
For version objects we can do something similar. Because no mix of state and version objects is allowed, we can first check the preconditions: no shared and no dangling blank nodes, all versions (named nodes) contain the configured versionOfPath and timestampPath predicates. We can collect the triples in exactly the same way as for state objects.
The text was updated successfully, but these errors were encountered: