summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Workaround dirty schedulers in run_queue stats3160-3.x-fix-run-queue-metricRussell Branca2020-09-221-2/+15
|
* feat(auth): Allow a custom JWT claim for roles (#3166)Robert Newson2020-09-212-1/+2
| | | Co-authored-by: mauroporras <mauroporrasc@gmail.com>
* allow configurability of JWT claims that require a value (#3165)Robert Newson2020-09-214-6/+96
| | | | | | e.g; [jwt] required_claims = {iss, "https://example.com/issuer"}
* Prep for 3.1.1-RC2 (#3148) (#3152)Joan Touzet2020-09-151-44/+48
|
* Prep for 3.1.1-RC2 (#3148)3.1.1-RC23.1.1Joan Touzet2020-09-112-1/+2
|
* Fix buffer_response=true (#3145) (#3147)Robert Newson2020-09-102-10/+14
| | | We need to call StartFun as it might add headers, etc.
* bump version to 3.1.1 (#3143)3.1.1-RC1Joan Touzet2020-09-102-2/+2
|
* Bump fauxton, docs for 3.1.1 release (#3122)Joan Touzet2020-09-101-2/+2
|
* Handle malformed URLs when stripping URL creds in couch_replicatorNick Vatamaniuc2020-09-091-2/+26
| | | | | | Previously there was an error thrown which prevented emitting _scheduler/docs responses. Instead of throwing an error, return `null` if the URL cannot be parsed.
* Merge pull request #3132 from apache/delay_until_end_3.xRobert Newson2020-09-073-9/+125
|\ | | | | Add option to delay responses until the end
| * Add option to delay responses until the enddelay_until_end_3.xRobert Newson2020-09-073-9/+125
|/ | | | | | | | | | | When set, every response is sent once fully generated on the server side. This increases memory usage on the nodes but simplifies error handling for the client as it eliminates the possibility that the response will be deliberately terminated midway through due to a timeout. The config value can be changed at runtime without impacting any in-flight responses.
* Make COPY doc return only one "ok" (#3130)Bessenyei Balázs Donát2020-09-042-1/+13
|
* Report if FIPS mode is enabled (#3121)Joan Touzet2020-09-011-0/+10
| | | | | | This will only report "fips" in the welcome message if FIPS mode was enabled at boot (i.e, in vm.args). Co-authored-by: Robert Newson <rnewson@apache.org>
* Merge pull request #3119 from apache/backport-dreyfus-cleanup-with-invalid-ddocPeng Hui Jiang2020-09-012-6/+35
|\ | | | | 3.x backport: Allow to continue to cleanup search index even if there is invalid ddoc
| * Allow to continue to cleanup search index even if there is invalid ddocjiangph2020-09-012-6/+35
|/ | | | | | | | In some situation where design document for search index created by customer is not valid, the _search_cleanup endpoint will stop to clean up. This will leave some search index orphan. The change is to allow to continue to clean up search index even if there is invalid design document for search.
* bypass partition query limit for mango (#3114)Tony Sun2020-08-283-4/+64
| | | | | | | | | When partition_query_limit is set for couch_mrview, it limits how many docs can be scanned when executing partitioned queries. But this limits mango's doc scans internally. This leads to documents not being scanned to fulfill a query. This fixes: https://github.com/apache/couchdb/issues/2795 Co-authored-by: Joan Touzet <wohali@users.noreply.github.com>
* Make restricted partition search parameters return bad request (#3108)Bessenyei Balázs Donát2020-08-282-8/+50
| | | | | | | | | | | | According to https://docs.couchdb.org/en/master/ddocs/search.html there are parameters for searches that are not allowed for partitioned queries. Those restrictions were not enforced, thus making the software and docs inconsistent. This commit adds them to validation so that the behavior matches the one described in the docs. Co-authored-by: Joan Touzet <wohali@users.noreply.github.com>
* Allow drilldown for search to always be specified as list of lists (#3109)Bessenyei Balázs Donát2020-08-282-0/+203
| | | | | | | | | | | | | | | To use multiple `drilldown` parameters users had to define `drilldown` multiple times to be able supply them. This caused interoperability issues as most languages require defining query parameters and request bodies as associative arrays, maps or dictionaries where the keys are unique. This change enables defining `drilldown` as a list of lists so that other languages can define multiple drilldown keys and values. Co-authored-by: Robert Newson <rnewson@apache.org> Co-authored-by: Robert Newson <rnewson@apache.org> Co-authored-by: Joan Touzet <wohali@users.noreply.github.com>
* Merge pull request #3113 from apache/backport-python-formatTony Sun2020-08-281-1/+4
|\ | | | | update dev/run formatting to adhere to python format checks
| * update dev/run formatting to adhere to python format checksTony Sun2020-08-281-1/+4
|/
* Don't log client disconnects (#3102)Joan Touzet2020-08-251-0/+2
| | | Co-authored-by: Robert Newson <rnewson@apache.org>
* Handle jiffy returning an iolist when encoding atts_since query stringNick Vatamaniuc2020-08-201-1/+1
| | | | | | | | | | | | | | | | If we don't handle it, it throws an error when trying to encode the full URL string, for example: ``` badarg,[ {mochiweb_util,quote_plus,2,[{file,"src/mochiweb_util.erl"},{line,192}]}, {couch_replicator_httpc,query_args_to_string,2,[{file,"src/couch_replicator_httpc.erl"},{line,421}]}, {couch_replicator_httpc,full_url,2,[{file,"src/couch_replicator_httpc.erl"},{line,413}]}, {couch_replicator_api_wrap,open_doc_revs,6,[{file,"src/couch_replicator_api_wrap.erl"},{line,255}]} ] ``` This is also similar to what we did for open_revs encoding: https://github.com/apache/couchdb/commit/a2d0c4290dde2015e5fb6184696fec3f89c81a4b
* Merge pull request #3080 from apache/couch_index_server_crash2-3.xRobert Newson2020-08-141-1/+5
|\ | | | | Don't crash couch_index_server if the db isn't known yet
| * Don't crash couch_index_server if the db isn't known yetcouch_index_server_crash2-3.xRobert Newson2020-08-141-1/+5
|/ | | | | | | If a ddoc is added immediately after database creation (_users and _replicator when couchdb is used in a multi-tenant fashion), we can crash couch_index_server in handle_db_event, as mem3_shards:local throws an error.
* Merge pull request #3078 from apache/validate-db-create-params-3.xEric Avdey2020-08-142-9/+165
|\ | | | | Validate shard specific query params on db create request
| * Validate shard specific query params on db create requestvalidate-db-create-params-3.xEric Avdey2020-08-132-9/+165
|/
* Merge pull request #3071 from apache/couch_index_server_crash-3.xRobert Newson2020-08-121-2/+8
|\ | | | | Unlink index pid and swallow EXIT message if present
| * Unlink index pid and swallow EXIT message if presentRobert Newson2020-08-121-2/+8
|/ | | | | | | | | This should prevent unexpected exit messages arriving which crash couch_index_server. Patch suggested by davisp. Closes #3061.
* Fix/csp 3.x (#3069)Joan Touzet2020-08-102-2/+2
| | | | | | | * fix: send CSP header to make Fauxotn work fully Co-authored-by: Robert Newson <rnewson@apache.org> * Remove accidental chttpd_auth.erl.orig commit
* Windows: provide full path to epmdJoan Touzet2020-08-031-0/+1
|
* Port view multi_key tests into elixirJuanjo Rodriguez2020-07-246-3/+513
|
* port update_documents.js into elixirJuanjo Rodriguez2020-07-243-2/+326
|
* port view_sandboxing.js into elixirJuanjo Rodriguez2020-07-243-1/+193
|
* New cname for couchdb-vm2, see INFRA-20435 (#2983)Joan Touzet2020-07-202-6/+6
|
* Fix compactor bind_emsort clauseNick Vatamaniuc2020-07-131-2/+3
| | | | | | When compactor finds an old compaction file, before the state was upgraded to a a proplist, the state will be `Root` from `emsort`, which is a `{BB, Prev}` tuple not an integer.
* Port view_compaction test to elixirJuanjo Rodriguez2020-07-074-2/+109
|
* Port view_collation_raw.js to elixirJuanjo Rodriguez2020-07-073-1/+161
|
* fix: set gen_server:call() timeout to infinity on ioq bypassJan Lehnardt2020-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Before the bypass existed, ioq would call `gen_server:call()` on hehalf of it calling module with the queueing logic in between. Commit e641a740 introduced a way to bypass any queues, but the delegated `gen_server:call()` there was added without a timeout parameter, leading to a default timeout of 5000ms. A problem manifests here when operations that are sent through ioq that take longer than that 5000ms timeout. In practice, these operations should be very rare and this timeout should be a help on overloaded systems. However, one sure-fire way to cause an issue on an otherwise idle machine is raise the max_document_size and store unreasonably large documents, think 50MB+ of raw JSON). Not that we recommend this, but folks have run this fine on 2.x before the ioq changes and it isn’t too hard to support here. By adding an `infinity` timeout delegated `gen_server:call()` in the queue bypasse case, this no longer applies. Thanks to Joan @woahli Touzet, Bob @rnewson Newson and Paul @davisp Davis for helping to track this down.
* Port view_update_seq.js into elixirJuanjo Rodriguez2020-06-303-1/+144
|
* Port reader_acl test into elixir test suiteJuanjo Rodriguez2020-06-303-2/+257
|
* Skip tests as temporary views are not supportedJuanjo Rodriguez2020-06-271-0/+1
|
* Tests already ported to elixirJuanjo Rodriguez2020-06-272-0/+2
|
* Upgrade Credo to 1.4.0Alessio Biancalana2020-06-222-3/+3
|
* In replicator, when rescheduling, pick only pending jobs which are not runningNick Vatamaniuc2020-06-181-0/+16
| | | | | | | Previously, when pending jobs were picked in the `ets:foldl` traversal, both running and non-running jobs were considered and a large number of running jobs could displace pending jobs in the accumulator. In the worst case, no crashed jobs would be restarted during rescheduling.
* move compact and replicate functions into CouchTestCase shared moduleJuanjo Rodriguez2020-05-278-155/+56
|
* Port rev_stemming into elixirJuanjo Rodriguez2020-05-273-1/+195
|
* Quit test run without checking that couchdb is runningJuanjo Rodriguez2020-05-031-8/+15
|
* Report the chttpd_auth authentication db in session info (#2823)3.1.0-RC23.1.0Jay Doane2020-04-303-1/+111
| | | | | | | | Currently, result of GET `/_session` reports the `authentication_db` of the obsolete admin port 5986. This updates it to report the actual db used for authentication, provided it is configured. Otherwise, it omits `authentication_db` entirely from the session info. (cherry picked from commit 1e9d0e3c1828d828bb3e8efdbbbd2e348ff518f2)
* Merge pull request #2854 from apache/3.x-backports-verbumpJoan Touzet2020-04-304-6/+9
|\ | | | | 3.x backports verbump
| * Fix python-black target for WindowsJoan Touzet2020-04-301-2/+2
| |