summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2019-06-20 14:43:42 -0400
committerAdam Kocoloski <kocolosk@apache.org>2019-06-20 15:32:31 -0400
commit0d32708d68432b127154757643f28efd20066330 (patch)
treefed8daab52b65c9411c06a5f4ef36d6bcb370a15
parent7dbd4d5a0cd67927e8ae030ec027db8699c5e1b5 (diff)
downloadcouchdb-0d32708d68432b127154757643f28efd20066330.tar.gz
Document config settings related to search system
-rw-r--r--rel/overlay/etc/default.ini29
1 files changed, 29 insertions, 0 deletions
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini
index 0d7ac6d77..5a8d0f952 100644
--- a/rel/overlay/etc/default.ini
+++ b/rel/overlay/etc/default.ini
@@ -481,3 +481,32 @@ min_priority = 2.0
[smoosh.ratio_views]
min_priority = 2.0
+
+[dreyfus]
+; The name and location of the Clouseau Java service required to
+; enable Search functionality.
+; name = clouseau@127.0.0.1
+
+; CouchDB will try to re-connect to Clouseau using a bounded
+; exponential backoff with the following number of iterations.
+; retry_limit = 5
+
+; The default number of results returned from a global search query.
+; limit = 25
+
+; The default number of results returned from a search on a partition
+; of a database.
+; limit_partitions = 2000
+
+; The maximum number of results that can be returned from a global
+; search query (or any search query on a database without user-defined
+; partitions). Attempts to set ?limit=N higher than this value will
+; be rejected.
+; max_limit = 200
+
+; The maximum number of results that can be returned when searching
+; a partition of a database. Attempts to set ?limit=N higher than this
+; value will be rejected. If this config setting is not defined,
+; CouchDB will use the value of `max_limit` instead. If neither is
+; defined, the default is 2000 as stated here.
+; max_limit_partitions = 2000 \ No newline at end of file