-
Hi, currently, the delta replica needs to catch up with the patch log server before returning result to the user. Is there a way to support eventual consistency when querying the delta? Assume if one has frequent streaming ingestion going on and strong consistency will increase the response time. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @ll13j1209 , Do you have a situation where this actually happens? It would be interesting to hear about the setup in more detail. It's certainly possible within the design. It has been done in some place that use RDF-Delta server with a modified client. There was some code to poll for changes instead of sync. That doesn't seem to be active. Noted as issue #241 One way in the current system that night help is to use an "external" setting in the assembler with property In code there is setting the sync policy to the |
Beta Was this translation helpful? Give feedback.
-
Hi @afs , thanks for reaching out! Currently, I have a primary delta server which only takes write request and a cluster of read replica that handles read. All of them sync to the same patch log server. `<#service1> rdf:type fuseki:Service ; <#dataset> rdf:type delta:DeltaDataset ; Thank you! |
Beta Was this translation helpful? Give feedback.
Hi @ll13j1209 ,
Do you have a situation where this actually happens? It would be interesting to hear about the setup in more detail.
It's certainly possible within the design. It has been done in some place that use RDF-Delta server with a modified client.
There was some code to poll for changes instead of sync. That doesn't seem to be active. Noted as issue #241
One way in the current system that night help is to use an "external" setting in the assembler with property
delta:dataset
. This way, the data is available via route two URLs - one goes straight to database, one goes to a synchronization dataset.In code there is setting the sync policy to the
DeltaConnection
. The options are "No…