Hi Steven, cryptic isn’t it? The “undef” error means that the VM cannot find the function couch_httpd_auth:basic_authentication_handler/1. Sure enough, that function is not defined in that module, nor is it listed in the default server configuration. Your configuration has a customized "[chttpd] authentication_handlers” block which adds this handler. That’s why you’re getting this crash.
Do you happen to know where that configuration showed up? Cheers, Adam > On Oct 10, 2017, at 11:20 AM, Steven Hammond <[email protected]> wrote: > > Hello, > > I managed to get an instance of CouchDB running on a virtual machine > running Ubuntu. Things seemed just fine until I rebooted the server. Now I > get a 500 error with every request. > > couchdb@couchserver:~$ curl http://localhost:5984 > {"error":"unknown_error","reason":"undef","ref":1372225368} > > On the server, the error looks like this. > > [error] 2017-10-10T15:14:39.690521Z couchdb@localhost <0.8457.0> 4dc9fc7aad > req_err(1372225368) unknown_error : undef > > [<<"couch_httpd_auth:basic_authentication_handler/1">>,<<"chttpd:authenticate_request/2 > L510">>,<<"chttpd:process_request/1 L289">>,<<"chttpd:handle_request_int/1 > L231">>,<<"mochiweb_http:headers/6 L91">>,<<"proc_lib:init_p_do_apply/3 > L247">>] > [notice] 2017-10-10T15:14:39.690663Z couchdb@localhost <0.8457.0> > 4dc9fc7aad localhost:5984 127.0.0.1 undefined GET / 500 ok 0 > > > And here is what the server shows when couchdb is started, with the log > level set to debug. I've googled everything I can think of, to no avail. > I'm pretty new to CouchDB so any help is appreciated. > > Thanks, > Steve > > > > shammond42@couchserver:~$ sudo -i -u couchdb /home/couchdb/bin/couchdb > Configuration Settings: > [admins] > shammond42="-pbkdf2-ba88473098fca0902fa38563526b768128ffd0eb,ae88623bb18783ff5264964f06191e40,10" > [attachments] compressible_types="text/*, application/javascript, > application/json, application/xml" > [attachments] compression_level="8" > [chttpd] authentication_handlers="{couch_httpd_auth, > basic_authentication_handler},{couch_httpd_auth, > cookie_authentication_handler}, {couch_httpd_auth, > proxy_authentication_handler},{couch_httpd_auth, > default_authentication_handler}" > [chttpd] backlog="512" > [chttpd] bind_address="0.0.0.0" > [chttpd] docroot="./share/www" > [chttpd] port="5984" > [chttpd] require_valid_user="true" > [chttpd] socket_options="[{recbuf, 262144}, {sndbuf, 262144}, {nodelay, > true}]" > [cluster] n="1" > [cluster] q="8" > [compaction_daemon] check_interval="300" > [compaction_daemon] min_file_size="131072" > [compactions] _default="[{db_fragmentation, \"70%\"}, > {view_fragmentation, \"60%\"}]" > [cors] credentials="true" > [cors] headers="accept, authorization, content-type, origin, referer" > [cors] methods="GET, PUT, POST, HEAD, DELETE" > [cors] origins="http://localhost:3000,http://10.0.42.8:3000" > [couch_httpd_auth] allow_persistent_cookies="false" > [couch_httpd_auth] auth_cache_size="50" > [couch_httpd_auth] authentication_db="_users" > [couch_httpd_auth] authentication_redirect="/_utils/session.html" > [couch_httpd_auth] iterations="10" > [couch_httpd_auth] proxy_use_secret="true" > [couch_httpd_auth] require_valid_user="true" > [couch_httpd_auth] secret="73130080693b036da8f1eb56733e7f87" > [couch_httpd_auth] timeout="600" > [couch_peruser] delete_dbs="false" > [couch_peruser] enable="false" > [couchdb] attachment_stream_buffer_size="4096" > [couchdb] changes_doc_ids_optimization_threshold="100" > [couchdb] database_dir="./data" > [couchdb] default_security="admin_local" > [couchdb] delayed_commits="false" > [couchdb] file_compression="snappy" > [couchdb] max_dbs_open="500" > [couchdb] os_process_timeout="5000" > [couchdb] uuid="8b728ef48e287299ae55d231d6e5887a" > [couchdb] view_index_dir="./data" > [csp] enable="true" > [daemons] auth_cache="{couch_auth_cache, start_link, []}" > [daemons] compaction_daemon="{couch_compaction_daemon, start_link, []}" > [daemons] couch_peruser="{couch_peruser, start_link, []}" > [daemons] external_manager="{couch_external_manager, start_link, []}" > [daemons] httpd="{couch_httpd, start_link, []}" > [daemons] index_server="{couch_index_server, start_link, []}" > [daemons] os_daemons="{couch_os_daemons, start_link, []}" > [daemons] query_servers="{couch_proc_manager, start_link, []}" > [daemons] uuids="{couch_uuids, start, []}" > [daemons] vhosts="{couch_httpd_vhost, start_link, []}" > [database_compaction] checkpoint_after="5242880" > [database_compaction] doc_buffer_size="524288" > [httpd] allow_jsonp="false" > [httpd] authentication_handlers="{couch_httpd_auth, > cookie_authentication_handler}, {couch_httpd_auth, > proxy_authentication_handler},{couch_httpd_auth, > default_authentication_handler}" > [httpd] bind_address="127.0.0.1" > [httpd] default_handler="{couch_httpd_db, handle_request}" > [httpd] enable_cors="true" > [httpd] enable_xframe_options="false" > [httpd] max_http_request_size="67108864" > [httpd] port="5986" > [httpd] secure_rewrites="true" > [httpd] socket_options="[{recbuf, 262144}, {sndbuf, 262144}]" > [httpd] vhost_global_handlers="_utils, _uuids, _session, _users" > [httpd_db_handlers] _all_docs="{couch_mrview_http, handle_all_docs_req}" > [httpd_db_handlers] _changes="{couch_httpd_db, handle_db_changes_req}" > [httpd_db_handlers] _compact="{couch_httpd_db, handle_compact_req}" > [httpd_db_handlers] _design="{couch_httpd_db, handle_design_req}" > [httpd_db_handlers] _design_docs="{couch_mrview_http, > handle_design_docs_req}" > [httpd_db_handlers] _local_docs="{couch_mrview_http, > handle_local_docs_req}" > [httpd_db_handlers] _temp_view="{couch_mrview_http, handle_temp_view_req}" > [httpd_db_handlers] _view_cleanup="{couch_mrview_http, > handle_cleanup_req}" > [httpd_design_handlers] _compact="{couch_mrview_http, handle_compact_req}" > [httpd_design_handlers] _info="{couch_mrview_http, handle_info_req}" > [httpd_design_handlers] _list="{couch_mrview_show, handle_view_list_req}" > [httpd_design_handlers] _rewrite="{couch_httpd_rewrite, > handle_rewrite_req}" > [httpd_design_handlers] _show="{couch_mrview_show, handle_doc_show_req}" > [httpd_design_handlers] _update="{couch_mrview_show, > handle_doc_update_req}" > [httpd_design_handlers] _view="{couch_mrview_http, handle_view_req}" > [httpd_design_handlers] _view_changes="{couch_mrview_http, > handle_view_changes_req}" > [httpd_global_handlers] /="{couch_httpd_misc_handlers, > handle_welcome_req, <<\"Welcome\">>}" > [httpd_global_handlers] _active_tasks="{couch_httpd_misc_handlers, > handle_task_status_req}" > [httpd_global_handlers] _all_dbs="{couch_httpd_misc_handlers, > handle_all_dbs_req}" > [httpd_global_handlers] _config="{couch_httpd_misc_handlers, > handle_config_req}" > [httpd_global_handlers] _plugins="{couch_plugins_httpd, handle_req}" > [httpd_global_handlers] _replicate="{couch_replicator_httpd, handle_req}" > [httpd_global_handlers] _restart="{couch_httpd_misc_handlers, > handle_restart_req}" > [httpd_global_handlers] _session="{couch_httpd_auth, handle_session_req}" > [httpd_global_handlers] _stats="{couch_stats_httpd, handle_stats_req}" > [httpd_global_handlers] _system="{chttpd_misc, handle_system_req}" > [httpd_global_handlers] _utils="{couch_httpd_misc_handlers, > handle_utils_dir_req, \"./share/www\"}" > [httpd_global_handlers] _uuids="{couch_httpd_misc_handlers, > handle_uuids_req}" > [httpd_global_handlers] favicon.ico="{couch_httpd_misc_handlers, > handle_favicon_req, \"./share/www\"}" > [indexers] couch_mrview="true" > [log] level="debug" > [log] writer="stderr" > [native_query_servers] query="{mango_native_proc, start_link, []}" > [query_server_config] os_process_limit="100" > [query_server_config] reduce_limit="true" > [query_servers] coffeescript="./bin/couchjs ./share/server/main-coffee.js" > [query_servers] javascript="./bin/couchjs ./share/server/main.js" > [replicator] connection_timeout="30000" > [replicator] http_connections="20" > [replicator] interval="60000" > [replicator] max_churn="20" > [replicator] max_jobs="500" > [replicator] retries_per_request="10" > [replicator] socket_options="[{keepalive, true}, {nodelay, false}]" > [replicator] ssl_certificate_max_depth="3" > [replicator] startup_jitter="5000" > [replicator] verify_ssl_certificates="false" > [replicator] worker_batch_size="500" > [replicator] worker_processes="4" > [ssl] port="6984" > [uuids] algorithm="sequential" > [uuids] max_count="1000" > [vendor] name="The Apache Software Foundation" > [view_compaction] keyvalue_buffer_size="2097152" > [debug] 2017-10-10T15:16:13.679901Z couchdb@localhost <0.114.0> -------- > Supervisor couch_log_sup started couch_log_monitor:start_link() at pid > <0.117.0> > [debug] 2017-10-10T15:16:13.680688Z couchdb@localhost <0.114.0> -------- > Supervisor couch_log_sup started > config_listener_mon:start_link(couch_log_sup, nil) at pid <0.118.0> > [info] 2017-10-10T15:16:13.680705Z couchdb@localhost <0.9.0> -------- > Application couch_log started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.682503Z couchdb@localhost <0.122.0> -------- > Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid > <0.123.0> > [debug] 2017-10-10T15:16:13.683354Z couchdb@localhost <0.122.0> -------- > Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid > <0.124.0> > [debug] 2017-10-10T15:16:13.684104Z couchdb@localhost <0.122.0> -------- > Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at > pid <0.125.0> > [info] 2017-10-10T15:16:13.684414Z couchdb@localhost <0.9.0> -------- > Application folsom started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.697949Z couchdb@localhost <0.129.0> -------- > Supervisor couch_stats_sup started couch_stats_aggregator:start_link() at > pid <0.130.0> > [debug] 2017-10-10T15:16:13.699032Z couchdb@localhost <0.129.0> -------- > Supervisor couch_stats_sup started couch_stats_process_tracker:start_link() > at pid <0.179.0> > [info] 2017-10-10T15:16:13.699421Z couchdb@localhost <0.9.0> -------- > Application couch_stats started on node couchdb@localhost > [info] 2017-10-10T15:16:13.699726Z couchdb@localhost <0.9.0> -------- > Application khash started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.701883Z couchdb@localhost <0.184.0> -------- > Supervisor couch_event_sup2 started couch_event_server:start_link() at pid > <0.185.0> > [debug] 2017-10-10T15:16:13.702879Z couchdb@localhost <0.187.0> -------- > Supervisor couch_event_os_sup started > config_listener_mon:start_link(couch_event_os_sup, nil) at pid <0.188.0> > [debug] 2017-10-10T15:16:13.702948Z couchdb@localhost <0.184.0> -------- > Supervisor couch_event_sup2 started couch_event_os_sup:start_link() at pid > <0.187.0> > [info] 2017-10-10T15:16:13.703629Z couchdb@localhost <0.9.0> -------- > Application couch_event started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.705675Z couchdb@localhost <0.192.0> -------- > Supervisor ibrowse_sup started ibrowse:start_link() at pid <0.193.0> > [info] 2017-10-10T15:16:13.705969Z couchdb@localhost <0.9.0> -------- > Application ibrowse started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.707595Z couchdb@localhost <0.198.0> -------- > Supervisor ioq_sup started ioq:start_link() at pid <0.199.0> > [info] 2017-10-10T15:16:13.707965Z couchdb@localhost <0.9.0> -------- > Application ioq started on node couchdb@localhost > [info] 2017-10-10T15:16:13.708289Z couchdb@localhost <0.9.0> -------- > Application mochiweb started on node couchdb@localhost > [info] 2017-10-10T15:16:13.710907Z couchdb@localhost <0.204.0> -------- > Apache CouchDB 2.1.0 is starting. > > [info] 2017-10-10T15:16:13.710943Z couchdb@localhost <0.205.0> -------- > Starting couch_sup > [debug] 2017-10-10T15:16:13.711485Z couchdb@localhost <0.205.0> -------- > Supervisor couch_sup started config_listener_mon:start_link(couch_sup, nil) > at pid <0.206.0> > [debug] 2017-10-10T15:16:13.715475Z couchdb@localhost <0.207.0> -------- > Supervisor couch_primary_services started couch_drv:start_link() at pid > <0.208.0> > [debug] 2017-10-10T15:16:13.717142Z couchdb@localhost <0.207.0> -------- > Supervisor couch_primary_services started couch_task_status:start_link() at > pid <0.209.0> > [debug] 2017-10-10T15:16:13.721255Z couchdb@localhost <0.207.0> -------- > Supervisor couch_primary_services started couch_server:sup_start_link() at > pid <0.210.0> > [debug] 2017-10-10T15:16:13.721555Z couchdb@localhost <0.205.0> -------- > Supervisor couch_sup started couch_primary_sup:start_link() at pid <0.207.0> > [debug] 2017-10-10T15:16:13.723161Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started > gen_event:start_link({local,couch_plugin}) at pid <0.214.0> > [debug] 2017-10-10T15:16:13.724923Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_peruser:start_link() at > pid <0.215.0> > [debug] 2017-10-10T15:16:13.726220Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_os_daemons:start_link() > at pid <0.216.0> > [debug] 2017-10-10T15:16:13.727494Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_proc_manager:start_link() > at pid <0.218.0> > [debug] 2017-10-10T15:16:13.735921Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_httpd:start_link() at pid > <0.220.0> > [debug] 2017-10-10T15:16:13.739567Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_index_server:start_link() > at pid <0.237.0> > [debug] 2017-10-10T15:16:13.740659Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started > couch_external_manager:start_link() at pid <0.241.0> > [debug] 2017-10-10T15:16:13.742246Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_httpd_vhost:start_link() > at pid <0.243.0> > [debug] 2017-10-10T15:16:13.757002Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_auth_cache:start_link() > at pid <0.245.0> > [debug] 2017-10-10T15:16:13.757458Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started couch_uuids:start() at pid > <0.252.0> > [debug] 2017-10-10T15:16:13.758783Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started > couch_compaction_daemon:start_link() at pid <0.254.0> > [debug] 2017-10-10T15:16:13.760294Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.260.0> > [debug] 2017-10-10T15:16:13.760641Z couchdb@localhost <0.213.0> -------- > Supervisor couch_secondary_services started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_couch_db) > at pid <0.261.0> > [debug] 2017-10-10T15:16:13.760703Z couchdb@localhost <0.205.0> -------- > Supervisor couch_sup started couch_secondary_sup:start_link() at pid > <0.213.0> > [info] 2017-10-10T15:16:13.760718Z couchdb@localhost <0.204.0> -------- > Apache CouchDB has started. Time to relax. > > [info] 2017-10-10T15:16:13.761213Z couchdb@localhost <0.204.0> -------- > Apache CouchDB has started on http://127.0.0.1:5986/ > [info] 2017-10-10T15:16:13.761739Z couchdb@localhost <0.9.0> -------- > Application couch started on node couchdb@localhost > [info] 2017-10-10T15:16:13.762049Z couchdb@localhost <0.9.0> -------- > Application ets_lru started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.762588Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `_nodes` is 0%, estimated space for compaction > is 8372 bytes. > [debug] 2017-10-10T15:16:13.766097Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.769028Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/e0000000-ffffffff/_users.1507263073` is > 0%, estimated space for compaction is 8375 bytes. > [debug] 2017-10-10T15:16:13.772167Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.773587Z couchdb@localhost <0.274.0> -------- > Supervisor rexi_sup started rexi_server:start_link(rexi_server) at pid > <0.279.0> > [debug] 2017-10-10T15:16:13.774062Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.775826Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.776827Z couchdb@localhost <0.274.0> -------- > Supervisor rexi_sup started rexi_server_sup:start_link(rexi_server_sup) at > pid <0.285.0> > [debug] 2017-10-10T15:16:13.778571Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 77978 bytes. > [debug] 2017-10-10T15:16:13.782037Z couchdb@localhost <0.274.0> -------- > Supervisor rexi_sup started rexi_server_mon:start_link(rexi_server) at pid > <0.290.0> > [debug] 2017-10-10T15:16:13.782495Z couchdb@localhost <0.274.0> -------- > Supervisor rexi_sup started rexi_server_sup:start_link(rexi_buffer_sup) at > pid <0.291.0> > [debug] 2017-10-10T15:16:13.782746Z couchdb@localhost <0.274.0> -------- > Supervisor rexi_sup started rexi_server_mon:start_link(rexi_buffer) at pid > <0.292.0> > [debug] 2017-10-10T15:16:13.782843Z couchdb@localhost <0.285.0> -------- > Supervisor rexi_server_sup started > rexi_server:start_link(rexi_server_couchdb@localhost) at pid <0.293.0> > [info] 2017-10-10T15:16:13.783602Z couchdb@localhost <0.9.0> -------- > Application rexi started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.783687Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.786496Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.788139Z couchdb@localhost <0.291.0> -------- > Supervisor rexi_buffer_sup started > rexi_buffer:start_link(rexi_buffer_couchdb@localhost) at pid <0.303.0> > [debug] 2017-10-10T15:16:13.789488Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 16564 bytes. > [debug] 2017-10-10T15:16:13.791461Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.793842Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started gen_event:start_link({local,mem3_events}) at > pid <0.311.0> > [debug] 2017-10-10T15:16:13.794138Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/e0000000-ffffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.796053Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.798235Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/60000000-7fffffff/_users.1507263073` is > 0%, estimated space for compaction is 8375 bytes. > [debug] 2017-10-10T15:16:13.799766Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started mem3_nodes:start_link() at pid <0.318.0> > [debug] 2017-10-10T15:16:13.800315Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.802034Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.805082Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 8347 bytes. > [debug] 2017-10-10T15:16:13.806162Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started mem3_sync_nodes:start_link() at pid <0.333.0> > [debug] 2017-10-10T15:16:13.806814Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 118938 bytes. > [debug] 2017-10-10T15:16:13.809338Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.811308Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 16539 bytes. > [debug] 2017-10-10T15:16:13.812451Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started mem3_sync:start_link() at pid <0.337.0> > [debug] 2017-10-10T15:16:13.813390Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 41149 bytes. > [debug] 2017-10-10T15:16:13.815415Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.817373Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started mem3_shards:start_link() at pid <0.349.0> > [debug] 2017-10-10T15:16:13.818599Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/60000000-7fffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.822001Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started mem3_sync_event_listener:start_link() at pid > <0.363.0> > [debug] 2017-10-10T15:16:13.822065Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.822885Z couchdb@localhost <0.310.0> -------- > Supervisor mem3_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.364.0> > [info] 2017-10-10T15:16:13.823512Z couchdb@localhost <0.9.0> -------- > Application mem3 started on node couchdb@localhost > [info] 2017-10-10T15:16:13.823901Z couchdb@localhost <0.9.0> -------- > Application fabric started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.825849Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/20000000-3fffffff/_users.1507263073` is > 0%, estimated space for compaction is 8375 bytes. > [debug] 2017-10-10T15:16:13.827814Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.830119Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.832358Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 8347 bytes. > [debug] 2017-10-10T15:16:13.836221Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started config_listener_mon:start_link(chttpd_sup, > [{bind_address,"0.0.0.0"},{port,"5984"},{backlog,"512"},{server_options,undefined}]) > at pid <0.385.0> > [debug] 2017-10-10T15:16:13.837590Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 45203 bytes. > [debug] 2017-10-10T15:16:13.840413Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started chttpd:start_link() at pid <0.389.0> > [debug] 2017-10-10T15:16:13.840848Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.842850Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 8347 bytes. > [debug] 2017-10-10T15:16:13.844312Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started chttpd_auth_cache:start_link() at pid > <0.412.0> > [debug] 2017-10-10T15:16:13.844963Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 32957 bytes. > [debug] 2017-10-10T15:16:13.847465Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started ets_lru:start_link(chttpd_auth_cache_lru, []) > at pid <0.417.0> > [debug] 2017-10-10T15:16:13.847519Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.847964Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd) at > pid <0.418.0> > [debug] 2017-10-10T15:16:13.848984Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.419.0> > [debug] 2017-10-10T15:16:13.849625Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.422.0> > [debug] 2017-10-10T15:16:13.849968Z couchdb@localhost <0.384.0> -------- > Supervisor chttpd_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_auth) > at pid <0.423.0> > [info] 2017-10-10T15:16:13.850383Z couchdb@localhost <0.9.0> -------- > Application chttpd started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.851600Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/20000000-3fffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.854403Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.856213Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/80000000-9fffffff/_users.1507263073` is > 0%, estimated space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.858008Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.861119Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 8378 bytes. > [debug] 2017-10-10T15:16:13.862004Z couchdb@localhost <0.441.0> -------- > Supervisor couch_index_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_couch_index) > at pid <0.442.0> > [info] 2017-10-10T15:16:13.862354Z couchdb@localhost <0.9.0> -------- > Application couch_index started on node couchdb@localhost > [info] 2017-10-10T15:16:13.862616Z couchdb@localhost <0.9.0> -------- > Application couch_mrview started on node couchdb@localhost > [info] 2017-10-10T15:16:13.862954Z couchdb@localhost <0.9.0> -------- > Application couch_plugins started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.867811Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > gen_event:start_link({local,couch_replication}) at pid <0.451.0> > [debug] 2017-10-10T15:16:13.869850Z couchdb@localhost <0.454.0> -------- > Initialized clustering gen_server <0.454.0> > [debug] 2017-10-10T15:16:13.870302Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_clustering:start_link() at pid <0.454.0> > [debug] 2017-10-10T15:16:13.876750Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_connection:start_link() at pid <0.461.0> > [debug] 2017-10-10T15:16:13.886136Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_rate_limiter:start_link() at pid <0.463.0> > [debug] 2017-10-10T15:16:13.893317Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_scheduler_sup:start_link() at pid <0.486.0> > [notice] 2017-10-10T15:16:13.898076Z couchdb@localhost <0.92.0> -------- > config: [features] scheduler set to true for reason nil > [debug] 2017-10-10T15:16:13.898475Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_scheduler:start_link() at pid <0.489.0> > [debug] 2017-10-10T15:16:13.901825Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 7 > [debug] 2017-10-10T15:16:13.902316Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 6 > [debug] 2017-10-10T15:16:13.902758Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for test > [debug] 2017-10-10T15:16:13.903162Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 123 > [debug] 2017-10-10T15:16:13.903607Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 4 > [debug] 2017-10-10T15:16:13.903741Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 8 > [debug] 2017-10-10T15:16:13.904358Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 1 > [debug] 2017-10-10T15:16:13.904486Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 5 > [debug] 2017-10-10T15:16:13.905256Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 9 > [debug] 2017-10-10T15:16:13.905519Z couchdb@localhost <0.413.0> -------- > Invalidating cached credentials for 10 > [debug] 2017-10-10T15:16:13.907931Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_doc_processor:start_link() at pid <0.492.0> > [info] 2017-10-10T15:16:13.908952Z couchdb@localhost <0.493.0> -------- > Opening index for db: shards/80000000-9fffffff/_replicator.1507263073 idx: > _design/_replicator sig: "3e823c2a4383ac0c18d4e574135a5b08" > [debug] 2017-10-10T15:16:13.909391Z couchdb@localhost <0.256.0> -------- > Fragmentation for view group `_replicator` (database > `shards/80000000-9fffffff/_replicator.1507263073`) is 0%, estimated space > for compaction is 51 bytes. > [debug] 2017-10-10T15:16:13.911639Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.913504Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 45203 bytes. > [debug] 2017-10-10T15:16:13.915376Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.917311Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.919161Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 24756 bytes. > [debug] 2017-10-10T15:16:13.920336Z couchdb@localhost <0.450.0> -------- > Supervisor couch_replicator_sup started > couch_replicator_db_changes:start_link() at pid <0.519.0> > [info] 2017-10-10T15:16:13.920653Z couchdb@localhost <0.9.0> -------- > Application couch_replicator started on node couchdb@localhost > [info] 2017-10-10T15:16:13.920888Z couchdb@localhost <0.9.0> -------- > Application couch_peruser started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.921359Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.923468Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/80000000-9fffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.926225Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.926860Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/40000000-5fffffff/_users.1507263073` is > 0%, estimated space for compaction is 12474 bytes. > [info] 2017-10-10T15:16:13.928033Z couchdb@localhost <0.535.0> -------- > Opening index for db: shards/40000000-5fffffff/_users.1507263073 idx: > _design/_auth sig: "3e823c2a4383ac0c18d4e574135a5b08" > [debug] 2017-10-10T15:16:13.928466Z couchdb@localhost <0.256.0> -------- > Fragmentation for view group `_auth` (database > `shards/40000000-5fffffff/_users.1507263073`) is 0%, estimated space for > compaction is 51 bytes. > [debug] 2017-10-10T15:16:13.930039Z couchdb@localhost <0.542.0> -------- > Supervisor ddoc_cache_sup started ets_lru:start_link(ddoc_cache_lru, > [{max_size,104857600},{max_lifetime,60000}]) at pid <0.543.0> > [debug] 2017-10-10T15:16:13.930648Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.932589Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.934591Z couchdb@localhost <0.542.0> -------- > Supervisor ddoc_cache_sup started ddoc_cache_opener:start_link() at pid > <0.550.0> > [info] 2017-10-10T15:16:13.934900Z couchdb@localhost <0.9.0> -------- > Application ddoc_cache started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.935315Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.937295Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 28860 bytes. > [debug] 2017-10-10T15:16:13.941340Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.944070Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 20669 bytes. > [debug] 2017-10-10T15:16:13.945850Z couchdb@localhost <0.567.0> -------- > Supervisor global_changes_sup started > config_listener_mon:start_link(global_changes_sup, nil) at pid <0.568.0> > [debug] 2017-10-10T15:16:13.947160Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.949653Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.951619Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/40000000-5fffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.953530Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.953889Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/00000000-1fffffff/_users.1507263073` is > 0%, estimated space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.955656Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.956458Z couchdb@localhost <0.567.0> -------- > Supervisor global_changes_sup started global_changes_server:start_link() at > pid <0.572.0> > [debug] 2017-10-10T15:16:13.957101Z couchdb@localhost <0.567.0> -------- > Supervisor global_changes_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.585.0> > [debug] 2017-10-10T15:16:13.957431Z couchdb@localhost <0.567.0> -------- > Supervisor global_changes_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_global_changes) > at pid <0.586.0> > [info] 2017-10-10T15:16:13.957927Z couchdb@localhost <0.9.0> -------- > Application global_changes started on node couchdb@localhost > [info] 2017-10-10T15:16:13.958281Z couchdb@localhost <0.9.0> -------- > Application jiffy started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.958977Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.960885Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.963245Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 49331 bytes. > [debug] 2017-10-10T15:16:13.965683Z couchdb@localhost <0.601.0> -------- > Supervisor mango_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.602.0> > [debug] 2017-10-10T15:16:13.966010Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [info] 2017-10-10T15:16:13.966035Z couchdb@localhost <0.9.0> -------- > Application mango started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.968248Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.970869Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.972803Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.974754Z couchdb@localhost <0.618.0> -------- > Supervisor setup_sup started > couch_epi_codechange_monitor:start_link(couch_epi_functions_gen_chttpd_handlers) > at pid <0.619.0> > [info] 2017-10-10T15:16:13.975433Z couchdb@localhost <0.9.0> -------- > Application setup started on node couchdb@localhost > [info] 2017-10-10T15:16:13.975734Z couchdb@localhost <0.9.0> -------- > Application snappy started on node couchdb@localhost > [debug] 2017-10-10T15:16:13.976135Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/00000000-1fffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.981897Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.982389Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/c0000000-dfffffff/_users.1507263073` is > 0%, estimated space for compaction is 16570 bytes. > [debug] 2017-10-10T15:16:13.984145Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.985700Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.987304Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.989034Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 45203 bytes. > [debug] 2017-10-10T15:16:13.990743Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.994144Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.996280Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 8372 bytes. > [debug] 2017-10-10T15:16:13.998189Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:13.999986Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/c0000000-dfffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.001820Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-5-dev.1507313668` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.002311Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `shards/a0000000-bfffffff/_users.1507263073` is > 0%, estimated space for compaction is 16570 bytes. > [debug] 2017-10-10T15:16:14.004005Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-test-dev.1507311863` is 0%, estimated > space for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.005684Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/_replicator.1507263073` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.007384Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/blackbook-base.1507313322` is 0%, estimated space > for compaction is 8347 bytes. > [debug] 2017-10-10T15:16:14.009142Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-7-dev.1507313771` is 0%, estimated space > for compaction is 82074 bytes. > [debug] 2017-10-10T15:16:14.010739Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-4-dev.1507312806` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.012339Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-10-dev.1507480450` is 0%, estimated space > for compaction is 20635 bytes. > [debug] 2017-10-10T15:16:14.014009Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/_global_changes.1507263073` is 0%, estimated > space for compaction is 16564 bytes. > [debug] 2017-10-10T15:16:14.015691Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-6-dev.1507313748` is 0%, estimated space > for compaction is 4244 bytes. > [debug] 2017-10-10T15:16:14.017215Z couchdb@localhost <0.256.0> -------- > Fragmentation for database > `shards/a0000000-bfffffff/userdb-8-dev.1507480046` is 0%, estimated space > for compaction is 8347 bytes. > [debug] 2017-10-10T15:16:14.017907Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `_replicator` is 0%, estimated space for > compaction is 8378 bytes. > [info] 2017-10-10T15:16:14.018482Z couchdb@localhost <0.684.0> -------- > Opening index for db: _replicator idx: _design/_replicator sig: > "3e823c2a4383ac0c18d4e574135a5b08" > [debug] 2017-10-10T15:16:14.018907Z couchdb@localhost <0.256.0> -------- > Fragmentation for view group `_replicator` (database `_replicator`) is 0%, > estimated space for compaction is 51 bytes. > [debug] 2017-10-10T15:16:14.019155Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `_users` is 0%, estimated space for compaction > is 8378 bytes. > [info] 2017-10-10T15:16:14.019742Z couchdb@localhost <0.689.0> -------- > Opening index for db: _users idx: _design/_auth sig: > "3e823c2a4383ac0c18d4e574135a5b08" > [debug] 2017-10-10T15:16:14.020082Z couchdb@localhost <0.256.0> -------- > Fragmentation for view group `_auth` (database `_users`) is 0%, estimated > space for compaction is 51 bytes. > [debug] 2017-10-10T15:16:14.021682Z couchdb@localhost <0.256.0> -------- > Fragmentation for database `_dbs` is 0%, estimated space for compaction is > 65728 bytes. > > > > [notice] 2017-10-10T15:16:18.870969Z couchdb@localhost <0.454.0> -------- > couch_replicator_clustering : publish cluster `stable` event > [notice] 2017-10-10T15:16:18.872962Z couchdb@localhost <0.519.0> -------- > Started replicator db changes listener <0.757.0> > [debug] 2017-10-10T15:16:18.873751Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.759.0> > [debug] 2017-10-10T15:16:18.884939Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.768.0> > [debug] 2017-10-10T15:16:18.905319Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.769.0> > [debug] 2017-10-10T15:16:18.908293Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.770.0> > [debug] 2017-10-10T15:16:18.917376Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.771.0> > [debug] 2017-10-10T15:16:18.933042Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.772.0> > [debug] 2017-10-10T15:16:18.947959Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.773.0> > [debug] 2017-10-10T15:16:18.983239Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.774.0> > [debug] 2017-10-10T15:16:19.004975Z couchdb@localhost <0.757.0> -------- > <<"_replicator">> change feed exited <0.775.0>
