You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2013/10/22 18:23:47 UTC

git commit: updated refs/heads/1912-troubleshooting-guide to f990037

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 <kx...@apache.org>
Authored: Tue Oct 22 20:22:45 2013 +0400
Committer: Alexander Shorin <kx...@apache.org>
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
 =============================