<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/couchdb.git, branch devclean-on-elixir-target</title>
<subtitle>github.com: apache/couchdb.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/'/>
<entry>
<title>Use devclean on elixir target for consistency of Makefile</title>
<updated>2018-11-30T15:23:33+00:00</updated>
<author>
<name>Eric Avdey</name>
<email>eiri@eiri.ca</email>
</author>
<published>2018-11-30T15:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=0535adf573f980376bff01760c26ce4473fac270'/>
<id>0535adf573f980376bff01760c26ce4473fac270</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1780 from apache/2.3.0-prep</title>
<updated>2018-11-29T18:48:31+00:00</updated>
<author>
<name>Joan Touzet</name>
<email>wohali@users.noreply.github.com</email>
</author>
<published>2018-11-29T18:48:31+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=07ea0c70e6307e69ca64b9578e3124ddde1e4c36'/>
<id>07ea0c70e6307e69ca64b9578e3124ddde1e4c36</id>
<content type='text'>
Bump fauxton, docs, version to 2.3.0</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bump fauxton, docs, version to 2.3.0</pre>
</div>
</content>
</entry>
<entry>
<title>Bump fauxton, docs, version to 2.3.0</title>
<updated>2018-11-29T18:00:27+00:00</updated>
<author>
<name>Joan Touzet</name>
<email>joant@atypical.net</email>
</author>
<published>2018-11-29T18:00:27+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=0c5481a14564480fc957a6d1de4caf6099389004'/>
<id>0c5481a14564480fc957a6d1de4caf6099389004</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: re-enable _doc_id &amp; _design_docs filter optimisation paths (#1771)</title>
<updated>2018-11-29T17:30:44+00:00</updated>
<author>
<name>Jan Lehnardt</name>
<email>jan@apache.org</email>
</author>
<published>2018-11-29T17:30:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=4edcf3fc02d1e905490de4300c68a24817e442d8'/>
<id>4edcf3fc02d1e905490de4300c68a24817e442d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cache query servers in ets table (#1778)</title>
<updated>2018-11-29T13:42:55+00:00</updated>
<author>
<name>iilyak</name>
<email>iilyak@users.noreply.github.com</email>
</author>
<published>2018-11-29T13:42:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=880357812bdd4dff06bbdd9886cb546efcaaca9e'/>
<id>880357812bdd4dff06bbdd9886cb546efcaaca9e</id>
<content type='text'>
The configuration of query servers is done via environment variables.
Calling os:getenv every time we need a new query process is expensive.
Instead we extact all configured query servers from the environemt on
`couch_proc_manager` startup and cache them in ets table.

fixes #1772</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The configuration of query servers is done via environment variables.
Calling os:getenv every time we need a new query process is expensive.
Instead we extact all configured query servers from the environemt on
`couch_proc_manager` startup and cache them in ets table.

fixes #1772</pre>
</div>
</content>
</entry>
<entry>
<title>Use fabric to get design docs in the compaction daemon</title>
<updated>2018-11-28T16:57:42+00:00</updated>
<author>
<name>Nick Vatamaniuc</name>
<email>vatamane@apache.org</email>
</author>
<published>2018-11-28T03:37:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=369bec2b7db54d6781f4994543f92aa9bf24d28d'/>
<id>369bec2b7db54d6781f4994543f92aa9bf24d28d</id>
<content type='text'>
Previously the compaction daemon looked for design docs in each shard file.
This worked well for versions &lt; 2.x, however, for clustered databases design
documents will only be found in their respective shards based on the document
id hashing algorithm. This meant that in a default setup of Q=8 only the views
of one shard range, where the _design document lives, would be compacted.

The fix for this issue is to use fabric to retrive all the design documents for
clustered database.

Issue #1579
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the compaction daemon looked for design docs in each shard file.
This worked well for versions &lt; 2.x, however, for clustered databases design
documents will only be found in their respective shards based on the document
id hashing algorithm. This meant that in a default setup of Q=8 only the views
of one shard range, where the _design document lives, would be compacted.

The fix for this issue is to use fabric to retrive all the design documents for
clustered database.

Issue #1579
</pre>
</div>
</content>
</entry>
<entry>
<title>test: port large_docs.js to Elixir test suite (#1745)</title>
<updated>2018-11-28T08:58:51+00:00</updated>
<author>
<name>Alessio Biancalana</name>
<email>dottorblaster@gmail.com</email>
</author>
<published>2018-11-28T08:58:51+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=eca86229233339bee8bf287975554981269f6b91'/>
<id>eca86229233339bee8bf287975554981269f6b91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: port coffee.js to Elixir test suite (#1760)</title>
<updated>2018-11-28T08:08:23+00:00</updated>
<author>
<name>Alessio Biancalana</name>
<email>dottorblaster@gmail.com</email>
</author>
<published>2018-11-28T08:08:23+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=78b0a7d7ebe50d0cfc4f25d8779c82386f10af8a'/>
<id>78b0a7d7ebe50d0cfc4f25d8779c82386f10af8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1767 from van-mronov/mix-format</title>
<updated>2018-11-28T04:30:09+00:00</updated>
<author>
<name>Joan Touzet</name>
<email>wohali@users.noreply.github.com</email>
</author>
<published>2018-11-28T04:30:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=45eba6ee925c253cc99653a0d0fc3707b4d74417'/>
<id>45eba6ee925c253cc99653a0d0fc3707b4d74417</id>
<content type='text'>
Check code format before running elixir test suite</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Check code format before running elixir test suite</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into mix-format</title>
<updated>2018-11-28T03:54:31+00:00</updated>
<author>
<name>Joan Touzet</name>
<email>wohali@users.noreply.github.com</email>
</author>
<published>2018-11-28T03:54:31+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/couchdb.git/commit/?id=7ace576b83003ecdd5d77a8c2f314978de305d3f'/>
<id>7ace576b83003ecdd5d77a8c2f314978de305d3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
