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 this almost works; the exception is the _changes feed. It may need to wait for changes to the database, and the mechanism it uses for this is based on in-process Go notifications. So a _changes feed request being served by one process will wait forever without noticing a database change made by another process.
To fix this we need to hook into the Couchbase Server 'TAP' feed, or else some new mechanism TBD.
The text was updated successfully, but these errors were encountered:
For scalability, we need to support any number of BaseCouch processes sharing the same Couchbase bucket.
Here is a design wiki for this
Currently this almost works; the exception is the
_changes
feed. It may need to wait for changes to the database, and the mechanism it uses for this is based on in-process Go notifications. So a_changes
feed request being served by one process will wait forever without noticing a database change made by another process.To fix this we need to hook into the Couchbase Server 'TAP' feed, or else some new mechanism TBD.
The text was updated successfully, but these errors were encountered: