This is the issue I was looking to workaround:
https://github.com/couchbase/couchbase-lite-android/issues/444
The performance to update or delete documents degrades quickly with larger databases. Here is the time to delete 200 documents at different database sizes:
DB with 10000 documents, 14 seconds to delete 200 documents
DB with 50000 documents, 81 seconds to delete 200 documents
DB with 70000 documents, 114 seconds to delete 200 documents
This is without replication running as well. Our data will generally be 40-70K documents on the tablet, and we have a few use cases where we need to delete or update 200 documents at a time, so I was looking to balance that over multiple databases.
-james