Pipeline Companion – an AWS Strands Agent for Data Pipeline Monitoring

Problem Statement Modern data pipelines are built on AWS services such as Glue, Lambda, Step Functions. Testing these pipelines—especially under schema change, scale, and integration demands—is a major bottleneck. Manual testing is slow, prone to oversight, and unable to adapt to dynamic, distributed pipeline environments. Data pipeline failures in production environments cost organizations time, money … Read more

AWS Strand Agent – integration with Researcher MCP server

This project demonstrates the power of AWS strand agents and how quickly you can build intelligent, context-aware applications. AWS provides a robust foundation for creating agents that can understand, reason, and act on complex data – and with Model Context Protocol (MCP) integration, you can extend these capabilities seamlessly. Why AWS Strand Agents? What is an MCP Server? An MCP … Read more

Building an MCP Server Using FastMCP and arXiv

In this blog post, we explore how to build a modular, agent-compatible MCP (Model Context Protocol) server that automates the discovery, storage, and retrieval of research papers from arXiv. By leveraging the FastMCP framework, we expose tool-like interfaces that can be invoked by agents, UIs, or even chat interfaces for smarter academic workflows. What is … Read more

Building a Resume Question-Answering System Using LlamaIndex, OpenAI, and LlamaParse

Resumes are full of rich, structured information—but extracting this data automatically can be a challenge. In this blog, we’ll walk through how to build a Resume Q&A system using: Let’s dive into how you can transform a static resume into an interactive queryable system. Overview We’ll build a pipeline that: Prerequisites Before you begin, make … Read more

Building Intelligent Agent Workflows with LlamaIndex: From Basics to Advanced Patterns

In this blog, we’ll explore how to design powerful and flexible multi-agent workflows using the llama_index framework. From basic sequential flows to advanced branching, loops, parallelism, and LLM-powered agents, you’ll learn how to model real-world software development pipelines as executable, traceable workflows. Lets start with “Hello World” workflow A very basic workflow class where it … Read more

Kubernetes Networking – Iptables

As per Wiki definition,  “iptables is a user-space utility program that allows a system administrator to configure the IP packet filter rules of the Linux kernel firewall, implemented as different Netfilter modules”. In simple words, iptables is linux basic firewall software. Just like a mini version of firewall , it does packet filtering whether to allows, blocks or forward packets. Successor of iptables is nftables, in modern … Read more

Linux Network Bridge

In the last article, we have learned about linux network namespace (https://aiinfrahub.com/linux-network-namespace/), Also, we understood that there is a serious scalability issue when connecting namespaces. As the no of namespaces increases we will face tremendous challenge in creating veth pair and connecting the namespaces. Rescue is done by Linux bridge which can tap these network namespaces to … Read more

Linux Network Namespace

Linux Namespaces are operating system constructs which provides a containers the required isolation so that resources of one container shall not interfere with others containers and the host. In other words, we make sure that a process running in one container can’t easily interfere with the operation of another container or the underlying host? Linux … Read more