Glad to share that I will be speaking at BazelCon 2025 in Atlanta, USA.
My talk will be on "Go, Wasm, & Bazel: A Blueprint for Hermetic, High-Performance Web Applications". Iβm grateful to everyone who believed in me and helped me reach this stage.
sched.co/28lPL
#bazelcon
09.11.2025 04:58 β π 1 π 0 π¬ 0 π 0
#874 Decouple `ServiceAccountReconciler` from `ActiveCheckReconciler` sync by iamrajiv Β· Pull Request #950 Β· nebius/soperator
Fixes: #874
just wrapped up a k8s controller fix that completely changed how i think about software design
started with what seemed like a simple task fix some sync logic between two controllers but ended up learning why fighting against platform patterns makes everything harder
github.com/nebius/soper...
28.05.2025 11:26 β π 0 π 0 π¬ 0 π 0
is it like grpc with a sidecar agent?
02.05.2025 12:07 β π 0 π 0 π¬ 1 π 0
GitHub - iamrajiv/awesome-a2a
Contribute to iamrajiv/awesome-a2a development by creating an account on GitHub.
This is an awesome repository I curated with all Agent2Agent protocol resources. Feel free to contribute at github.com/iamrajiv/awe....
17.04.2025 12:40 β π 0 π 0 π¬ 0 π 0
[Other Agent]<--(A2A: task request)<--[Your Agent]
|
(A2A Layer)
|
(Reasoning: e.g., Gemini)
|
(MCP: tool calls)
|
[Your APIs]
|
(Output)
|
[Other Agent]-->(A2A: task response)-->[Your Agent]
13.04.2025 09:35 β π 0 π 0 π¬ 1 π 0
Agent2Agent Protocol
An open protocol enabling communication and interoperability between opaque agentic applications.
I was learning about the A2A protocol over the last few days & it is interesting. It is an open standard designed to allow AI agents to communicate & collaborate seamlessly. It is like giving AI agents a common set of rules to chat & cooperate, no matter who built them.
google.github.io/A2A/#/
13.04.2025 09:35 β π 0 π 0 π¬ 1 π 0
WebAssembly Profiling with Pprof and Wzprof - Rajiv Ranjan Singh & Naman Lakhwani
Don't miss out! Join us at our next Flagship Conference: KubeCon + CloudNativeCon Europe in London from April 1 - 4, 2025. Connect with our current graduated, incubating, and sandbox projects as the community gathers to further the education and advancement of cloud native computing. Learn more at https://kubecon.io WebAssembly Profiling with Pprof and Wzprof - Rajiv Ranjan Singh, A.P. Moller - Maersk & Naman Lakhwani, Independent Embark on a journey to supercharge your Go applications targeting WebAssembly by harnessing the profiling capabilities of pprof and wzprof. This session unravels the intricacies of optimizing Go-powered web applications for maximum performance. Discover how pprof provides deep insights into CPU and memory usage, forming the foundation of our optimization journey. Complementing pprof, wzprof, tailored for WebAssembly, offers streamlined performance analysis during module execution. Through practical demonstrations, learn how pprof and wzprof work together to resolve performance bottlenecks, optimize computations, and manage memory effectively. This talk equips both seasoned Go developers and WebAssembly newcomers with essential tools and techniques to maximize application efficiency and speed.
I had the privilege of presenting at KubeCon India 2024 alongside my co-speaker @iamrajiv.bsky.social on the exciting topic of "WebAssembly Profiling with Pprof and Wzprof"
While preparing and presenting this talk I learned so much about WebAssembly's potential.
Recording: bit.ly/kubecon-indi...
05.01.2025 12:14 β π 11 π 2 π¬ 0 π 0
The BlueSky Technical Conference Community
Join the conversation
Iβve created "The BlueSky Technical Conference Community" starter pack, a space dedicated to staying connected with the latest updates in technical conferences and communities.
go.bsky.app/2jmC92A
23.12.2024 09:48 β π 1 π 0 π¬ 0 π 0
Iβm speaking at #KubeCon + #CloudNativeCon India from 11th to 12th December in Delhi, on 'WebAssembly Profiling with Pprof and Wzprof' - Rajiv Ranjan Singh, A.P. Moller - Maersk & Naman Lakhwani, Independent.
sched.co/1mVRb
#kubeconindia
09.12.2024 11:16 β π 3 π 0 π¬ 0 π 0
Nope.
20.11.2024 22:55 β π 0 π 0 π¬ 0 π 0
sunday morning ride 17.11.2024 π΄ββοΈπ»
17.11.2024 06:23 β π 0 π 0 π¬ 0 π 0
Thanks for creating this, @mvdan.cc. I usually write about Go and system engineering, and Iβd love to be added here.
14.11.2024 01:21 β π 0 π 0 π¬ 0 π 0
Thanks for creating this, @chris.blue. I usually write about algorithms, databases, and system engineering, and Iβd love to be added here.
14.11.2024 01:18 β π 0 π 0 π¬ 0 π 0
Done.
13.11.2024 01:16 β π 1 π 0 π¬ 0 π 0
Wow, the upcoming Wasm I/O event will be interesting too.
12.11.2024 16:06 β π 2 π 0 π¬ 1 π 0
This approach directly addresses the inefficiencies in memory usage, rather than relying on a GOMEMLIMIT.
12.11.2024 06:14 β π 0 π 0 π¬ 0 π 0
The program still needs to load the entire dataset into memory, even if the GOMEMLIMIT limits the amount of memory it uses. Therefore, it is crucial to redesign the program to process data in smaller batches that do not require loading all the data into memory at once.
12.11.2024 06:14 β π 0 π 0 π¬ 1 π 0
For example, suppose you have a Go program that loads a large dataset, processes it, and writes the result to a file. You might think that setting a GOMEMLIMIT will help optimize memory usage, but it won't.
12.11.2024 06:14 β π 0 π 0 π¬ 1 π 0
In high-usage scenarios, setting a GOMEMLIMIT may not make an inefficient Go application more efficient. It's essential to analyze the specific use case and address the root causes of poor memory usage instead of relying solely on a GOMEMLIMIT.
12.11.2024 06:14 β π 0 π 0 π¬ 1 π 0
Go provides a soft memory limit through the GOMEMLIMIT environment variable, but it may not always be the most effective solution for optimizing memory usage.
#go #memory #performance #rajivsinsights
12.11.2024 06:14 β π 0 π 0 π¬ 1 π 0
Formally, we define an algorithm to have pseudo-polynomial time complexity if there exist constants c and k such that f(n, m) β€ c * m^k for all n, where m = g(n) is a function of the input size n.
12.11.2024 06:13 β π 0 π 0 π¬ 0 π 0
Representing inputs in unary notation can result in polynomial time complexity. If the algorithm's time complexity is `O(n^k)`, then the time complexity of the same algorithm with inputs in unary notation is `O(n^(k+1))`, which is still polynomial.
12.11.2024 06:13 β π 0 π 0 π¬ 1 π 0
However, if we express the weight limit using W bits, then the input size is O(n log K + log W). The algorithm's time complexity is then O(nW) = O(n * 2^W / 2^W) = O(n * 2^(log W)) = O(n log W), which is exponential in the number of bits required to represent the weight limit.
12.11.2024 06:13 β π 0 π 0 π¬ 1 π 0
Sometimes time complexity may appear to be polynomial but is not. For instance, the time complexity of the dynamic programming algorithm for the Knapsack problem is O(nW), which seems polynomial in the input size.
#algorithms #rajivsinsights
12.11.2024 06:13 β π 0 π 0 π¬ 1 π 0
From my previous experience in software engineering, I learned that product decisions are use-case-specific, and there is no right or wrong approach. In some cases, trading speed for correctness is acceptable, while in others, speed takes priority.
12.11.2024 06:12 β π 0 π 0 π¬ 0 π 0
As engineers, we may struggle with the ethical principle of prioritizing speed and efficiency, even if it results in less accuracy, or prioritizing accuracy and completeness, even if it takes more time. These trade-offs are commonplace for engineers.
12.11.2024 06:12 β π 0 π 0 π¬ 1 π 0
Partial joins may produce inaccurate results, while using the graph data model in ArangoDB may introduce complexity and slower performance due to graph traversal.
12.11.2024 06:12 β π 0 π 0 π¬ 1 π 0
In software engineering, we frequently encounter trade-offs. At redBus, I worked with ArangoDB, which supports joins. When deciding between utilizing ArangoDB's joins or using partial joins in NoSQL databases, we must weigh the trade-offs.
#softwareengineering #rajivsinsights
12.11.2024 06:12 β π 1 π 0 π¬ 1 π 0
Software nerd, cat enthusiast, pixel art noob, gamedev, playing with LLMs
Software Engineer, Writer, curious about distributed social media applications
Senior research engineer π§ͺ in cybersecurity, author about ML in JS, and creative technologist. Making weird things in JavaScript (mostly)
https://charliegerard.dev
Programmer. Has commits in gcc, emacs, Go, Kubernetes, Prometheus and other things.
Turns out I can skip posts not intended for me. AI/ML @ Grafana; everything is UX; let's make it better; he/him
Software Engineer @Doordash/Wolt
Writing rednafi.com
Recurring themes: Go, Python, distsys, schema-driven development, eventual consistency, resilience patterns, HA, data access strategies, observability, SRE practices, and sci-fis.
analyst, developer-friendly
black cats, small plates, natural wine
london, east
he, him
Formal methods, software history, chocolatiering. DMs open and happy to meet up in Chicago. Currently writing *Logic for Programmers* (out Q1 2026)
Newsletter: https://buttondown.email/hillelwayne/
Head of Product Engineering @ ona.com
Senior Software Engineer at Ceph, IBM
Youβll find me talking about computers, databases, fiction books, movies, music, photography, building Lego and puzzles!
π shraddhaag.dev
Software Engineer at Ceph, IBM
I love podcasts, books, doodles, animals etc.
Blog: vallariagrawal.com/
Bookmarks store: store.vallariagrawal.com/
World's Okayest Dad, pizza enthusiast, single-hyphenate, container nerd at Chainguard
Updatecli.io Builder
OSS Hacker
Beer Lover
π§πͺπͺπΊ
Software Engineer @ Grafana | Interested in Observability, Kubernetes
Ex @VMware, @hackerrank, @NirmataCloud, @mercari_jp β’ GSoC'21 @ThanosMetrics β’ LFX'21 @kubernetesio | kubeCon speaker | @kubernetesio v1.30 & v1.26 Release team | IIIT Gwalior
Podcaster, Youtuber @TheGeekNarrator
(https://youtube.com/@thegeeknarrator?si=yN0zWNDAScJKv_QZ), Staff Platform Engineer @Personio
Coding, styling, testing, documenting, alleviating. Likes puns, pizza, pepsi and programming. InfoSec wannabe. Admirer of hedgehogs π¦
#golang #ai #fullsnackdeveloper
She/her π
CEO of @fermyon.com. Creator of Helm and the Illustrated Children's Guide to Kubernetes. Fan of delicious coffee. Author of a bunch of books. WebAssembly enthusiast. Colorado resident.
Fermyon.com
Field CTO Isovalent // Proud CNCF Ambassador // I am committed to seeing others succeed.
@mauilion everywhere else