Sankalp Rai Gambhir· Fullstack Software & AI Engineer
HomeProjectsInsightsSkillsBlogContactResume

I build scalable backend and AI-powered systems for fast-moving startups.

Node.js · Go · Python · AWS · Kubernetes. I design resilient systems that unlock product velocity.

Profile headshot placeholder
About Me

I’m a Fullstack Software & AI Engineer experienced in designing, building, and operating high-performance services across startups. I’ve shipped distributed systems, data platforms, and AI-infused features, mentoring teams and scaling products with reliability.

Projects

Honey ERP System
Honey ERP System preview
GoPostgreSQLKafkaKubernetes

View details

Real-time Analytics Platform
Real-time Analytics Platform preview
Node.jsRedisWebSocketsAWS

View details

ML Feature Platform
ML Feature Platform preview
PythonApache SparkAWS S3Apache Airflow

View details

ML Feature Platform
ML Feature Platform preview
PythonApache SparkAWS S3Apache Airflow

View details

Skills
Node.jsGoPythonGraphQLAWSKubernetesPostgreSQLMongoDBKafka

Technical Insights & Code

GraphQL Query Optimization
query GetUserPosts($limit: Int!) {
  user {
    id
    posts(limit: $limit) {
      id
      title
      createdAt
    }
  }
}

Key Learning: Implementing DataLoader for N+1 query prevention

Kafka Consumer Groups
const consumer = new Kafka({
  clientId: 'app-consumer',
  brokers: ['kafka:9092']
}).consumer({ groupId: 'payment-group' });

await consumer.subscribe({ topic: 'transactions' });
await consumer.run({ eachMessage: processor });

Key Learning: Parallel processing with automatic rebalancing

Kubernetes Resource Limits
apiVersion: apps/v1
kind: Deployment
metadata:
  name: api-service
spec:
  containers:
  - name: app
    resources:
      requests:
        memory: "256Mi"
        cpu: "250m"
      limits:
        memory: "512Mi"
        cpu: "500m"

Key Learning: Preventing resource starvation in production clusters

View More →

Blog

My GraphQL Lessons
My GraphQL Lessons preview
Operating Kafka in Production
Operating Kafka in Production preview
Scaling on AWS
Scaling on AWS preview
Contact

Let’s collaborate across borders.

© 2025 Sankalp Rai Gambhir. All rights reserved.
Contact: sankalpNOSPAM@REMOVEexample.com