summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@apache.org>2013-10-22 20:22:45 +0400
committerAlexander Shorin <kxepal@apache.org>2013-10-22 20:22:45 +0400
commitf990037388909a6d6307d7396e8c6274f282e563 (patch)
tree8e478df08c761d5b349a87acfaf562f115ee833e
parentbdf38a9821d808fd330f87a84e1e73801e3dbcc6 (diff)
downloadcouchdb-1912-troubleshooting-guide.tar.gz
Add solution for COUCHDB-1415 issue by Eric Ross.1912-troubleshooting-guide
-rw-r--r--share/doc/src/troubleshooting.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/share/doc/src/troubleshooting.rst b/share/doc/src/troubleshooting.rst
index f28646d25..399e0338c 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
=============================