Replies: 2 comments 12 replies
-
Is Fargate running up multiple RDF4J instances that interact with the files on disk? And you've set a rule that only allows Fargate to run up one RDF4J instance for writing, but multiple for reading? |
Beta Was this translation helpful? Give feedback.
9 replies
-
Thanks, yeah I believe back in the days of working in lucene, a delta file
was created for incremental additions/updates, so could have multiple
readers, so was hoping it worked similar… But I might be remembering things
wrong. Looking at some other rdf dbs your page links to, might look into
halyard next then…
Chris
…On Sun, Feb 2, 2025 at 1:49 PM kenwenzel ***@***.***> wrote:
It may work with the LmdbStore as long as autoGrow is not used. But this
mode of operation is completely untested.
—
Reply to this email directly, view it on GitHub
<#5244 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFIEXTSPEXCUA5AQL7LUPVD2NZSFHAVCNFSM6AAAAABWJYGHVKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMBTGM3TMOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to setup RDF4J and using version 5 under tomcat with a native store in AWS. I'm using a fargate service where I have multiple readers and 1 writer. I'm obviously not understanding something about the transactional model because as soon as I issue a sparql update and the writer updates the database, none of my readers can access it, even after the transaction has finished -- I'm getting a "SAIL is already locked by: [some other ip]" error message. Is this not supported through the normal /rdf4j-server/server endpoint provided by rdf4j?
I was hoping that as long as I ONLY had 1 writer making changes to the EFS file system (thus not making concurrent updates) , I could still read with the other processes.
Beta Was this translation helpful? Give feedback.
All reactions