Loading…
16-17 June, 2026
Mumbai, India
View More Details & Registration
Note: The schedule is subject to change.

The Sched app allows you to build your schedule but is not a substitute for your event registration. You must be registered for Open Source Summit India 2026 to participate in the sessions. If you have not registered but would like to join us, please go to the event registration page to purchase a registration.

IMPORTANT NOTE: Timing of sessions and room locations are subject to change.


Venue: 203 (Second Floor) clear filter
arrow_back View All Dates
Wednesday, June 17
 

12:00pm IST

Breaking Valkey on Purpose: Chaos Fuzzing a High-Performance Key-Value Store With Agentic AI - Renuka Uttarala, Amazon
Wednesday June 17, 2026 12:00pm - 12:40pm IST
Valkey (forked from Redis) is expected to be fast and correct under an enormous variety of workloads, yet many of the nastiest bugs live outside the reach of traditional unit and integration tests. In this talk, we’ll demonstrate the Chaos Fuzzer for Valkey, built to systematically explore edge cases in the Valkey’s cluster bus, a fundamental part of valkey’s cluster communication model. We’ll show how introducing controlled and uncontrolled chaos into Valkey uncovers correctness issues, subtle crashes, and regression risks that only emerge under common real-world scenarios.

Additionally, we’ll explore how we used Agentic AI to scale fuzzing effectiveness. We will discuss how we leveraged custom AI agents to read, summarize and validate logs from the nodes in Valkey cluster to automatically identify the reasons for cluster failures and expose new bugs in Valkey. We’ll also discuss how AI can be used to generate new fuzzing inputs and scenarios based on prior failures, allowing the fuzzer to iteratively focus on the most error-prone scenarios.

In the end, we will close the talk by discussing how contributors can use this framework to deliver quality features and fixes.
Speakers
Wednesday June 17, 2026 12:00pm - 12:40pm IST
203 (Second Floor)
  CI/CD
  • Audience Experience Level Any

12:50pm IST

Pruning Kernel CVEs With Code Reachability Analysis - Ashish Bijlani, Ossillate Inc
Wednesday June 17, 2026 12:50pm - 1:30pm IST
The Linux kernel is now a CVE Numbering Authority, a change that has driven an unprecedented increase in reported kernel vulnerabilities. In Kubernetes environments, this shift has amplified compliance requirements that mandate per-CVE tracking, remediation, or justification.

This talk presents a methodology for kernel CVE pruning via static code reachability analysis. We map CVEs to vulnerable kernel functions and evaluate whether those functions are reachable under a specific kernel configuration and execution environment. The analysis incorporates build-time configuration (Kconfig), loadable modules, and inter-procedural call graphs to approximate practical exploitability.

We present an open-source tool that automates this analysis and evaluate it with representative workloads. Our results show that many kernel CVEs are in unreachable code, yielding a high reduction in reported exposure. We also discuss limitations and implications for compliance-driven vulnerability management.
Speakers
avatar for Ashish Bijlani

Ashish Bijlani

Entrepreneur/Researcher, Ossillate Inc
Ashish is the founder of Ossillate Inc, a cybersecurity startup. He holds a Ph.D. in Computer Science from Georgia Institute of Technology. He has co-authored peer-reviewed papers in top-tier academic conferences, and has also presented his work at premier industry conferences, such... Read More →
Wednesday June 17, 2026 12:50pm - 1:30pm IST
203 (Second Floor)
  Linux

1:40pm IST

But It Builds on My Machine!: Building Deterministic OCI Images With Nix - Benjamin Philip, Independent
Wednesday June 17, 2026 1:40pm - 2:20pm IST
Docker popularized containers as the solution to the classic “it works on my machine” problem by packaging applications with their environments. Ironically, while containers make runtime environments reproducible, images builds often are not. Docker builds tend to have unrestricted network access, depend on unpinned packages, and may produce different results over time—leading to inconsistent environments, fragile CI/CD pipelines, and difficult-to-reproduce failures.

Deterministic software builds are a well-understood problem in the broader build systems world. From a build perspective, container images are simply artifacts—no different from compiled binaries—and follow the same principles of
reproducibility.

The Nix build system was designed to produce hermetic, reproducible builds. By using Nix to construct OCI images, we can eliminate many sources of non-determinism while enabling the same environment definitions to be reused across development, CI, and containers.

In this talk, we’ll explore common sources of non-determinism in Docker builds and show how Nix can produce deterministic OCI images, from augmenting existing Docker workflows to building images entirely with Nix.
Speakers
avatar for Benjamin Philip

Benjamin Philip

Student, Independent
Benjamin is an open source contributor and maintainer who began contributing to open source at the age of 14 and became a project maintainer at 16. He is currently a first-year undergraduate student studying computer science.

He works primarily with functional programming languages such as Elixir and Erlang and contributes to projects in the broader BEAM ecosystem. His technical interests include functional programming, distributed systems, developer tooling, and open source infrastructure... Read More →
Wednesday June 17, 2026 1:40pm - 2:20pm IST
203 (Second Floor)

