Questions tagged [couchbase]

Couchbase Server, originally known as Membase, is an open source, distributed (shared-nothing architecture) NoSQL document-oriented database that is optimized for interactive applications.

Couchbase Server, originally known as Membase, is an open source, distributed (shared-nothing architecture) NoSQL document-oriented database that is optimized for interactive applications. These applications must service many concurrent users; creating, storing, retrieving, aggregating, manipulating and presenting data. In support of these kinds of application needs, Couchbase is designed to provide easy-to-scale key-value or document access with consistent low latency and high sustained throughput. It is designed to be clustered from a single machine to very large scale deployments, with no application code changes to facilitate that.

From Wikipedia

29 questions
4
votes
2 answers

NoSQL, CouchDB vs. CouchBase, What should i do?

I started to encounter some issues on my production site, when having a web page that needs to load a very big ResultSet (currently coming from relational database, MySQL) it takes forever, and problem these result sets are only getting bigger and…
Adihoch
  • 61
  • 1
  • 5
3
votes
2 answers

Couchbase - Get document creation date

Is there a way we can get a document's creation date in Couchbase (2.2.0). We are currently not storing creation date in our documents, so wanted to know if couch stores that as part of document meta data. We plan to query documents based on time,…
Gaurav
  • 33
  • 1
  • 4
3
votes
1 answer

Can a Couchbase application work with no network connection (like CouchDB)?

I'm building an application where users running android tablets will have to be able to write to a database (running on their local device) with NO network connection and sync using peer-to-peer replication (through a USB connection or possibly…
Avi
  • 33
  • 2
2
votes
1 answer

How does a memcached bucket behave when fully loaded?

What is the default ttl of a key in memcached bucket? Also, what happens when a bucket is full? I created a 256MB RAM Bucket and tried to overload it by sending infinite set queries till error is thrown. But to my surprise, it keep accepting inputs,…
dragosrsupercool
  • 365
  • 2
  • 6
  • 15
2
votes
2 answers

How does Couchdb calculates the document revision number?

Whats the exact algorithm to calculate the CouchDB revision number. CouchDB uses a deterministic algorithm to calculate the document revision number. Here is one relevant doc I…
user3769778
  • 121
  • 2
2
votes
0 answers

incremental update in HBase using sqoop

i am working on a POC where i need to implement same like SSIS for sql to hadoop. out DW are in SQL Server and we want to create a HBase at central location where all the data from diff DW will be posted. for the first time load i can do it using…
Radhi
  • 323
  • 1
  • 2
  • 9
1
vote
1 answer

Create Views Quickstart

I have setup a few buckets and now I’d like to create a view but I’m not sure where to start. I have logged in to the web console but the views I have created to not return any results. Also, is it possible to create a view that spans buckets?
Peter H
  • 13
  • 3
1
vote
1 answer

When is the time that Couchbase write documents to disk?

As the title said, when is the time that Couchbase write documents to disk? every 60 seconds? every 1 seconds? every 100 ms? or everytime there are read command to that document?
Kokizzu
  • 1,403
  • 6
  • 18
  • 35
1
vote
1 answer

Couchbase GUI for exploring data

Is there GUI for Couchbase to explore data (especially views), similar to PGAdmin 3 or MySQL Workbench or RoboMongo EDIT: ah, I found the button mentioned by this link
Kokizzu
  • 1,403
  • 6
  • 18
  • 35
1
vote
0 answers

How can I reduce recursion in Couchbase?

Sometimes, you need to access a certain document (A), but you do not know the key for that document (A), as that data is stored in a different document (B). So now, if you want to fetch A, it looks like the following: fetch B parse B get name of…
1
vote
1 answer

Couchbase - get all changed today

I have a couchbase bucket, in it I have an Integer data with a key. I am incrementing it, using the API "increment" so I cannot put a JSON there with the date of the last updated. The question is, how can I select ALL element that where changed…
Alex Frenkel
  • 193
  • 2
  • 12
1
vote
0 answers

couchbase cbrestore fails to transfer data

cbrestore runs without error messages, but does not transfer any data. The problem occurs on debian 10 with couchbase versions 6.0.0, 6.0.1, 6.0.3. The exactly same command runs without problems on windows 10 with couchbase version 6.0.1 - with…
triton3373
  • 23
  • 2
1
vote
0 answers

Couchbase backup and restote through copy data files

I was exploring couchbase backup and restoring procedures then we found standard procedures. But, if I can take data directory backup in the form of .tar and untar data directory whenever restore required, will it work? tar -cvf…
LetsNoSQL
  • 133
  • 7
1
vote
0 answers

Metadata overhead warnings in couchbase web

I have 3 node couchbase cluster which is working fine but now days I am getting many alerts as "Metadata overhead warning. Over 54% RAM allocated to bucket" on couchabse web UI. Please help to supress these alert
LetsNoSQL
  • 133
  • 7
1
vote
1 answer

Any correct procedure for couchbase backup and restore?

I have just started using couchbase server and trying to configure backup and restore method. We require to take backup for each couchbase node or cluster backup also available ?
LetsNoSQL
  • 133
  • 7
1
2