AWS, Cloud, NoSQL, Oracle NoSQL and SQL: key-value access always scale 04.11.2020 by Oracle Team By Franck Pachot . I have written about some NoSQL myths in previous posts (here and here) and I got some feedback from people mentioning that the test case was on(…)
AWS, Database Administration & Monitoring, Database management Getting started with Exasol – Distribution keys 03.11.2020 by Daniel Westermann After the previous posts about Exasol, which have been more around installation, administration, backup & restore, loading data and general notes around transactions and sessions we'll now go into more details how Exasol manages data. Here is the list of(…)
AWS, Database Administration & Monitoring Getting started with Exasol – A multi node cluster in AWS 15.10.2020 by Daniel Westermann As of now, all the previous posts worked with the Community Edition of Exasol. While that is great for getting started quickly (the Community Edition comes with all the features, except multi node support and a(…)
AWS, Cloud Amazon Aurora Serverless (PostgreSQL compatibility) 20.09.2020 by Cloud Team By Franck Pachot . I’ve written a blog post about serverless databases and here is an example of Amazon RDS Aurora PostgreSQL in serverless mode: When I’ve created the instance (15:55 –(…)
AWS, Cloud Amazon or AWS services? 18.09.2020 by Cloud Team By Franck Pachot . When I'm writing about a product I like to be precise about the name, the upper and lower case, and even more: do you know that was taking special care of writing Oracle 12cR2 before then(…)
AWS, Cloud, Oracle What is Object Storage? 18.09.2020 by Oracle Team By Franck Pachot . I’ve always been working with databases. Before the cloud era, the most abstract term was “data”. A variable in memory is data. A file is data. A block of disk contains data.
AWS, Cloud Amazon DynamoDB: a r(el)ational Glossary 17.09.2020 by Cloud Team By Franck Pachot . There are many NoSQL databases. And, because SQL is an ISO standard, “No SQL” also means “No Standard”. Many have a similar API and similar objects, but with completely different names. Today, NoSQL databases are(…)
AWS, NoSQL Amazon DynamoDB: the cost of indexes 13.08.2020 by Cloud Team By Franck Pachot . That’s common to any data structure, whether it is RDBMS or NoSQL, indexes are good to accelerate reads but slow the writes. This post explains the consequences of adding indexes in DynamoDB. Secondary Indexes What(…)
AWS Amazon DynamoDB Local: running NoSQL on SQLite 07.08.2020 by Cloud Team By Franck Pachot . DynamoDB is a cloud-native, managed, key-value proprietary database designed by AWS to handle massive throughput for large volume and high concurrency with a simple API. simple API: Get, Put, Query, Scan on a table without(…)
AWS, NoSQL RDBMS (vs. NoSQL) scales the algorithm before the hardware 03.08.2020 by Cloud Team By Franck Pachot . In The myth of NoSQL (vs. RDBMS) “joins dont scale” I explained that joins actually scale very well with an O(logN) on the input tables size, thanks to B*Tree index access,(…)