Skip to content

Instantly share code, notes, and snippets.

View hartou's full-sized avatar

Julien-ROBERT LECADOU hartou

View GitHub Profile
@hartou
hartou / rails_queue_guideline.md
Last active October 1, 2025 13:36
Rails Queue + Durable Result Storage Guideline (Azure Deployment)

📘 Guideline: Queue + Durable Result Storage in Ruby on Rails (Azure Deployment)

1. Core Principle

  • Queue = trigger: dispatches work, retries on failure.
  • Database/Blob = source of truth: holds results for reliable retrieval and querying.
  • Never store results in the queue.

2. Queue Option for Rails on Azure (Chosen)

@hartou
hartou / AKS_Ingress_Routing_Guide.md
Last active October 1, 2025 18:14
AKS Ingress Configuration Guide for Microservices Routing - NYC DOT APM Project

AKS Ingress Configuration Guide for Microservices Routing

Overview

This guide demonstrates how to configure Kubernetes Ingress in AKS to route URLs to different microservices, specifically for your use case with:

  • https://example.com/emp → Employee microservice
  • https://example.com/orgchart → Organization Chart microservice

What is Kubernetes Ingress?

Kubernetes Ingress is a resource that manages external HTTP/HTTPS access to services within a cluster. It provides: