Questions tagged [bigcouch]

BigCouch creates a cluster of CouchDB databases, acting in concert to store and retrieve documents, index and serve views, and serve CouchApps.

BigCouch has been developed in Erlang by Cloudant and then released as an Apache License 2.0 open source project.

BigCouch allows users to create clusters of CouchDBs that are distributed over an arbitrary number of servers. While it appears to the end-user as one CouchDB instance, it is in fact one or more nodes in an elastic cluster, acting in concert to store and retrieve documents, index and serve views, and serve CouchApps.

Each node of the cluster can accept requests, data is placed on partitions based on a consistent hashing algorithm, and quorum protocols are for read/write operations. It relies on Erlang & the Open Telecom Platform, despite using its own RPC mechanism over OTP’s own “rex” server.

Its future will be a merge with CouchDB.

23 questions
0
votes
2 answers

how to start couchdb lucene and integrate it with bigcouch

i want to using couchdb-lucene as full text search, but i can't run it... i got this error ls: cannot access lib/*.jar: No such file or directory Exception in thread "main" java.lang.NoClassDefFoundError: com/github/rnewson/couchdb/lucene/Main…
yuda
  • 1,907
  • 3
  • 16
  • 23
0
votes
1 answer

BigCouch cluster connection issue

I have successfully setuped BigCouch on two different machines. Both of them run locally very well. When I joins them in a cluster using one of or both this command: curl -X PUT machine1:5986/nodes/bigcouch@machine2 -d {} curl -X PUT…
CD Tran
  • 99
  • 1
  • 1
  • 7
0
votes
2 answers

Bigcouch cluster configuration

I'm currently trying bigcouch and I don't quite understand how it identifies nodes within a cluster. For example, the dev cluster consists of 3 nodes listening on ports 15984/15986, 25984/25986 and 35984/35986. When we add nodes to cluster we append…
azerole
  • 1,262
  • 3
  • 16
  • 23
0
votes
1 answer

bigcouch stuck if one from three nodes down

i use bigcouch as my project... i open 3 node ( default ) everything fine until one node suddenly down ( one server crash ) why if one node down, input process stuck...? i read the documentation... i try to set N = 1 ( replicate constant ) , R = 1…
yuda
  • 1,907
  • 3
  • 16
  • 23
0
votes
1 answer

Bigcouch Clustering not Working

I am new to the bigcouch.I have successfully setup bigcouch on two different system which is working perfectly fine. On first bigcouch i have some dbs which i want to be replicate onto other bigcouch.And i copied all the shards from first bigcouch…
vinay
  • 105
  • 1
  • 1
  • 12
0
votes
2 answers

BigCouch error: "couldn't connect to host" when joinning a node

I try to setup 2 nodes with BigCouch. I set FQDN on /etc/hostname on 2 machines (example: may2.test.com). I also edited /opt/bigcouch/etc/vm.args: -name bigcouch@may2.test.com -setcookie monster (as default) Then I try: curl localhost:5984…
0
votes
1 answer

Error creating DB in bicgcouch with database_dir moved

I have a cluster setup and I've moved the data dir from /opt/bigcouch/var/lib to /bigcouch I changed the following lines in /opt/bigcouch/etc/default.ini database_dir = /bigcouch view_index_dir = /bigcouch I'm having a issue where if I try to…
0
votes
1 answer

BigCouch IDs and Backup data on EC2

I have a few questions about BigCouch that i'm interesting getting answers before start using it. Do I need to choose my shard key carefully or can just use an auto-generated GUID? I start with a single server with 1 replication, but I want to be…
Liron Harel
  • 10,819
  • 26
  • 118
  • 217
1
2