📘 SERIES · CHAPTER 38

Cloud Analytics India 2026

AWS, Azure, and GCP for data analysts — which cloud to learn first, free-tier setup guides, and how Indian companies in Noida and Delhi NCR use cloud data tools in practice.

⏱ 15 min read📅 September 2026📍 India · Noida · Delhi NCR
← Ch 37: Career Growth PathsCh 39: End-to-End Data Project →

AWS vs Azure vs GCP — at a glance for data analysts

All three clouds offer data analytics tools, but they target different types of companies and have different learning curves. Here is the honest comparison for analysts in India.

AWSAzureGCP
Market share (India)Largest (~33%)Strong (#2, ~22%)Growing (~11%)
Key analytics toolAthena (S3 SQL), RedshiftAzure Synapse, Data FactoryBigQuery
Free tier12-month free trial; some services always free₹12,000 credit for 30 days; some always free1 TB queries/month + 10 GB storage — permanent
SQL familiarityStandard SQL (Athena/Presto)T-SQL (similar to SQL Server)Standard SQL — closest to ANSI SQL
Connect to Power BI✅ Athena, Redshift connectors✅ Native — same Microsoft ecosystem✅ BigQuery connector built in
Used at (India)E-commerce, fintech, global MNCsIT services, BFSI, enterprises using Office 365Startups, D2C, product companies
Learn first?3rd — steepest learning curve2nd — if targeting IT services / BFSI1st — most analyst-friendly, best free tier
Certification cost~₹9,000 (exam only)~₹4,500 (DP-900 fundamentals)~₹8,000 (Professional Data Engineer)

Google Cloud — BigQuery setup and first analysis (free)

Free tier includes: 1 TB of query processing per month + 10 GB of storage — permanent, no credit card required for basic usage. More than enough for all learning and personal projects.

Setup (5 minutes)

  1. Go to console.cloud.google.com — sign in with your Google account
  2. Click "Select a project" → New Project → name it (e.g. evika-analytics)
  3. In the left menu search bar, type "BigQuery" → click it to open the console
  4. In Explorer panel → + ADD → Public datasets to access free Google datasets
  5. Or click the query editor at top and start writing SQL immediately
BIGQUERY — ANALYSE INDIAN PUBLIC DATA (FREE)
-- Query Google's free public datasets
-- No setup needed — runs in the BigQuery console

-- Example 1: Wikipedia page views for Indian topics
SELECT
  title,
  SUM(views)    AS total_views,
  COUNT(*)      AS days_with_data
FROM `bigquery-public-data.wikipedia.table_date_range`
WHERE
  title LIKE '%India%'
  AND datehour BETWEEN TIMESTAMP('2025-01-01')
                   AND TIMESTAMP('2025-12-31')
GROUP BY title
ORDER BY total_views DESC
LIMIT 20;

-- Example 2: Use PARTITION BY for running totals (window function)
SELECT
  title,
  datehour,
  views,
  SUM(views) OVER (
    PARTITION BY title
    ORDER BY datehour
    ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
  ) AS cumulative_views
FROM `bigquery-public-data.wikipedia.table_date_range`
WHERE title = 'Taj_Mahal'
ORDER BY datehour;
BIGQUERY — UPLOAD YOUR OWN CSV AND QUERY IT
-- Step 1: Upload a CSV file
-- BigQuery console → your dataset → Create table
-- Source: Upload | File format: CSV
-- Auto-detect schema: ON → Create table

-- Step 2: Query your uploaded data
SELECT
  category,
  COUNT(*)              AS transactions,
  ROUND(SUM(amount),2)  AS total_amount,
  ROUND(AVG(amount),2)  AS avg_amount
FROM `your-project.your_dataset.your_table`
WHERE DATE(transaction_date) >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
GROUP BY category
ORDER BY total_amount DESC;

-- Step 3: Export results to Google Sheets (one click)
-- In results panel: Save results → Google Sheets
-- Share the sheet with your manager — no Power BI needed

AWS — Athena and S3 for analysts

AWS Athena lets you query CSV, JSON, or Parquet files stored in S3 using SQL — without loading data into a database. Pay only for queries run ($5/TB scanned).

1. Store data in S3
Upload your CSV or Parquet files to an S3 bucket. Organise by folder — e.g. s3://your-bucket/sales/2026/month=01/
2. Create a table in Athena
In Athena console, write a CREATE EXTERNAL TABLE pointing to your S3 path, defining column names and data types.
3. Query with SQL
Run standard SQL in the Athena query editor. Results appear in seconds even for files with millions of rows.
4. Connect to BI tools
Connect Power BI or Tableau to Athena via ODBC/JDBC driver. Or export query results to S3 and use from there.
AWS ATHENA — CREATE EXTERNAL TABLE AND QUERY S3 DATA
-- Create external table pointing to S3 CSV files
CREATE EXTERNAL TABLE sales_data (
  order_id      STRING,
  customer_id   STRING,
  order_date    DATE,
  amount        DOUBLE,
  city          STRING,
  status        STRING
)
ROW FORMAT DELIMITED
  FIELDS TERMINATED BY ','
STORED AS TEXTFILE
LOCATION 's3://your-bucket/sales/'
TBLPROPERTIES ('skip.header.line.count'='1');

-- Query runs against S3 directly — no data movement
SELECT
  city,
  COUNT(order_id)     AS orders,
  SUM(amount)         AS revenue
FROM sales_data
WHERE status = 'completed'
  AND YEAR(order_date) = 2026
GROUP BY city
ORDER BY revenue DESC;

Azure — key tools for data analysts

Azure ToolWhat It DoesAnalyst Relevance
Azure Data Lake Storage (ADLS)Stores large amounts of raw data (CSV, JSON, Parquet)High — source of raw data you query; understand folder structure and access controls
Azure Data Factory (ADF)Moves and transforms data between sources (ETL/ELT pipelines)Medium — analysts often consume ADF outputs; knowing how pipelines work helps when data is missing
Azure Synapse AnalyticsCloud data warehouse — query massive tables with SQLHigh — use Synapse Studio to write SQL queries on large datasets; connects to Power BI natively
Azure Analysis ServicesSemantic model layer — pre-built measures and dimensionsHigh — Power BI often connects to Analysis Services rather than raw tables; understand data models built here
Power BI Service (cloud)Publish, share, and schedule Power BI reportsVery high — Power BI Desktop is local; Service is where reports go live; workspace, row-level security, scheduled refresh
Microsoft FabricNew unified analytics platform combining Synapse + Power BI + Data FactoryGrowing — Fabric is Microsoft's 2024-2026 push; awareness is valuable even without deep expertise

Cloud usage at companies in Noida and Delhi NCR — what analysts actually encounter

Understanding which cloud you are likely to encounter at different types of companies saves you from over-preparing for the wrong platform.

IT Services (Noida Sec 62, Sec 16)
Azure dominant
Most large IT services companies use Azure for client projects — especially BFSI and government clients who are already on Microsoft infrastructure. Analysts here often work with Azure Synapse, Azure Data Factory, and Power BI Service.
Startups & D2C (Noida Expressway)
GCP / AWS mixed
Startups lean toward GCP BigQuery (cost-effective, fast setup) or AWS (if founders have prior Amazon/global startup experience). Analysts here query BigQuery or Redshift directly and build dashboards in Looker or Power BI.
Gurugram MNCs & Global Tech
AWS primary
Global companies and MNCs use AWS most commonly. Indian subsidiaries of US tech companies will have analysts working with Redshift, Athena, S3, and AWS QuickSight alongside standard BI tools.
BFSI / Fintech (Gurugram, Noida)
Azure + private cloud
Banking and financial services in India are cautious with cloud — Azure (through existing Microsoft agreements) is most common, but sensitive data often stays on-premise or in private cloud. Analysts access data through approved reporting tools.

Practical learning path — cloud for data analysts

Month 1 — GCP BigQuery basics
  • Create a free GCP account
  • Query 3 different public datasets (use LIMIT 1000 to avoid scans)
  • Upload your own CSV project data and query it
  • Export results to Google Sheets and build a chart
  • Write one complex query using window functions in BigQuery
Month 2 — Connect cloud to Power BI
  • Connect Power BI Desktop to BigQuery via the native connector
  • Build one report with BigQuery as the data source
  • Publish to Power BI Service and set up scheduled refresh
  • If targeting IT services: create a free Azure account and explore Synapse Studio
  • Practice T-SQL in Azure Synapse (similar to SQL Server)
Month 3 — AWS basics (optional but valuable)
  • Create an AWS free-tier account
  • Upload a CSV to S3 and create an Athena external table
  • Run 5 analytical queries in Athena
  • Explore AWS QuickSight (basic BI tool, has a free tier)
  • Add "BigQuery, Athena basics" to your resume skills section

Frequently asked questions

Which cloud platform should a data analyst in India learn first — AWS, Azure, or GCP?

For most data analysts in India in 2026: start with Google Cloud Platform (GCP) specifically BigQuery — it has the most generous free tier (1 TB of queries per month free), the most approachable SQL interface for analysts, and widespread use at Indian startups and product companies. If your target companies are IT services or large enterprises (Infosys, TCS, HCL, Wipro client projects), learn Azure first because Microsoft dominates that segment through existing Office 365 relationships. AWS is the cloud market leader globally and pays the highest salary premium, but its analytics stack (Athena, Redshift, Glue) has a steeper learning curve for analysts. Recommended order: GCP BigQuery → Azure Synapse basics → AWS Athena.

Is cloud knowledge required for data analyst jobs in Noida and Delhi NCR?

Cloud knowledge is increasingly expected but not yet required for all data analyst roles in Delhi NCR in 2026. At IT services companies in Noida Sector 62 and similar clusters, traditional on-premise tools still dominate — Excel, SQL Server, and Power BI on local infrastructure. At startups on the Noida Expressway and Gurugram product companies, cloud data skills (especially BigQuery or Redshift) are becoming a standard expectation at the mid-senior level. For freshers and junior analysts, focus on SQL, Excel, and Power BI first — then add one cloud platform within 12-18 months of your first job. Listing "GCP BigQuery" or "Azure Data Factory basics" on your resume does differentiate you even if you have only self-taught exposure.

What is AWS Athena and how is it used for data analysis?

AWS Athena is a serverless query service that lets you run SQL queries directly against files stored in Amazon S3 — CSV, JSON, Parquet, or ORC files — without needing to load data into a traditional database. You only pay per query (around $5 per TB of data scanned). Data analysts use Athena to query large log files, event data, and exported datasets that live in S3 buckets. It uses standard SQL (Presto/Trino engine) so your existing SQL skills transfer directly. Setup: store your CSV file in an S3 bucket → create an external table in Athena pointing to that S3 path → run SQL queries. No server management required.

What is Azure Synapse Analytics and how is it different from Power BI?

Azure Synapse Analytics is Microsoft's cloud data warehouse and analytics platform — it stores and processes large datasets using SQL or Spark. Power BI is the visualisation and reporting layer that sits on top of Synapse (or any other data source) to build dashboards. They work together: Synapse handles the heavy data processing and storage; Power BI connects to Synapse to display the results. For data analysts in India, Power BI is the more immediately useful skill. Azure Synapse becomes relevant when you join a company with large datasets (hundreds of millions of rows) that a local SQL database cannot handle efficiently.

Are there free cloud certifications for data analysts in India?

Google Cloud offers free learning paths on cloud.google.com/training — the "Preparing for your Associate Cloud Engineer Examination" and "From Data to Insights with Google Cloud" skill badges are free. Microsoft offers free learning paths on learn.microsoft.com for Azure data fundamentals (DP-900) — the learning content is free but the exam itself costs approximately ₹4,500. AWS offers free learning on skillbuilder.aws — the Cloud Practitioner course is free, and the exam costs approximately ₹9,000. For data analysts, the Google Cloud "Data Analyst" learning path on Coursera (paid, but auditable for free) is the most directly relevant to day-to-day analyst work.

How do I connect Power BI to cloud data sources like BigQuery or Azure Synapse?

To connect Power BI to BigQuery: open Power BI Desktop → Get Data → Google BigQuery → authenticate with your Google account → select your project and dataset → load tables. To connect to Azure Synapse: Get Data → Azure → Azure Synapse Analytics → enter your server name (from the Synapse workspace) → authenticate → select tables. Both connections support DirectQuery mode (queries run live against the cloud source) or Import mode (data copied into Power BI). For large datasets, DirectQuery is better as data stays in the cloud; for smaller datasets or complex DAX calculations, Import mode is faster. Scheduled refresh in Power BI Service works for both — no on-premises gateway needed for cloud sources.

What cloud skills do data analyst job descriptions in India ask for in 2026?

Common cloud mentions in Indian data analyst job descriptions in 2026: BigQuery (most common at startups and product companies), Azure Data Factory and Azure Synapse (IT services and BFSI), AWS S3 and Athena (e-commerce and logistics companies), Snowflake (growing rapidly, especially at D2C and SaaS companies — not AWS/Azure/GCP but cloud-based), Databricks (advanced analytics and data engineering roles). For a fresher or junior analyst, listing basic BigQuery experience (even from personal projects) is enough to check the cloud box on most job descriptions. Deeper cloud certifications become relevant when targeting senior or data engineering adjacent roles.

Learn cloud data tools alongside SQL, Power BI & Python

EVIKA ACADEMY at Noida Sector 51 includes BigQuery and cloud data concepts in the curriculum — not just local tool setup. Free demo class near Sector 51 Metro Station (Aqua Line).

📱 WhatsApp 8081035456 — Book Free Demo
← Ch 37: Career Growth PathsCh 39: End-to-End Data Project →
🎓 Free Demo Class — Online & Offline · Noida Sector 51