3:35pm IST

Judgement Day: Benchmarking "Black Box" LLMs With Open Legal Datasets - Kannan Murugapandian, DPS International School
Wednesday June 17, 2026 3:35pm - 4:15pm IST
As proprietary models like GPT-5 and Gemini assert dominance in professional domains, the open source community faces a critical challenge: how do we verify their claims without access to their weights? We cannot inspect their code, but we can rigorously audit their reasoning using open source benchmarks.

In this session, 16-year-old researcher Kannan Murugapandian presents a technical evaluation of state-of-the-art LLMs using the LegalBench open dataset.

Moving beyond simple Q&A, this session explores:

1. The Evaluation Harness: A deep dive into the custom Python-based testing asynchronous pipeline designed to standardize prompts, manage vector retrieval, and score outputs across disparate model APIs.
2. Open vs. Closed: A data-driven comparison of how open weights models (e.g., DeepSeek/Llama) stack up against closed giants when tasked with complex legal logic.
3. The "Persona" Myth: Quantitative results testing whether "lawyer personas" actually reduce hallucination rates or merely change the output tone.
Speakers
avatar for Kannan Murugapandian

Kannan Murugapandian

Student, DPS International School
Kannan Murugapandian is an open-source developer and competitive programmer specializing in algorithmic optimization. A selected speaker at the FOSSASIA 2026 summit, he also developed LeginAI, an asynchronous multi-LLM legal reasoning system. His competitive record includes a Third... Read More →
Wednesday June 17, 2026 3:35pm - 4:15pm IST
203 (Second Floor)
  Open AI + Data

4:25pm IST

Operators Live in the Past: Designing Reliable Kubernetes Controllers - Someshwaran Mohan Kumar, Elastic
Wednesday June 17, 2026 4:25pm - 5:05pm IST
Writing a Kubernetes operator looks easy with Kubebuilder and controller-runtime, until production traffic hits. Then the real problems begin.

This session dives into the hard parts of building production-grade operators, focusing on the reconciliation loop and managing stateful workloads safely.

Operators inherently "live in the past" because they read from a cache populated by watch events. This stale view can cause subtle race conditions, over-creation bugs, and inconsistent state. We’ll explore how to handle this safely using optimistic concurrency, resource versions, and the memory expectations pattern used by core Kubernetes controllers.

I’ll also cover designing idempotent reconciliations, deterministic resource naming, spec-hash comparisons instead of brittle DeepEqual checks, safe pod template customization, and the realities of StatefulSets and persistent volumes, including update strategies like OnDelete and volume binding pitfalls.

If you’re building or operating controllers in real clusters, this talk will help you avoid painful production mistakes.
Speakers
avatar for Someshwaran Mohan Kumar

Someshwaran Mohan Kumar

Developer Advocate, Elastic
I’m a Developer Advocate at Elastic and an open-source enthusiast shaped by community collaboration. I enjoy building systems, exploring codebases, and solving real-world distributed systems challenges.

At Elastic, I lead developer communities across India, helping platform teams understand cloud-native architecture, Kubernetes, observability, search, and scalable system design. I share practical insights from our engineering journey through talks, workshops, demos, and technical w... Read More →
Wednesday June 17, 2026 4:25pm - 5:05pm IST
203 (Second Floor)
  Cloud & Orchestration

5:15pm IST

The Containerization of the Operating System: Exploring Bootc and the Future of Linux Deployment - Hema Arun, EmiratesNBD
Wednesday June 17, 2026 5:15pm - 5:55pm IST
For decades, Linux servers have been maintained using package managers, configuration management, and patching cycles. But what if the operating system itself behaved like a container image?

bootc introduces a new model where a full Linux host is delivered, updated, and rolled back using OCI images — bringing application deployment semantics to operating systems.

In this talk, I explore what changes when the host becomes immutable: updates, drift management, disaster recovery, and fleet consistency. Through hands-on experimentation, I compare traditional configuration management approaches with image-based host delivery and highlight where each model succeeds or fails.

Rather than a product introduction, this session focuses on operational impact: how platform engineers can rethink provisioning, patching, and rollback strategies in data center and edge environments.

Attendees will leave with a clear mental model of when this approach simplifies infrastructure — and when it does not.
Speakers
avatar for Hema Arun

Hema Arun

Senior Technology Engineer, Emirates National Bank of Dubai
Hema Arun is a Senior Infrastructure Engineer specializing in Linux and Platform reliability in enterprise environments. She is the first woman in the Middle East to earn the Red Hat Certified Architect (RHCA) certification and actively contributes to the community through workshops... Read More →
Wednesday June 17, 2026 5:15pm - 5:55pm IST
203 (Second Floor)
  Cloud & Orchestration
 
Share Modal

Share this link via

Or copy link

Filter sessions
Apply filters to sessions.
Filtered by Date -