Vishesh Raghuvanshivisheshraghuvanshi.hashnode.dev·May 24, 2024Cloud Computing - 3Data in the Cloud Data in the cloud refers to storing, managing, and accessing data over the internet through cloud computing platforms. Cloud computing offers a flexible, scalable, and cost-effective solution for handling data, reducing the need for...Discuss·6 likes·61 readsdynamo
Shivanagouda Agasimanishiva02.hashnode.dev·Feb 26, 2024Row vs Column-Oriented (Columnar) DatabasesPrerequisites: Databases, Paging in memory management You'd have come across different types of databases like Relational (MySQL), Document (MongoDB), Graph (Ne04j), Columnar (Cassandra), Key-Value pair (Redis), and some other types. But in this arti...Discusscolumnar dbs
Snehasish Roysnehasishroy.com·Sep 17, 2023Building a Distributed Job Scheduler from Scratch (Part 3)Recap Welcome back to the third part of our tutorial series on building a distributed job scheduler! In our previous installment, we deep-dived into our storage system by designing a durable storage system to store job details effectively. Now it's t...Discuss·139 readsBuild your own Distributed Job Scheduler2Articles1Week
Snehasish Roysnehasishroy.com·Sep 10, 2023Building a Distributed Job Scheduler from Scratch (Part 2)Recap Welcome back to the second part of our tutorial series on building a distributed job scheduler! In our previous installment, we laid the foundation by defining the functional and non-functional requirements of our job scheduler. Now, it's time ...Discuss·225 readsBuild your own Distributed Job Scheduler2Articles1Week
Ashwin Telmoreashwintelmore.hashnode.dev·Dec 17, 2022Aim: Install and run HBase and then use DDI and DML command.Prerequisite: Ubuntu installed Installed java with environment variable set Installed Hadoop with environment variable set( if not then install Hadoop) Install and run HBase To check the current version of Ubuntu type the below command lsb_relea...Discuss·1 likeBig data AnalyticsHBase
Abhijit Barikcodewithabhijit.hashnode.dev·Nov 20, 2022Hbase hive integrationProblem statement : Integrate Hive and HBase in a way that if you load data in hive table that should reflect in your HBase table and vice versa. Create a file in cloudera - vi testdata.csv 1, 'hyd'25000 2, 'blr', 30000 3,'kol',50000 we want to st...Discuss·1 like·119 readsineuron
Rituj Srivastavaritujsrivastava.hashnode.dev·Nov 2, 2022Introduction to HBaseWhat is HBase? HBase is a column-oriented non-relational database management system that runs on top of Hadoop Distributed File System (HDFS). HBase is a database while HDFS is a file system. Ex:- HBase is used for real-time querying and it is p...Discuss·128 readsHBase