DBMS - Migration in DBMS

Migration in DBMS In an application, It is quite inevitable to have changes on the database. The changes can be on the structure of data or even the data itself. It is a good idea to apply changes to a database as versioned and reversible set of steps. A representation of changes to be done the database can be called Migration. Two types of migration are Schema and Data migrations. ...

DBMS - Query performance

Query performance in DBMS When we query a database there are certain operations performed, the main operation to consider is the type of scan it would result in. The performance is calculated based on the time taken to do the operations. Various types of operations have different costs based on disk and CPU usage. Cost can be assumed to be the amount of time taken. Therefore, lower the cost better the performance (faster response from DB) ...

Authorization in Software Systems

Authorization in Software Systems As we know that, the concept of Autorization is simply checking if a verified user or application is allowed to do something. It generally comes to authorization policies which would be checked to make this decision. The decision is simple, is person X allowed to access resource R ? This can be further broken up to Create, Read, Update, Delete Access. There are multiple patterns to achieve access control in software systems. But generally, the idea is to filter out data that is only accessible to a user. ...

Docker - Docker Compose

Docker compose is a tool that helps us define and run multiple services together. We declare the services and their attributes in a configuration file and the docker compose tool reads it and issues the command to docker CLI in order to start and run the services. It helps us abstract all the creation of different components, building or pulling images etc… To run multiple services for a project. Once a compose-file is declared, we can run everything all at once with a single run command, we can also manage them via the docker compose interface. ...

Docker - Building an image

Docker images are built from a Dockerfile, which is a blueprint for how to prepare a ready-to-run image. We can relate it to steps we perform in a computer to get something installed and running. We can start with a base image that corresponds to an OS (like ubuntu, alpine, Debian etc…) or we can even start from essentials installed in an OS. Basic steps are Start from the base image Run commands Specify default run command Here’s a basic example from nodejs ...

Docker - Overview

Docker is a platform that provides lightweight isolated runtimes for software. It helps us to package the software and its dependencies in a ready to run format. We can say its sort of works like VMs except, docker uses the kernel of our base OS. This is achieved by few techniques done with docker, File system snapshot - Dockerfile is used to build a filesystem snapshot that contains all the required files to run the software. Namespacing - Docker isolates the resources for the running processes using the Namespacing feature. It is a linux feature which partitions resources and control access between processes on resources. Control groups - The volume of resources used by a process can also be limited by docker. It is achieved by cgroups features which is another linux feature that helps define resource limits for a process. Why use Docker? As docker enables packaging and running software in a lightweight way, It solves the problem of setting up and configuring an environment to run the software. ...

DBMS - Indexing data

Indexing data in DBMS Indexing in the database can be similar to an index in front of a book that shows the title and its page number, DB stores these in B-Tree or LSM Tree structures to search through them as fast as possible. Indexing improves the data lookup speed but not always. An index is the fastest when it requires lesser random disk access. We know that the data is stored on disk and therefore, Fragmentation of data is more important in performance. If the required data is scattered in different sections of a disk, it will be slower. ...

DBMS - Persistence

Database data storage on disk Database persists information on disk in different forms like flat files, ISAM, heap files etc.. Depending on the Database Engine. In a common scenario, we store some information typed into a text editor by clicking save and choosing a location. Similarly, database saves our data into a configured location, mostly in a bit complicated structure than a text file. Database engines will structure the data and files in different ways to be able to retrieve them faster. ...

Managing tasks

Managing tasks Managing something can primarily involve Analysis and Decision making, mostly for getting things done for achieving something. Everyone derives their own steps to reach goals, There are no fixed steps to achieve something. Good management will help us get things done with minimal effort or cost. In simple terms, good management is to find the shortest and precise answer to the question. How can I do this task? ...

Learning something new

Learning something new Learning is a process that improves ourselves in something, we learn to use the knowledge to achieve something. The achievement can be productive or non-productive… We learn programming to be able to make software We learn trends and meme formats in social media to entertain ourselves and keep up with the society We learn the sport to be good at the game probably entertainment. Learning something new can always be difficult especially for people with procrastination habits, but everyone can achieve things by following some steps. ...