top of page
SuperAI


How Zomato Boosted Performance 25% and Cut Compute Cost 30% through Migration of Trino and Druid Workloads to AWS Graviton
Zomato is an India-based restaurant aggregator, food delivery, dining-out company with over 350,000 listed restaurants across more than 1,000 cities in India. The company relies heavily on data analytics to enrich the customer experience and improve business efficiency. Zomato’s engineering and product teams use data insights to refine their platform’s restaurant and cuisine recommendations, improve the accuracy of waiting times at restaurants, speed up the matching of deliv
2sanath2
Mar 48 min read


Exploring the AWS Architecture That Powers Zomato's Success
Zomato serves millions of users daily, connecting hungry customers with restaurants across the globe. Behind this seamless experience lies a powerful cloud infrastructure built on Amazon Web Services (AWS). Understanding the AWS architecture that supports Zomato reveals how the company handles massive data loads, ensures fast response times, and scales efficiently to meet demand spikes. This post breaks down the key components of Zomato’s AWS setup, explaining how each part c
2sanath2
Mar 43 min read
Object Oriented Programming-OOPS
1. What is polymorphism and how can it be achieved? Polymorphism in object-oriented programming (OOP) refers to the ability of a variable, function, or object to take on multiple forms. It allows objects of different classes to be treated as objects of a common superclass. There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding). class Animal { void sound() { System.out.println("Animal makes a sound"); } } class Dog extends Animal
2sanath2
Jan 34 min read
Git & GitHub – Simple Notes
Think of Git, it is like a time machine for your code. And GitHub is like an online photo album where you can keep all those time-travel versions and share with friends. 1. Start Your Project git init 📌 Meaning: Start tracking this folder with Git (make it a Git project). 💡 When to use: At the very beginning, inside your project folder. ✁ Example: git init (You’ll now see a hidden folder .git if you run ls -a). 2. See What’s Inside ls -a 📌 Shows all files, including
2sanath2
Nov 8, 20251 min read
Python Coding Questions and Answers
1. Reverse a String . def reverse_string(s): return s[::-1] # Example print(reverse_string("hello")) # Output: 'olleh' 2. Find the Factorial of a Number . def factorial(n): if n == 0 or n == 1: return 1 return n * factorial(n - 1) # Example print(factorial(5)) # Output: 120 3. Check if a Number is Prime . def is_prime(n): if n <= 1: return False for i in range(2, int(n**0.5)+1): if n % i == 0: return False return True # Example print(is_prime(7)) # Output: True 4. ...
2sanath2
Nov 8, 20253 min read
DevOps Commands Cheat Sheet
Basic Linux Commands - Linux is the foundation of DevOps operations - it's like a Swiss Army knife for servers. These commands help you...
2sanath2
Aug 15, 20258 min read


ETL processes using Spark
1. Environment Setup and SparkSession Creation ● Install PySpark: pip install pyspark ● Start a SparkSession: from pyspark.sql...
2sanath2
Jul 21, 20253 min read
Pyspark in Databricks using CSV files and Other formats
Scenario Series : Working With CSV files and other format Here's a detailed guide for reading CSV files and other formats...
2sanath2
Jan 7, 20252 min read
Data cleaning with Python
Introduction Data Cleansing is the process of analyzing data for finding incorrect, corrupt, and missing values and abluting it to make...
2sanath2
Dec 29, 20246 min read


Explore the Future of Technology with SuperAI's AI Education
In today's fast-paced digital world, staying up-to-date with the latest technological advancements is crucial for personal and...
2sanath2
Aug 18, 20242 min read


Advance Your Career with SuperAI's Machine Learning Classes
In today's fast-paced world, staying ahead in your career means continuously upgrading your skills and knowledge. With the rapid...
2sanath2
Aug 18, 20241 min read


Master AI & Data Science with SuperAI's Courses
Are you looking to enhance your skills in Artificial Intelligence and Data Science? Look no further than SuperAI, an online education...
2sanath2
Aug 18, 20241 min read
bottom of page