Updated Branches: refs/heads/1912-troubleshooting-guide bdf38a982 -> f99003738
Add solution for COUCHDB-1415 issue by Eric Ross. Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/f9900373 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/f9900373 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/f9900373 Branch: refs/heads/1912-troubleshooting-guide Commit: f990037388909a6d6307d7396e8c6274f282e563 Parents: bdf38a9 Author: Alexander Shorin <[email protected]> Authored: Tue Oct 22 20:22:45 2013 +0400 Committer: Alexander Shorin <[email protected]> Committed: Tue Oct 22 20:22:45 2013 +0400 ---------------------------------------------------------------------- share/doc/src/troubleshooting.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/f9900373/share/doc/src/troubleshooting.rst ---------------------------------------------------------------------- diff --git a/share/doc/src/troubleshooting.rst b/share/doc/src/troubleshooting.rst index f28646d..399e033 100644 --- a/share/doc/src/troubleshooting.rst +++ b/share/doc/src/troubleshooting.rst @@ -65,6 +65,26 @@ may takes for some time (or it may be even not fixed by some reasons) there you may found solutions to workaround them. +Re-inserting a document silently fails during compaction +-------------------------------------------------------- + +:issue:`1415` + +There is a potential interaction between compaction and the repeated deletion +and creation of an identical document. During compaction, if you delete +a document the next creation of that document will silently fail. +It is suggested that you add a field that changes with each creation(salt). + +For example, include a new UUID or a random number:: + + { + "_id": "Mt_St_Helens", + "Erupting": False, + "uuid": "cb3d21a8-3278-11e3-b0c0-3c07540286af" + } + + + There Is No My Issue Solution =============================
