Apache CouchDB is a document-oriented database that can be queried and indexed in a MapReduce fashion. It exposes a pure restful API, making interaction possible from any language with the ability to send HTTP requests. This also allows "Futon", the administration interface, to work completely in ...
0
votes
2answers
28 views
Mono missing System.Numerics.BigInteger.Parse(string,IFormatProvider)
I'm currently getting the following error using the Json.NET/Newtonsoft.JSON library:
Missing method System.Numerics.BigInteger::Parse(string,IFormatProvider) in assembly
...
0
votes
1answer
28 views
Can we not makes changes to specific fields in the value for a given Key in COuchbase Java API?
I have this schema
{"type": "record",
"name": "Member",
"fields": [
{"name": "name", "type": ["string", "null"] },
{"name": "skill", "type": ["string" , "null"]}
]}
Now I have initially inserted ...
0
votes
1answer
27 views
How exactly is startkey and endkey working in CouchDB?
I'm working with a locations database in CouchDB. I created a view where my key is an array with rounded values of latitude and longitude. Now I'm selecting with the following conditions:
Startkey: [ ...
0
votes
1answer
20 views
trouble with CouchDB _rewrite handler
I am trying to use CouchDB's url rewriting capabilities, but keep getting an error:
{"error":"unknown_error","reason":"function_clause"}
I read http://wiki.apache.org/couchdb/Rewriting_urls and ...
0
votes
0answers
20 views
use cradle to delete db but cache didn't reset
I use node 0.8.18, express3.2.5, cradle0.6.6. my problem is : after I saved a doc into db, then I delete db to reset my testcase env, but when I save the doc with the same id, cradle told me that doc ...
0
votes
1answer
20 views
How to replicate CouchDB local to remote with nano — without duplication?
I'm attempting to replicate my local CouchDB database with a remote database that lives on iriscouch.com. I'm using nano.
This works fine -- except that the local documents are added to the existing ...
0
votes
1answer
11 views
CouchDB run a list function on _changes
I need to create a feed based on changed documents. I figured the _changes api would be perfect in this case. Ie simply store the last sequence id client side, so we can use it to limit the results in ...
0
votes
0answers
11 views
Couch.allDbs fetch wrong Port
When i tried to access couchDB to retrieve all database using $.couch.allDbs, the plugin get access the port 60127 instead of 5984 and it throws an error like "The resource you are looking for has ...
0
votes
2answers
30 views
What does 'continuous' mean for PouchDB replicate()?
According to the PouchDB replicate() documentation it's possible to add a continuous option to Pouch.replicate():
If true starts subscribing to changes in the first database and replicating them ...
-1
votes
0answers
25 views
javascript non-xmpp chat libraries with conversation backlog [closed]
I'm looking for a javascript library or libraries for a non-xmpp based web-chat. I need to set something up that can function essentially like facebook chat in that users can receive offline as well ...
0
votes
0answers
19 views
How to create a simple document in a CouchDB database from Android?
I have a CouchBase database on iriscouch.com. I am working on an Android app.
I got stuck a simple task: of making a document in a database from Android.
I am trying to do this in a simple manner ...
0
votes
1answer
33 views
Is there any way to import or convert CouchDB to MongoDB?
I have a CouchDB how do I export or convert it to MongoDB?
root@nkumar-desktop:/home/nkumar# curl -X GET http:/localhost/my_first_db
{"db_name":"my_first_db",
"doc_count":2,
"doc_del_count":0,
...
0
votes
0answers
23 views
CouchDB : How should I design the data structure? Is there something like folder, cabinet or drawer to keep things tidy?
I have been hearing about CouchDB & nosql dbs for a while, finally got time to dig a bit more. I chose Couch mainly because of the http api as js is my most familiar language and I can do things ...
-1
votes
0answers
19 views
what are some python database abstraction layer modules for nosql databases? [closed]
I think web2py's gluon Database Abstraction Layer provides a DAL for SQL and NoSQL databases, and I understand Django may have something along those lines as well.
Are there any other viable DALs ...
1
vote
1answer
49 views
How to replicate from CouchDB to PouchDB?
I've set up a local CouchDB database and I'd like to replicate it to a PouchDB database, using JavaScript in a web page running on localhost.
With the code below I get this error:
Origin ...
0
votes
1answer
20 views
Apache couchDB CA signed certificate issues
I am running an Apache CouchDB instance (version 1.3.0) on an Ubuntu 12.10 server in the cloud (AWS). I am trying to get SSL working on my couchDB instance.
The basic SSL setup is very easy. I have ...
1
vote
1answer
33 views
Access cloudant db using .Net HttpClient
I am attempting to connect to Cloudant (a couch-style DB) from a .Net MVC application. I am following the guidelines for consuming a web API using the HttpClient, as illustrated here:
...
0
votes
1answer
32 views
map/reduce function on json objects in couchdb
I have a couple of documents in my couchdb database which all are like:
{
"_id":"1234567890",
"name": [
"category1": 5,
"category2": 8
]
}
I want to have a map function which gives me ...
0
votes
1answer
15 views
CouchDB Java client
This wiki page, http://wiki.apache.org/couchdb/Getting_started_with_Java, lists several CouchDB Java clients. I wonder if any of the clients mentioned is significantly more ...
0
votes
1answer
30 views
Couchdb Javascript reference
Background:
Trevor would like to set up some couchdb shows and views that require a timestamp to be appended to the requesting URL, along with some other parameters, in order to easily make the time ...
0
votes
1answer
22 views
CouchDB performance issue reducing pair of values
Using CouchDB, I'm getting very poor performance trying to compute a "last pass" and "last fail" time over a set of automated test results.
I have a DB of ~5000 records of the form:
{
...
0
votes
1answer
24 views
couchdb views update slow after _design document update:
I'm dealing with a couchdb database, I'm now handling more or less 400000 docs.
I have several views (only map, no reduce), and what happens is that when I want to update just one of them with ...
0
votes
1answer
21 views
Getting unique _id from CouchDB view
I want to make search function that search all document containing specific tags using couchdb view.
Assume I have the following documents:
{
"_id": "1",
"tags": ["abc", ...
0
votes
1answer
46 views
read csv with headers then upload each row to couchdb using node/grunt
I would like to read a csv file and upload each row to a couchdb using a grunt task. At this point I am not yet doing any database validation such as checking if the record already exists but will ...
2
votes
1answer
45 views
Does Cloudant support couch_httpd_oauth with use_users_db = true?
Posted here by request, after asked on irc #cloudant
Does Cloudant support couch_httpd_oauth with use_users_db = true? (This, of course, implies that I would have disabled Cloudant's security in ...
0
votes
1answer
32 views
Filtering an ng-repeat by couchdb field
Currently I am trying to filter my ng-repeat. The filter should check the status of the couch DB field "_deleted" and show the article if "_deleted" is false, and remove the article from view if it ...
0
votes
1answer
35 views
Acralyzer: invalid_json error when adding user
I've tried adding users using:
curl -X PUT -u myUsername:myPassword http://kaydee.iriscouch.com/_users/org.couchdb.user:myNewUsername -d '{"name":"myNewUsername", "password":"myNewUserPassword", ...
1
vote
0answers
25 views
CouchDB view for mining automated test results
I'm considering using CouchDB to store automated test results over time. I would store each test result as something like:
{
testId: 123,
passed: false,
executionDate: ...
5
votes
2answers
90 views
what better/faster complex couchbase ID's or inline document type=“my_document_type”
My current id keys contains from 3 or 4 segments:
namespace::my_key::id
namespace::my_key::my_second_key::id
Solution 1.
Use complex id's and create views by searching in id for a key
function ...
2
votes
2answers
48 views
map-reduce function in CouchDB
I have a java program, that reads all words of a PDF file. I saved the words with the pagenumbers in a database (couchDB). Now I want to write a map and a reduce function, which list each word with ...
0
votes
0answers
9 views
CouchDB env vars on Windows 7
My Program uses CoubDB and Python on Windows 7 x64.
Sometimes i got this error:
[error] [<0.20409.0>] {error_report,<0.34.0>,
{<0.20409.0>,crash_report,
...
0
votes
0answers
39 views
Elastic search with CouchDB river plugin - Can't find any documents
I recently started using elastic search and couchdb and I have the following problem. I have a couch database with a bunch of documents. I add a couch db river index on elastic search and I expect to ...
0
votes
0answers
24 views
Handling relations in couchdb
In short, I don't know how to query reports from my database for a certain user. A user may have access to multiple accounts. A user document look like this:
{
type: "profile",
_id: "userid",
...
2
votes
1answer
32 views
CouchDB replication error: random fail with error “checkpoint_commit_failure”
Inside a PHP application I'm trying to replicate 4 DBs in and out: this is only happening with one of those replications: database's name is "people". To avoid any PHP library specific issue, I'm ...
1
vote
2answers
31 views
How do skip the revision check when putting a document into couchdb using curl?
I am putting a document into couchdb like this:
curl -X PUT http://localhost:5984/bucket/keyname_1 \
-d '{"foo":"bar"}'
This works just fine as long as the document doesn't already exist. If ...
0
votes
1answer
55 views
Error during PouchDB to CouchDB replication - “Only DELETE,GET,HEAD,POST allowed”
I'm getting an error when trying to replicate from PouchDB (using http://www.pouchvision.com/) to CouchDB (using a local installation).
Investigating the error with Fiddler, it seems that during a ...
0
votes
2answers
61 views
DocumentDB vs Key-Value DB with hierarchy Performance
First things first: I know Key-Value DB are by far best the performing databases. My assumption is that this is due to their simplicity (sticking to very few primitives).
(EDIT2: Obviously also due to ...
0
votes
1answer
28 views
CouchDB Update XML Attachement
Ive read at least 5 articles on this but I can't seem to get it. I have an xml file that is already in memory in the browser and I am attempting to update a document from my db, for which I already ...
-2
votes
0answers
17 views
Hosting couchdb and reverse proxy server [closed]
I have a couchapp hosted on iriscouch. Now I need for security reasons a way to block user read and write requests except when they come via a view.
As I understood you could do that e.g. with a ...
0
votes
0answers
17 views
how to intercept errors from server when using streams
In general, If the connection to a server is successful, but the server sends back an error message and sets the status code to an error state, I want this response to be emitted as an error event on ...
2
votes
1answer
28 views
CouchDB JSon response customization
I'm storing addresses data in Couchdb, and am looking for a way to get an array of just the values, instead of key: value for every record.
This is the current response:
{"total rows": 2438, ...
0
votes
1answer
21 views
proxy for couchdb on centos (rackspace) not working
I am new to the world of couchdb, and I want to setup a proxy so that I can access my couch databases from html files not served up by couch
I installed couch and I can confirm it is running on my ...
0
votes
1answer
29 views
couchdb: calculate average of a value
I'm new to Couchdb. I want to calculate an average of a value in futon.
My map-function:
function(doc) {
if(doc.Fares.Taxes)
emit(1, doc.Fares.Taxes);
}
My reduce-function:
...
0
votes
1answer
87 views
getting data from couchdb in angular js
I am using angular js in my employee management app. I am able to produce a JSON from couchdb as shown :
[
{
"id": "123",
"name": "Henry",
"address": "HSR"
},
{
"id": "456",
...
2
votes
2answers
32 views
CouchDB Query View with Multiple Keys Formating
I'm having a problem getting a couchdb view to return the proper documents when using multiple keys.
This works fine, returning the documents that match:
GET ...
0
votes
1answer
36 views
marklogic replication similar to couchdb [closed]
Is it possible to setup a 2-way replication with marklogic 6 similar to couchdb? Scenario: Use database on location b if location a is offline and automatic resync if a is online again, additionaly a ...
1
vote
1answer
19 views
CouchDb - get current _rev for a 409
Is there some super secret nice flag to use in conjunction with PUT against CouchDb, so that an eventual 409 (Conflict) will include the current _rev in the response? Either in the body or as a ...
0
votes
1answer
16 views
CouchDB synching to DRUPAL
I have two questions. One is synching data from COUCHDB to drupal via FEEDS or SERVCES module. Probably FEEDS. I was thinking I could do a restful GET, that returns JSON from couchDB. But I am ...
-1
votes
0answers
53 views
Using CouchDB with Laravel 4 in a 3-tier app
I'v been searching hardly these past days in how to use CouchDB in the 2-tier, I haven't found a properly documented and useful resource (Doctrine's CouchDB ODM seems very vague I think), so the ...
0
votes
1answer
67 views
User Profiles in a 3 tiered CouchDB and Laravel app
I'm developing a web application in Laravel 4 that has multiple users, each one with a profile. These profiles may (or may not) have different variables, such as dates, etc. I've looked at some RDBMS ...


