Skill Profile

Query Optimization

EXPLAIN ANALYZE, query plans, N+1, join optimization, subquery rewriting

Database Management Database Optimization

Roles

28

where this skill appears

Levels

5

structured growth path

Mandatory requirements

81

the other 58 optional

Domain

Database Management

Group

Database Optimization

Last updated

3/17/2026

How to Use

Choose your current level and compare expectations. The items below show what to cover to advance to the next level.

What is Expected at Each Level

The table shows how skill depth grows from Junior to Principal. Click a row to see details.

Role Required Description
1C Developer Understands query optimization basics in 1C:Enterprise: query builder usage, basic query language constructs, and reading query execution plans in 1C console. Follows team recommendations on avoiding common performance anti-patterns (nested queries in loops, unnecessary joins).
Analytics Engineer Required Writes readable SQL queries, avoiding SELECT * and unnecessary JOINs. Uses EXPLAIN to understand basic execution plans. Follows team recommendations for writing efficient dbt models.
Android Developer Understands query optimization basics for Android local databases: SQLite query analysis with EXPLAIN, Room query annotation optimization, and avoiding N+1 queries in data access objects. Follows team practices for efficient data retrieval patterns.
Backend Developer (C#/.NET) Required Understands N+1 problem in EF Core and solves via Include/ThenInclude. Uses AsNoTracking for read-only queries. Analyzes generated SQL through logging.
Backend Developer (Elixir) Required Writes efficient Ecto queries for PostgreSQL in Elixir applications. Avoids N+1 problems through Ecto.Query.preload, uses select for fetching needed fields. Understands the difference between preload, join and subquery in the context of performance.
Backend Developer (Go) Required Writes efficient SQL queries for Go services, avoiding N+1 problems when working with GORM or sqlx. Uses EXPLAIN to understand execution plans, applies parameterized queries and basic pagination via LIMIT/OFFSET.
Backend Developer (Java/Kotlin) Required Understands N+1 problem in JPA and solves via fetch join / @EntityGraph. Uses EXPLAIN ANALYZE for query analysis. Avoids SELECT * and loading unnecessary associations.
Backend Developer (Node.js) Required Understands N+1 problem and solves via Prisma include/select, Knex eager loading. Uses findMany instead of findUnique loops. Analyzes generated SQL through logging.
Backend Developer (PHP) Required Uses EXPLAIN for execution plan analysis. Adds indexes for slow queries. Avoids SELECT * and N+1 problems. Understands the difference between lazy and eager loading in ORM.
Backend Developer (Python) Required Writes basic SQL (SELECT, JOIN, WHERE, GROUP BY). Understands that queries can be slow. Knows that EXISTS is faster than IN for subqueries.
Backend Developer (Rust) Required Optimizes simple SQL queries in Rust applications by analyzing EXPLAIN output and avoiding N+1 problems when loading related data. Uses batch queries through SQLx query_as instead of loop calls and adds pagination through LIMIT/OFFSET.
Backend Developer (Scala) Required Performs basic SQL query optimization in Scala applications: avoids N+1 problems in Doobie/Slick, uses JOIN instead of subqueries. Can read PostgreSQL EXPLAIN output and understands missing index impact on query performance.
BI Analyst Required Understands query optimization basics for analytical work: reading execution plans, identifying full table scans, and basic index usage for WHERE/JOIN columns. Follows team guidelines on writing efficient SQL for reports and dashboards.
Data Analyst Required Understands query optimization basics for data analysis: execution plan interpretation, common slow query patterns, and the impact of data volume on query performance. Follows team practices for writing performant analytical queries and using query profiling tools.
Data Engineer Required Optimizes SQL queries for ETL: avoids SELECT *, uses WHERE for source-side filtering. Understands pushdown predicates. Analyzes EXPLAIN for full table scans.
Data Scientist Understands query optimization basics for ML data extraction: efficient feature retrieval queries, batch data loading patterns, and avoiding memory-heavy query patterns when extracting training datasets. Follows team practices for optimizing data pipeline queries.
Database Engineer / DBA Analyzes simple queries via EXPLAIN: understands Seq Scan, Index Scan, Nested Loop. Fixes obvious issues: missing indexes, SELECT * on large tables. Uses slow query log to find problematic queries.
DevOps Engineer Understands query optimization for DevOps: monitoring slow queries, baseline performance metrics. Configures automated alerts.
Fullstack Developer Required Writes basic SQL queries (SELECT, JOIN, WHERE, GROUP BY). Understands that queries can be slow. Knows that EXISTS is usually faster than IN for subqueries.
iOS Developer Studies SQL query optimization basics for iOS ecosystem server components. Understands EXPLAIN plans, index impact on performance, and basic techniques for speeding up mobile API queries.
ML Engineer Writes efficient SQL queries for data extraction. Avoids SELECT *. Uses LIMIT for testing queries. Understands SQL execution order.
MLOps Engineer Understands query optimization basics for MLOps workflows: efficient model metadata queries, feature store retrieval optimization, and monitoring query performance for ML pipeline databases. Follows team practices for database performance in model serving and experiment tracking.
Performance Testing Engineer Finds slow queries through load testing: top SQL by duration, execution count. Analyzes EXPLAIN plans. Recommends basic optimizations: indexes, query rewrite.
QA Automation Engineer Understands that query performance affects application and test speed. Knows EXPLAIN basics and can identify obvious issues — full table scan, missing index.
Site Reliability Engineer (SRE) Understands query optimization for SRE: monitors slow queries, configures alerting on performance degradation. Uses database monitoring tools.
Solutions Architect Understands query optimization in architecture: access patterns, read/write ratios. Evaluates data access requirements.
Technical Lead Understands query optimization: EXPLAIN plans, N+1 problem, basic joins. Optimizes simple queries and uses ORM eager loading.
Telecom Developer Understands basic SQL query optimization principles and can read execution plans. Knows typical performance issues: full table scan, missing index, N+1 queries in telecom systems.
Role Required Description
1C Developer Independently optimizes 1C:Enterprise queries: rewrites complex query constructs for performance, uses temporary tables for intermediate results, and applies batch processing patterns. Analyzes query execution plans to identify bottlenecks. Understands trade-offs between query complexity and data consistency in register queries.
Analytics Engineer Required Optimizes dbt models and SQL queries: rewrites subqueries as CTEs, eliminates redundant JOINs, uses incremental strategies for heavy models. Analyzes query profiles in Snowflake/BigQuery to identify bottlenecks.
Android Developer Optimizes SQL queries for mobile APIs: eliminates N+1, applies correct JOIN strategies. Profiles slow queries and optimizes them to meet latency SLOs.
Backend Developer (C#/.NET) Required Independently designs schemas and optimizes queries. Understands indexing and query execution plans. Uses Entity Framework Core effectively.
Backend Developer (Elixir) Required Independently designs schemas and optimizes queries with query optimization. Understands indexing and query execution plans. Uses Ecto effectively.
Backend Developer (Go) Required Independently designs schemas and optimizes queries. Understands indexing and query execution plans. Uses sqlx/GORM effectively.
Backend Developer (Java/Kotlin) Required Independently designs schemas and optimizes queries. Understands indexing and query execution plans. Uses Hibernate/JPA effectively.
Backend Developer (Node.js) Required Independently designs schemas and optimizes queries. Understands indexing and query execution plans. Uses Prisma/TypeORM effectively.
Backend Developer (PHP) Required Optimizes SQL queries in PHP applications: eliminates N+1 via eager loading, rewrites subqueries into JOINs, uses batch operations. Analyzes slow query log. Applies query builder and raw SQL when ORM generates suboptimal queries.
Backend Developer (Python) Required Analyzes via EXPLAIN. Eliminates N+1 (eager loading, select_related). Optimizes JOINs. Uses window functions (ROW_NUMBER, LAG/LEAD). Understands subquery types.
Backend Developer (Rust) Required Independently designs schemas and optimizes queries with query optimization. Understands indexing and query execution plans. Uses diesel/sea-orm effectively.
Backend Developer (Scala) Required Independently designs schemas and optimizes queries with Query Optimization. Understands indexing and query execution plans. Uses Slick/Doobie effectively.
BI Analyst Required Independently designs and optimizes analytical queries: window functions for running calculations, CTEs for query readability and reuse, and query decomposition for complex reports. Analyzes execution plans to choose between nested loops, hash joins, and merge joins. Optimizes materialized views for dashboard performance.
Data Analyst Required Independently optimizes complex analytical queries: partition pruning for time-series analysis, query pushdown for distributed data sources, and efficient JOIN strategies for large table combinations. Uses query profilers to identify and resolve performance bottlenecks. Implements query caching strategies for recurring analytical patterns.
Data Engineer Required Optimizes extraction and transformation: predicate pushdown, partition pruning, choosing between JOIN and subquery. Profiles SQL queries in Airflow through query tags. Optimizes Spark SQL execution plans.
Data Scientist Independently optimizes ML data queries: efficient feature extraction with window functions, batch loading strategies for training data, and incremental query patterns for streaming feature computation. Understands query optimizer behavior for complex feature engineering queries. Balances query performance with data freshness requirements.
Database Engineer / DBA Optimizes complex queries: refactoring subqueries to JOINs, eliminating N+1, using CTEs. Works with query profiling (EXPLAIN ANALYZE, Performance Schema). Understands statistics impact and query planner tuning.
DevOps Engineer Manages query performance: automated slow query detection, dashboard creation, performance trending. Integrates into monitoring stack.
Fullstack Developer Required Analyzes slow queries through EXPLAIN. Eliminates N+1 problems in ORM (eager loading, select_related). Optimizes JOINs (order, types). Uses window functions (ROW_NUMBER, LAG/LEAD). Understands the difference between correlated and non-correlated subqueries.
iOS Developer Optimizes mobile backend SQL queries to reduce API latency — eliminates N+1, applies batch loading and cursor pagination. Analyzes slow query logs and profiles queries to identify performance bottlenecks.
ML Engineer Analyzes slow queries through EXPLAIN ANALYZE. Optimizes feature engineering SQL: window functions, CTEs, subqueries. Uses batch operations for data loading.
MLOps Engineer Optimizes queries for ML tasks: accelerating feature extraction from data stores, optimizing SQL for training dataset preparation, efficient batch retrieval from feature store.
Performance Testing Engineer Profiles query performance: pg_stat_statements analysis, query plan changes under load, parameter sniffing issues. Correlates query performance with application latency.
QA Automation Engineer Includes query performance verification in the test process — measuring critical operation execution time, comparing query plans before and after changes, regression testing.
Site Reliability Engineer (SRE) Optimizes database performance: automated slow query detection, query plan analysis, connection pool monitoring. Configures performance dashboards.
Solutions Architect Designs data access: CQRS, read models, caching layers. Defines query optimization strategy for architecture.
Technical Lead Optimizes queries: CTEs, window functions, materialized views. Profiles via pg_stat_statements. Chooses between ORM and raw SQL based on context.
Telecom Developer Optimizes CDR table queries: covering indexes, JOIN optimization for billing reports. Uses explain analyze to identify bottlenecks in fraud detection and analytics queries.
Role Required Description
1C Developer Required Designs query architecture for high-load 1C:Enterprise systems: distributed query strategies for cluster environments, query optimization for large register datasets, and caching strategies for frequently accessed data. Implements query monitoring and slow query alerting. Optimizes complex report queries through advanced techniques. Mentors team on query performance.
Analytics Engineer Required Performs deep optimization of analytical queries: refactoring the dbt DAG to reduce compute costs, configuring warehouse-specific optimizations (Snowflake warehouse sizing, BigQuery slot allocation). Implements query tagging for cost attribution.
Android Developer Develops query optimization strategy for high-load mobile backends. Designs denormalization, materialized views, and partitioning for stable operation.
Backend Developer (C#/.NET) Required Optimizes data access in .NET: compiled queries, split queries, raw SQL/Dapper for analytics. Profiles via MiniProfiler and EF Core interceptors. Uses query tags for monitoring.
Backend Developer (Elixir) Required Optimizes complex Ecto queries to PostgreSQL: CTEs through fragments, window functions, materialized views. Analyzes EXPLAIN ANALYZE to identify seq scans and nested loops. Applies Ecto.Multi and stream for processing large datasets without OOM.
Backend Developer (Go) Required Optimizes complex SQL queries in Go services: CTEs, window functions, JOIN strategy optimization. Profiles query time via pgx tracing, configures slow query log and analyzes pg_stat_statements to identify problematic patterns.
Backend Developer (Java/Kotlin) Required Optimizes SQL in Java services: rewrites JPA queries to native SQL/jOOQ for complex analytical operations. Configures Hibernate batch fetch size, second-level cache. Profiles via p6spy and slow query log.
Backend Developer (Node.js) Required Optimizes data access: raw SQL for complex aggregations, Prisma query batching, connection pool tuning. Profiles via pg_stat_statements. Chooses between ORM and raw SQL by scenario.
Backend Developer (PHP) Required Optimizes complex queries: subqueries vs JOINs, materialized views for aggregations, denormalization for hot paths. Profiles ORM queries. Eliminates lock contention and deadlocks in high-load scenarios.
Backend Developer (Python) Required Deeply analyzes query plans. Uses materialized views. Optimizes bulk operations (COPY). Tunes work_mem, shared_buffers.
Backend Developer (Rust) Required Optimizes complex PostgreSQL queries in Rust services: CTEs for readability, window functions, lateral joins. Profiles execution time through SQLx tracing integration, applies prepared statements and optimizes result deserialization through zero-copy where possible.
Backend Developer (Scala) Required Optimizes complex queries in Scala services: rewrites Slick/Doobie queries to minimize round-trips, uses batch fetching, window functions and materialized views. Profiles queries through pg_stat_statements, eliminates bottlenecks in critical service paths.
BI Analyst Required Designs query architecture for enterprise BI: materialized view refresh strategies, query pushdown optimization for federated data sources, and adaptive query routing based on data volume. Implements query performance monitoring with automated regression detection. Creates query optimization guidelines and review processes for BI teams. Mentors analysts on advanced SQL optimization.
Data Analyst Required Designs query architecture for analytical platforms: query federation across heterogeneous data sources, adaptive query execution for varying data volumes, and automated query optimization recommendation systems. Implements query performance governance with SLA targets. Creates analytical query patterns library and optimization training materials. Mentors team on advanced query engineering.
Data Engineer Required Designs optimal data access patterns: incremental extraction through watermarks, micro-batch vs full-load trade-offs. Optimizes Spark query plans: broadcast joins, AQE, partition coalescing.
Data Scientist Required Designs query architecture for ML data infrastructure: feature store query optimization, distributed query patterns for large-scale training data extraction, and real-time feature retrieval for model serving. Implements query caching for feature computation and automated query performance benchmarking. Mentors team on efficient data access patterns for ML workflows.
Database Engineer / DBA Required Designs query optimization workflow: automated slow query detection, query plan regression testing, performance baselines. Optimizes at the architectural level: materialized views, denormalization, read replicas for offloading.
DevOps Engineer Designs query monitoring: automated analysis, performance regression detection, capacity planning. Defines performance SLO.
Fullstack Developer Required Deeply analyzes query plans (Seq Scan vs Index Scan, Nested Loop vs Hash Join). Optimizes query planner hints. Uses materialized views for precomputations. Optimizes bulk operations (COPY, batch inserts). Tunes work_mem, shared_buffers for specific queries.
iOS Developer Architects query optimization strategy for high-load mobile backends — materialized views, read replicas, and query routing. Optimizes complex analytical queries and ensures stable API latency as data grows.
ML Engineer Designs optimal SQL strategies for ML data extraction. Optimizes query plans for feature computation. Configures materialized views with incremental refresh.
MLOps Engineer Architects high-performance data pipelines: query optimization for real-time feature serving, data partitioning for parallel extraction, caching of frequent features.
Performance Testing Engineer Required Designs query performance testing: production query replay, parameterized workloads, regression detection. Optimizes: connection pool sizing, prepared statement caching.
QA Automation Engineer Designs automated query performance testing — benchmark suites for critical paths, automatic baseline comparison, alerts on query plan degradation.
Site Reliability Engineer (SRE) Designs database performance monitoring: automated query analysis, performance regression detection, capacity planning tools. Defines performance SLO.
Solutions Architect Defines data access architecture: polyglot persistence, materialized views, data mesh. Designs scalable data access.
Technical Lead Designs data access strategy: CQRS patterns, read replicas, query caching. Defines performance budgets and monitoring. Optimizes complex aggregations.
Telecom Developer Designs query optimization strategy for the telecom platform with materialized views for aggregates and window functions. Optimizes real-time CDR stream queries using partitioning and parallel queries.
Role Required Description
1C Developer Required Defines query optimization strategy for 1C:Enterprise systems. Establishes performance standards, monitoring requirements, and optimization review processes. Conducts architecture reviews for data access patterns. Creates training materials on efficient 1C query language usage and performance troubleshooting.
Analytics Engineer Required Defines performance standards for analytical models: SLA on execution time, compute budgets. Implements automated performance testing for dbt models and alerting on query speed degradation.
Android Developer Defines query optimization standards for all mobile backends. Designs query review processes and automatic performance degradation detection in CI/CD.
Backend Developer (C#/.NET) Required Defines query performance standards: execution time budgets, mandatory profiling. Implements automatic slow query monitoring.
Backend Developer (Elixir) Required Designs query monitoring and optimization system for the Elixir platform. Implements pg_stat_statements through :telemetry for tracking slow queries. Defines Ecto query writing standards, configures alerts on performance degradation through Prometheus.
Backend Developer (Go) Required Establishes query optimization standards for the Go team: mandatory EXPLAIN in migration code reviews, query latency budgets, automated performance tests. Designs denormalization and materialized view strategies for critical data paths.
Backend Developer (Java/Kotlin) Required Defines query performance standards for the team: execution time budgets, mandatory profiling for new endpoints. Implements automatic slow query monitoring in production.
Backend Developer (Node.js) Required Defines query performance standards: time budgets, mandatory profiling. Implements slow query monitoring and automated alerts.
Backend Developer (PHP) Required Implements performance-aware development culture: mandatory query review, automated slow query alerts, performance budgets for endpoints. Trains the team on reading execution plans.
Backend Developer (Python) Required Designs optimization strategy for the system. Configures pg_stat_statements monitoring. Optimizes cross-shard queries. Trains the team.
Backend Developer (Rust) Required Designs query optimization strategy for Rust platform: query builder abstractions with automatic EXPLAIN logging, materialized views for aggregations. Develops custom SQLx middleware for slow query tracing and automated alerting.
Backend Developer (Scala) Required Establishes query optimization standards for Scala team: mandatory EXPLAIN analysis in code review, endpoint latency budgets, query caching rules. Reviews data access architecture, implements CQRS pattern for separating read/write workloads.
BI Analyst Required Defines query optimization strategy for BI department. Establishes SQL performance standards, query review processes, and performance monitoring requirements. Conducts reviews of critical analytical queries. Creates query optimization guidelines and training programs for BI analysts.
Data Analyst Required Defines query optimization strategy for analytics teams. Establishes data access performance standards, query governance policies, and cost management for query-intensive workloads. Conducts reviews of data access architectures. Creates query engineering best practices and training programs for data teams.
Data Engineer Required Defines query performance standards: SLA on extraction time, resource budgets. Implements automated slow query monitoring and regression detection.
Data Scientist Required Defines data strategy at product level. Establishes Query Optimization standards. Conducts data schema and scaling strategy reviews.
Database Engineer / DBA Required Defines query performance standards: response time SLA by tier, automated query review in CI, performance budgets. Coordinates optimization between DBA and development teams. Implements query governance.
DevOps Engineer Defines query performance standards: monitoring requirements, alerting policies, escalation procedures. Implements automated optimization.
Fullstack Developer Required Designs query optimization strategy for the entire system. Configures automated slow query monitoring (pg_stat_statements, auto_explain). Optimizes cross-shard queries. Designs denormalization for critical hot paths. Makes decisions on precomputation vs real-time aggregation. Trains the team on query plan analysis.
iOS Developer Defines query optimization standards for the mobile server platform, implements automated query review in CI/CD. Leads performance engineering and ensures predictable API performance when scaling mobile audience.
ML Engineer Defines SQL optimization standards for ML team. Monitors and optimizes slow queries in ML pipelines. Creates guidelines for efficient SQL for data scientists.
MLOps Engineer Defines data optimization standards for ML: recommendations for feature store access, data pipeline performance monitoring, architecture for low-latency feature serving.
Performance Testing Engineer Required Defines query performance standards: SLA per query type, mandatory profiling during load tests, automated regression alerting.
QA Automation Engineer Defines query performance testing standards for the team. Implements query performance gates in CI, configures automatic performance monitoring and reporting.
Site Reliability Engineer (SRE) Defines database performance standards: query latency budgets, monitoring requirements, escalation procedures. Implements automated optimization.
Solutions Architect Defines data access standards: performance requirements, architectural patterns, optimization guidelines.
Technical Lead Defines query performance standards: latency budgets, mandatory profiling, slow query policies. Implements automated performance regression detection.
Telecom Developer Defines SQL performance standards for telecom systems with automatic profiling and degradation alerts. Designs OLTP/OLAP workload separation architecture for billing and analytics.
Role Required Description
1C Developer Required Defines organizational data strategy for 1C:Enterprise ecosystem: database technology evaluation, query engine selection for analytical workloads, and data architecture governance. Designs multi-system data access architectures. Drives adoption of performance-centric data engineering practices across the organization.
Analytics Engineer Required Architects the analytics warehouse cost optimization strategy: multi-cluster configurations, auto-suspend policies, query routing. Defines architectural decisions balancing cost and analytics performance.
Android Developer Shapes organizational database performance standards for mobile platforms. Defines optimization methodologies ensuring predictable API latency for all products.
Backend Developer (C#/.NET) Required Designs platform data access strategy: CQRS, materialized views, polyglot persistence. Defines SLA for query latency by operation type.
Backend Developer (Elixir) Required Defines query optimization strategy at the entire organizational level. Designs CQRS architecture with separate Ecto.Repos for reads and writes, implements read replicas. Develops platform tools for automatic Ecto query analysis and optimization.
Backend Developer (Go) Required Defines platform query optimization strategy: automatic query regression monitoring, acceptable latency standards for various SLAs. Develops automatic query analysis and optimization tools for all Go services in the organization.
Backend Developer (Java/Kotlin) Required Designs platform-level data access strategy: CQRS for read/write model separation, materialized views for analytics, polyglot persistence. Defines SLA for query latency.
Backend Developer (Node.js) Required Designs data access strategy: CQRS, read replicas routing, materialized views, polyglot persistence. Defines SLA for query latency.
Backend Developer (PHP) Required Defines query optimization strategy at platform level: automated query analysis, query store monitoring, cross-service query performance baseline.
Backend Developer (Python) Required Defines optimization strategy at company level. Establishes DBA practices. Designs architecture for query performance.
Backend Developer (Rust) Required Defines organizational SQL optimization standards: automated pg_stat_statements monitoring through Rust agents, continuous query profiling in production. Shapes query routing architecture between primary and read replicas considering service consistency requirements.
Backend Developer (Scala) Required Defines database performance strategy for the entire platform: query performance standards, latency SLA, automated query regression testing. Makes decisions on data architecture — sharding, CQRS, full-text search through Elasticsearch integration with Scala services.
BI Analyst Required Defines organizational data strategy for business analytics: query engine selection for different analytical workloads, data access architecture standardization, and performance governance at enterprise scale. Evaluates emerging query technologies (vectorized engines, GPU-accelerated queries). Drives data engineering excellence across the organization.
Data Analyst Required Defines organizational data access strategy: query engine evaluation for heterogeneous workloads, data platform performance standards, and cost optimization for query-intensive operations. Evaluates emerging technologies (DuckDB, Polaris, GPU-accelerated engines). Drives adoption of modern query optimization practices across all data teams.
Data Engineer Required Designs query optimization strategy: federated queries through Trino/Presto, query caching, materialized views. Defines SLA for query latency by type: ad-hoc, scheduled, interactive.
Data Scientist Required Defines organizational data access strategy for ML/AI workloads: feature store query architecture, distributed training data access patterns, and real-time feature serving infrastructure. Evaluates emerging data technologies for ML efficiency. Drives data engineering excellence across data science teams for optimized model training and serving.
Database Engineer / DBA Required Shapes organizational query optimization strategy: automated query analysis platform, ML-driven optimization recommendations, cross-database query performance standards. Defines investments in query performance tooling.
DevOps Engineer Shapes database performance strategy: platform-wide monitoring, automated optimization pipelines. Defines operational governance.
iOS Developer Shapes the corporate query optimization strategy for mobile infrastructure with automatic tuning and capacity planning. Defines architecture for ensuring sub-100ms mobile API latency at enterprise scale.
ML Engineer Defines data access strategy for ML platform. Evaluates SQL vs NoSQL vs data lake for ML workloads. Designs query layer for enterprise ML.
MLOps Engineer Shapes the data access strategy for the ML platform: architecture for petabyte-scale datasets, cross-storage query optimization, standards for real-time and batch feature serving.
Performance Testing Engineer Required Designs query performance optimization strategy: ML-based query analysis, automated tuning recommendations, cross-service query performance governance.
QA Automation Engineer Shapes data performance testing strategy for the organization. Creates a continuous performance testing platform with automatic query regression detection.
Site Reliability Engineer (SRE) Shapes database performance strategy: platform-wide query monitoring, automated optimization pipelines, performance governance. Defines operational SLA.
Solutions Architect Shapes data strategy: organizational data access architecture, performance governance, data optimization principles.
Technical Lead Shapes the organization's data access strategy: polyglot persistence, query patterns governance, performance SLAs. Defines architectural guidelines for the data layer.
Telecom Developer Shapes data optimization strategy for the telecom platform at the scale of billions of CDR records. Defines query optimization approaches for hybrid storage: SQL, columnar, and streaming analytics.

Community

👁 Watch ✏️ Suggest Change Sign in to suggest changes
📋 Proposals
No proposals yet for Query Optimization
Loading comments...