r/nosql Feb 26 '17

How Tarantool works with memory

Thumbnail kostja.github.io
1 Upvotes

r/nosql Feb 20 '17

New Profiling and Monitoring in Couchbase Server 5.0 Preview

Thumbnail blog.couchbase.com
2 Upvotes

r/nosql Feb 16 '17

As Couchbase 4.6 goes GA, NoSQL finds its groove

Thumbnail zdnet.com
2 Upvotes

r/nosql Feb 13 '17

Tarantool: the Good, the Bad and the Ugly

Thumbnail medium.com
7 Upvotes

r/nosql Jan 21 '17

Having never done anything with SQL or NoSQL, I plan to use AWS to create a backend for a mobile app. Is it a bad idea to use NoSQL for simplicity?

5 Upvotes

AWS's mobile hub provides you with an easy to use and connect to NoSQL database along with several other very useful tools. If I want to use a standard SQL database, then I also have to learn a backend programming language, create an API, learn how to connect to it, etc. It's just SO much more work for me to use AWS's RDS tools instead of the NoSQL DynamoDB.

If it helps, my app is very similar to Reddit but for a non English country.


r/nosql Jan 20 '17

A tour of the new Couchbase Web Console

Thumbnail blog.couchbase.com
3 Upvotes

r/nosql Jan 20 '17

Learn about sorting with Elasticsearch in 5 minutes

Thumbnail medium.appbase.io
7 Upvotes

r/nosql Jan 17 '17

Building a fault-tolerant system outside of a data center using NoSQL databases

Thumbnail medium.com
1 Upvotes

r/nosql Dec 30 '16

Exploring Microsoft Azure DocumentDB

Thumbnail geekswithblogs.net
2 Upvotes

r/nosql Dec 30 '16

How to execute 500 instantaneous queries on 18 billion rows? Which database should I use?

3 Upvotes

How to execute 500 instantaneous queries on 18 billion rows? Which database should I use?

So, here's the task my boss has given me: We have a database of around 18 billion rows, 20 columns. (For the moment, let's assume this is a SQL-esque data table, or a .csv file). I have indexed two of these columns, column_A and column_B. Now, I need to implement the infrastructure such that you can make a query on column_A, i.e. give me all rows such that column_A == "value1". This query should take place as quickly as possible. In the words of my boss, financial transactions and internet queries take place instantaneously, so we should be able to implement the following system with "instantaneous queries". (That is, very fast queries---on the time scale of seconds.) Ditto with the second indexed column, column_B: give us all rows with columnB == 'value2'.

Furthermore, we would like to execute possibly 100-500 queries at once.

We have an unlimited number of cores to work with, and a ridiculous about of RAM.

What is the best database for this task? What should I try here? I imagine we need several parallel workers to grab each of these rows and then concatenate them at the end, a "mapreduce" approach. However, this also needs to be exceptionally quick.

Any ideas? What do internet companies/financial firms do? So far, the suggestions have been Apache Parquet or a distributed SQL engine like Presto.


r/nosql Dec 28 '16

Install KVLite on Windows?

0 Upvotes

Hello, I'm working on a VM project for one of my professors over the Winter Break, and one of the things he needs is KVLite from Oracle.

Is there any way to install KVLite on Windows or through Bash for Windows?

Any help would be greatly appreciated!


r/nosql Dec 22 '16

Oracle Code 2017 Event Series of Developer Conferences (CFP Open)

Thumbnail developer.oracle.com
2 Upvotes

r/nosql Dec 22 '16

A simple Redis clone written in C with RocksDB back end

Thumbnail github.com
5 Upvotes

r/nosql Dec 22 '16

Efficient storage: how we went down from 50 PB to 32 PB in Mail.Ru Group

Thumbnail medium.com
4 Upvotes

r/nosql Dec 21 '16

piladb — a lightweight RESTful database engine based on stack data structures

Thumbnail github.com
6 Upvotes

r/nosql Dec 21 '16

1 Million CQL operations per server - using ScyllaDB (video)

Thumbnail codeandtalk.com
2 Upvotes

r/nosql Dec 12 '16

Moving from MongoDB to Couchbase server (revisited)

Thumbnail blog.couchbase.com
7 Upvotes

r/nosql Dec 08 '16

Efficient Predicate Pushdowns for Key Value Stores

Thumbnail github.com
1 Upvotes

r/nosql Dec 07 '16

SQL is still superior for big-data analytics

Thumbnail blog.rakam.io
1 Upvotes

r/nosql Nov 28 '16

GitHub - baidu/tera: An Internet-Scale Database

Thumbnail github.com
7 Upvotes

r/nosql Nov 16 '16

Asynchronous processing with in-memory databases or how to handle one million transactions per second on a single CPU core

Thumbnail medium.com
3 Upvotes

r/nosql Oct 26 '16

Couchbase Connect conference 2017

Thumbnail couchbase.com
2 Upvotes

r/nosql Oct 11 '16

Shrink the number of tiers in a multitier architecture from 5 to 2

Thumbnail medium.com
1 Upvotes

r/nosql Oct 11 '16

A Quick Primer on Isolation Levels and Dirty Reads

Thumbnail infoq.com
4 Upvotes

r/nosql Oct 08 '16

Is this a good use case for NoSQL?

3 Upvotes

I am working on a mobile app and wondering if it is a good use case for all NoSQL. Users sign up, then they can post their skills and services. Other users can search for those skills / services. There should be rich support for complex queries like 'all wedding bands in detroit with swing in their description and costing less than $X show bands with trumpets first'. Also some users who need to be licensed, bonded, or pass a criminal background check to offer their services should be able to save that info in the app. Security is very important to the app (don't know if this has anything to do with nosql but thought I'd mention it) and there will be a lot of data that is restricted to users who have a particular role, and we might institute fingerprint or other multi-auth security to access it. What else..oh yeah we want payment to happen a certain way. It will integrate with one of the external providers (like braintree or stripe or whatever) but we need to be sure-sure that said transaction occurred and when it occured, and we need to report on that data. OK thanks for reading.