When we think of tech leaders in Southeast Asia, names like Maria Francesca Tan rarely top the mainstream lists - yet her impact on modern enterprise software architecture is quietly reshaping how conglomerates approach digital transformation. As the founder and CEO of MFT Group, known widely as Mica Tan, she has built a technology-driven holding company that doesn't just deploy software but fundamentally reengineers the operational backbone of industries ranging from logistics to consumer goods. This isn't another rags-to-riches story; it's a case study in marrying deep domain knowledge with ruthless technical pragmatism.
Maria Francesca Tan proves that the most disruptive tech leaders aren't always building the next social network - they are rewriting the infrastructure of entire industries. In production environments where uptime is measured in minutes of revenue loss, her team's decisions on stack selection, data pipeline architecture. And vendor lock-in avoidance offer a masterclass in engineering trade-offs. This article breaks down the specific technical choices, failures. And innovations behind MFT Group's rise, drawing direct parallels for engineers and CTOs navigating similar scale challenges.
From a single logistics startup in 2015 to a conglomerate employing over 2,000 engineers today, the path of Mica Tan's MFT Group is riddled with deliberate contrarian bets: rejecting off-the-shelf ERPs in favor of a custom microservices mesh, betting heavily on Apache Kafka for event sourcing before it became mainstream and treating developer experience as a first-class metric. Let's dissect what worked, what broke, and why her approach matters for any engineering organization scaling past the startup phase.
The Unconventional Path of Maria Francesca Tan: From Traditional Business to Tech Innovator
Maria Francesca Tan did not graduate from a computer science program. Her background is in business administration. Which shaped an early instinct to view technology not as a product but as a use multiplier. That outsider perspective allowed her to question legacy systems that incumbents accepted as immutable. For instance, when she took over her family's trading firm, the inventory reconciliation process relied on Excel sheets emailed across three departments - a system that introduced a 48-hour latency in stock visibility. Rather than purchasing an expensive SAP license, she challenged her small tech team to build a lightweight API layer using Node js and PostgreSQL that synced in near-real time. That scrappy prototype became the nucleus of what is now MFT Group's proprietary logistics platform, LogiCore.
This pattern - identify a systemic bottleneck, prototype a minimal solution, then scale through engineering - defines Mica Tan's playbook it's also a direct rebuttal to the "buy before build" dogma that plagues many mid-market enterprises. By refusing to treat enterprise software as a black box, she kept the technical debt low and the optionality high. The lesson for engineers is subtle but powerful: domain expertise can compensate for lack of prior technical pedigree, provided you maintain rigorous feedback loops between business metrics and code quality.
Today, MFT Group's tech team operates under a hybrid model that combines in-house platform engineering with selective acquisitions of small AI startups. The acquisition of DataPulse in 2021, a team of 12 engineers specializing in real-time anomaly detection, was a turning point. It allowed Mica Tan to fold machine learning into the core supply chain product without the overhead of building from scratch. This pragmatic M&A strategy, rare for non-FAANG companies, mirrors how modern tech conglomerates absorb innovation - a topic we will revisit For talent retention.
Decoding the MFT Group's Tech Stack: Cloud, DevOps. And Custom ERP
Scaling from a five-person dev team to over 200 engineers required a deliberate evolution of the tech stack. Maria Francesca Tan mandated a shift from a monolithic Ruby on Rails application to a polyglot microservices architecture in early 2019 - a decision that initially slowed feature velocity but paid off during the pandemic-era demand spike. The core stack today includes Go for high-throughput services, Python for data pipelines, and Kotlin for Android-based field applications. The bet on Go was contentious; most Southeast Asian tech companies at the time favored Java. But Go's concurrency model proved ideal for the real-time tracking of thousands of trucks simultaneously, reducing per-service memory usage by 40%.
Infrastructure is run on Kubernetes (k8s) across multi-cloud (AWS + GCP) to avoid single-provider lock-in - a strategy that Mica Tan's team documented in a widely cited internal whitepaper. They implemented service meshes using Istio to handle observability and traffic management. And adopted Argo CD for GitOps-driven deployments. The result: a deployment frequency of 50+ releases per day without a single production incident during peak holiday seasons. For engineers, the key takeaway is that infrastructure decisions at MFT Group are always tied to specific failure modes: multi-cloud isn't a buzzword but a hedge against regional outages that could halt supply chains.
- CI/CD: Jenkins (triggering tests) + Argo CD (deployment) + custom canary analysis with Prometheus metrics.
- Database: CockroachDB for global transactional data, Cassandra for time-series sensor logs,, and and Redis for caching
- Observability: Datadog for APM, ELK stack for logging. And Grafana for dashboards shared with business teams.
Instead of building a full ERP from scratch (a common startup mistake), MFT Group developed a custom financial core that integrates with Stripe and local payment gateways through an event-driven abstraction layer. This modularity allows acquisitions to plug in their existing systems without forklift migrations - a lesson learned after a failed ERP replacement project in 2020 that cost three months of engineering time.
How Mica Tan Transformed Supply Chain Management with AI-Powered Analytics
The most visible technical innovation under Maria Francesca Tan's leadership is the predictive supply chain platform, SupplyAI. Which uses recurrent neural networks (RNNs) and gradient boosting to forecast demand across 50+ product categories. The model ingests over 200 features including weather data, local holiday calendars, and port congestion reports from APIs. Early versions used only historical sales data and performed poorly during the 2020 lockdowns - the model predicted a 20% drop in demand when actual demand spiked 60% for essential goods. That failure led the team to incorporate external signals via Apache Kafka streams. Which official Kafka documentation describes as essential for decoupling data production from consumption.
What sets MFT Group apart is how they operationalized model retraining. Instead of a monthly batch job, they implemented an online learning loop using Ray Serve that updates weights every hour based on point-of-sale data from 3,000+ retail partners. The engineering team built a custom feature store on top of Feast to avoid data drift, a problem that Feast's architecture explicitly addressesDuring a 2023 audit, it was found that the AI model reduced overstock costs by 18% and stockout events by 32% - tangible metrics that earned Mica Tan a speaking invitation at a supply chain AI conference.
The cautionary tale here is about model interpretability. Maria Francesca Tan insisted on SHAP values being surfaced in the dashboard for each prediction. So that warehouse managers could see why a specific product was flagged for reorder. This transparency reduced the classic "black box" skepticism that plagues many AI deployments. For any engineering team rolling out ML in production, embedding explainability early prevents later adoption barriers.
Scaling Engineering Teams: Lessons from MFT Group's Talent Strategy
One of the most debated decisions by Mica Tan was the choice to hire primarily generalist engineers out of bootcamps and train them internally, rather than competing with FAANG for senior talent. The reasoning: MFT Group's stack is custom enough that even seasoned engineers need six months to ramp up,? So why not build from the ground up? The training program, internally called MFT Academy, runs a 12-week immersion covering Go, Kubernetes. And domain-specific logistics models. The attrition rate during the program is 15%. But those who complete it stay an average of 4. 2 years - double the industry average for tech companies in the region.
But this strategy has a hidden cost: it creates a monoculture of thinking. Maria Francesca Tan addressed this by mandating a quarterly "failure postmortem" where engineers from different pods (e g, and, payments, inventory) share mistakes openlyAdditionally, she allocates 10% of engineering time to open-source contributions and side projects. Which helps expose the team to patterns outside the MFT ecosystem. For instance, an engineer's experiment with Rust for a small CLI tool later inspired a rewrite of a high-frequency order matching engine, cutting latency from 12ms to 1. 2ms.
The lesson for technical leaders is that scaling a team isn't just about headcount; it's about creating learning loops that prevent stagnation. Mica Tan's approach of combining internal bootcamps with enforced cross-pollination (through postmortems and open-source time) offers a replicable model for companies that can't afford Silicon Valley salary premiums but need high-quality engineering output.
The Role of Open Source in MFT Group's Digital Transformation
Maria Francesca Tan is a vocal advocate for open-source software. But her team's contribution strategy is deliberate rather than altruistic. MFT Group maintains three major open-source projects: a Kubernetes operator for batch job scheduling (BatchMate), a Python library for supply chain simulation (SimChain). and a lightweight alternative to Airflow for event-driven workflows (FlowLite). These projects aren't vanity repos; they solve genuine internal pain points that lacked mature solutions in the ecosystem. By open-sourcing them, MFT Group gained community contributions (particularly on BatchMate. Which now has 47 contributors) and improved their recruitment brand.
The decision to use open-source core infrastructure (e g., Kafka, Kubernetes, CockroachDB) rather than managed services was initially controversial among the board, and managed services would have reduced operational overheadBut Mica Tan argued that vendor lock-in for critical path infrastructure posed an unacceptable risk at scale - a stance backed by Kubernetes documentation which promotes portability, and the trade-off is a larger DevOps headcount,But the company has also built a competitive moat: the engineering team deeply understands the internals of these systems, enabling faster root-cause analysis during incidents. For startups evaluating similar trade-offs, the key is to assess whether the operational overhead buys long-term flexibility commensurate with the business risk profile.
Measuring Success: Key Performance Indicators Behind MFT Group's Growth
Under Maria Francesca Tan, the engineering organization defines success through a set of KPIs that align code deployments with business outcomes. The primary metric is Mean Time to Recover (MTTR) for revenue-critical services. Which MFT Group tracks at the second level through custom instrumentation. In 2023, their MTTR dropped from 12 minutes to 3 minutes - a result of blameless postmortems and automated rollback triggers. But perhaps more telling is their Feature Adoption Rate, measuring how quickly new capabilities are used by internal logistics staff. They found that features with a dedicated "champion" user saw 4x higher adoption. This forced the product team to pair each engineering feature with a business stakeholder, a practice often preached but rarely enforced.
Financial metrics also tie back to engineering: the cost-to-serve per transaction decreased by 28% after migrating to a serverless data pipeline. And the on-time delivery rate for shipments rose from 89% to 94% after implementing the AI demand forecasting. These numbers aren't just board room decorations; they're shared in weekly all-hands with the entire engineering team to reinforce the link between code and cash flow. Maria Francesca Tan holds that if engineers can't articulate how their last pull request affected revenue, the organization is too disconnected.
For those building similar dashboards, MFT Group uses a custom lightweight BI tool built on ClickHouse. Which refreshes data every 15 seconds - far faster than traditional BI tools. This real-time visibility allows the ops team to correlate a database migration with a dip in checkout success within minutes, not days.
Challenges and Failures: What We Can Learn from Mica Tan's Technical Decisions
No leader's journey is without missteps. One notable failure under Maria Francesca Tan's watch was the premature rollout of a unified graph database for all customer data in 2021. The team, enamored by the promise of Neo4j, modeled the entire supply chain as a graph without accounting for query performance on time-series-heavy workloads. The database became a bottleneck, with some queries taking over 30 seconds. After six months, they acknowledged the mistake and migrated to a hybrid model: graph DB for static relationships (supplier networks) and a time-series DB for transaction flows. The lesson? Avoid the silver bullet trap; choose databases based on query patterns, not trendiness.
Another failure was a data pipeline rewrite that attempted to unify batch and streaming under a single Apache Beam pipeline. The complexity of managing state across both paradigms led to frequent data loss during windowing operations. The team eventually reverted to a simpler architecture: batch processing via Spark and streaming via Kafka Streams, separated by a well-defined boundary (the data lake). This pragmatic retreat saved months of debugging and restored confidence in data accuracy. Mica Tan's public acknowledgment of these failures in internal retrospectives has fostered a culture where admitting mistakes is safe - a cultural asset more valuable than any tech stack.
From these failures, engineers can derive a simple heuristic: when a new technology promises to solve all your problems at once, start with the most painful 10% and prove the trade-offs before committing. Maria Francesca Tan's willingness to reverse decisions (and even lay off the team that championed the failed graph DB project) underscores that technical leadership requires ego management above all else.
The Future of MFT Group: Edge Computing and Real-Time Data Processing
Looking ahead, Maria Francesca Tan is betting on edge computing to solve the latency problem in rural supply chains where cloud connectivity is intermittent. MFT Group is piloting a fleet of Raspberry Pi-based edge nodes deployed at warehouses that run lightweight TensorFlow Lite models for inventory counting and a local Kafka broker that syncs to the cloud when connectivity is restored. This architecture, inspired by Kafka Streams documentation, allows the edge nodes to operate autonomously for up to 72 hours without cloud connection. The pilot involves 50 warehouses and could scale to 2,000 if successful.
The technical challenge is provisioning and updating these edge devices at scale. MFT Group built a custom fleet management tool based on Ansible and MQTT that pushes model updates over low-bandwidth channels. This project, still in beta, could become the next open-source release from the company. For engineers interested in edge ML, this represents a practical case study in constrained deployments: the model was pruned from 50MB to 4MB using ONNX runtime quantization without significant accuracy loss.
Another frontier is blockchain-based provenance tracking for high-value goods (e. And g, electronics, pharmaceuticals). However, Mica Tan has publicly expressed skepticism about public blockchains for supply chain, arguing that private permissioned ledgers (Hyperledger Fabric) offer the same traceability benefits without the energy cost and regulatory uncertainty. Her team is currently evaluating whether the overhead of consensus mechanisms is justified for their use case - a question that remains unanswered in the industry at large.
Frequently Asked Questions
- Who is Maria Francesca Tan? Maria Francesca Tan, also known as Mica Tan, is the founder and CEO of MFT Group, a technology-driven conglomerate that focuses on logistics, supply chain, and digital transformation across Southeast Asia. She is recognized for her unconventional approach to building engineering teams and custom tech stacks
Need a Custom App Built?
Let's discuss your project and bring your ideas to life.
Contact Me Today β