Questions tagged [couchdb-futon]

A built-in web-based administration console for apache couchdb. All read / write operation is handled using http request via couchdb restful api.

Typically the url is like :-

http://localhost:5984/_utils/

Basic functionality of futon :-

  • create or delete databases
  • manage individual couchdb documents (analogous to records)
  • testing of map-reduce function
  • monitor couchdb running tasks
  • create views
208 questions
0
votes
2 answers

Is there good way to backup and delete and backout the document from couchdb?

I have some couchdb document need to be removed, Is there good way/steps to backup and delete and backout those document from couchdb?
Jamesjin
  • 371
  • 2
  • 6
  • 15
0
votes
1 answer

is there way add new field/value in couchdb existed document

is there way add new field and its value into existed all couchdb documents, like following I want to add "emailType": "true" into the existed document for emails docType, not sure how can I use updatehandler to achieve this, thank { …
Jamesjin
  • 371
  • 2
  • 6
  • 15
0
votes
2 answers

Do replication on a different drive

Is it possible to replicate a database.couch on a different drive on the same server as the live database? Or should I create it and then move it to where I wanted? I have couchdb Futon 1.6.1. I am trying to replicate trough the portal, this way,…
gastoncs
  • 117
  • 3
  • 11
0
votes
2 answers

Not able to see the API button on the Fauxton of CouchDB

Hi I´m not able to see the API button on the fauxton of cocuhDB, do you know why it´s this.
0
votes
1 answer

Removing documents with filter replication does not work

I am trying to create a replication using a filter in order to remove the deleted documents on CouchDB but I am always facing the same error. This is my filter : "deletedfilter": "function(doc, req) { return !doc._deleted; };", this is my…
JoCuTo
  • 2,463
  • 4
  • 28
  • 44
0
votes
0 answers

How can I limit the document being looked at to only those in last several months (otime limit)

How can I derived from only the document in the last XXX months (based on ticket's lastUpdateDateTime field's value). The list is still sorted by the number of occurrences (how often is used), in descending order. Currently I can sort by the number…
Jamesjin
  • 371
  • 2
  • 6
  • 15
0
votes
0 answers

How to recover CouchDB Futon Password on WIndows

I installed CouchDB on my Windows Machine and after setting it up for the first time, I forgot the password. Now I can't login again in the Futon console. Is there any way to recover (or change) the password?
shikhar bansal
  • 1,629
  • 2
  • 21
  • 43
0
votes
0 answers

CouchDB Futon won't delete database with name including +

According to the specs and to Futon CouchDB database names can contain a '+' however all my attempts to delete the database with both the Futon front end and curl fail. With futon clicking on the delete button does nothing at all the modal stays…
Bill Noble
  • 6,466
  • 19
  • 74
  • 133
0
votes
1 answer

Does multiple versions of couchDB keeps redundant data?

I'm just started with CouchDB and noticed that it keeps multiple versions of data in the database. Does it mean that each version is a full copy of the fields currently added? So does it keep redundant data on the disk or the versions are just…
Alex
  • 1,914
  • 6
  • 26
  • 47
0
votes
1 answer

access denied when accessing couchdb from laptop over ethernet cable

I have a raspberry pi with couchdb on it, Raspberry pi connected to laptop via Ethernet cable and i Can ssh to raspberry pi using Putty no problem. However I cannot access fauxton via ipaddress:5984/_utils/index.html I have set the bind address to…
iFunction
  • 1,208
  • 5
  • 21
  • 35
0
votes
1 answer

Couchdb on windows server 2012

Is anyone using couchDB with windows server 2012. Only version I could find is X86, is there version avilable for 64bit for download.
nsid
  • 19
  • 5
0
votes
1 answer

how to have couchdb query server started?

I raised issues that related to One couchdb view suddenly started timing out:OS process time out and How can I optimize the view and avoid timeout error As I checked out,the reason that the OS time out issue that couchdb query server could not even…
Jamesjin
  • 371
  • 2
  • 6
  • 15
0
votes
0 answers

How can I optimize the view and avoid timeout error

I had a view map/reduce defined as following,as most of documents have no doc.emails[i].userTypecode elements in couchdb, so it is running the view takes too long causing couch to give up / time out: the error is Error: os_preocess_error, OS…
Jamesjin
  • 371
  • 2
  • 6
  • 15
0
votes
0 answers

Pre defining and pre populating a field in Couchdb

I am trying to pre define and possibly pre populate a field in CouchDB every time a new document is created by the user. That is until a user enters a different value the initial value that I created will stay. According to this article it is not…
Anna
  • 13
  • 2
0
votes
1 answer

Reduce output must shrink more rapidly -- Reducing to a list of documents

I have a few documents in my couch db with json as below. The cId will change for each. And I have created a view with map/reduce function to filter out few documents and return a list of json documents. Document structure - { "_id":…
Sam
  • 4,302
  • 12
  • 40
  • 74