Amazon Athena is a serverless, interactive analytics service constructed on open supply frameworks, supporting open desk file codecs. Athena gives a simplified, versatile method to analyze petabytes of knowledge the place it lives. You possibly can analyze knowledge or construct purposes from an Amazon Easy Storage Service (Amazon S3) knowledge lake and 30 knowledge sources, together with on-premises knowledge sources or different cloud techniques utilizing SQL or Python. Athena is constructed on open supply Trino and Presto engines and Apache Spark frameworks, with no provisioning or configuration effort required.
Beginning immediately, the Athena SQL engine makes use of a cost-based optimizer (CBO), a brand new function that makes use of desk and column statistics saved within the AWS Glue Knowledge Catalog as a part of the desk’s metadata. By utilizing these statistics, CBO improves question run plans and boosts the efficiency of queries run in Athena. Among the particular optimizations CBO can make use of embrace be part of reordering and pushing aggregations down based mostly on the statistics out there for every desk and column.
TPC-DS benchmarks These benchmarks exhibit the ability of the cost-based optimizer—queries run as much as 2x occasions sooner with CBO enabled in comparison with operating the identical TPC-DS queries with out CBO.
Efficiency and price comparability on TPC-DS benchmarks
We used the industry-standard TPC-DS 3 TB to signify completely different buyer use instances. These are consultant of workloads with 10 occasions the acknowledged benchmark measurement. This implies a 3 TB benchmark dataset precisely represents buyer workloads on 30–50 TB datasets.
In our testing, the dataset was saved in Amazon S3 in non-compressed Parquet format and the AWS Glue Knowledge Catalog was used to retailer metadata for databases and tables. Truth tables have been partitioned on the date column used for be part of operations, and every truth desk consisted of two,000 partitions. To assist illustrate the efficiency of CBO, we evaluate the conduct of assorted queries and spotlight the efficiency variations between operating with CBO enabled vs. disabled.
The next graph illustrates the runtime of queries on the engine with and with out CBO.
The next graph presents the highest 10 queries from the TPC-DS benchmark with the best efficiency enchancment.
Let’s talk about a few of the cost-based optimization strategies that contributed to improved question efficiency.
Price-based be part of reordering
Be a part of reordering, an optimization approach utilized by cost-based SQL optimizers, analyzes completely different be part of sequences to pick the order that minimizes question runtime by decreasing intermediate knowledge processed at every step, reducing reminiscence and CPU necessities.
Let’s speak about question 82 of the TPC-DS 3TB dataset. The question performs internal joins on 4 tables: merchandise
, stock
, date_dim
, and store_sales
. The store_sales
desk has 8.6 billion rows and is partitioned by date. The stock
desk has 1 billion rows and can also be partitioned by date. The merchandise
desk incorporates 360,000 rows, and the date_dim
desk holds 73,000 rows.
Question 82
With out CBO
With out utilizing CBO, the engine will decide the be part of order based mostly on the sequence of tables outlined within the enter question with inner heuristics. The FROM clause of the enter question is "from merchandise, stock, date_dim, store_sales"
(all internal joins). After passing by means of inner heuristics, Athena selected the be part of order as ((merchandise
⋈ (stock
⋈ date_dim
)) ⋈ store_sales
). Regardless of store_sales
being the biggest truth desk, it’s outlined final within the FROM clause and due to this fact will get joined final. This plan fails to cut back the intermediate be part of sizes as early as doable, leading to an elevated question runtime. The next diagram reveals the be part of order with out CBO and the variety of rows flowing by means of completely different levels.
With CBO
When utilizing CBO, the optimizer determines one of the best be part of order utilizing a wide range of knowledge, together with statistics in addition to be part of measurement estimation, be part of construct facet, and be part of sort. On this occasion, Athena’s chosen be part of order is ((store_sales
⋈ merchandise
) ⋈ (stock
⋈ date_dim
)). The biggest truth desk, store_sales
, with out being shuffled, is first joined with the merchandise
dimension desk. The opposite partitioned desk, stock
, can also be first joined in-place with the date_dim
dimension desk. The be part of with the dimension desk acts as a filter on the actual fact desk, which dramatically reduces the enter knowledge measurement of the be part of that follows. Be aware that which facet a desk resides for a be part of is critical in Athena, as a result of it’s the desk on the correct that will likely be constructed into reminiscence for the be part of operation. Due to this fact, we at all times need to maintain the bigger desk on the left and the smaller desk on the correct. CBO selected a plan that the left facet was 8.6 billion earlier than, and now it’s 13.6 million.
With CBO, the question runtime improved by 25% (from 15 seconds all the way down to 11 seconds) by selecting the optimum be part of order.
Subsequent, let’s talk about one other CBO approach.
Price-based aggregation pushdown
Aggregation pushdown is an optimization approach utilized by question optimizers to enhance efficiency. It includes pushing aggregation operations like SUM, COUNT, and AVG into an earlier stage within the question plan, whereas sustaining the identical question semantics. This reduces the quantity of knowledge transferred between the levels. By minimizing knowledge processing, aggregation pushdown decreases reminiscence utilization, I/O prices, and community visitors.
Nevertheless, pushing down aggregation will not be at all times useful. It depends upon the info distribution. For instance, grouping on a column with many rows however few distinct values (like gender) earlier than joins works higher. Grouping first means aggregating numerous data into fewer data (simply male, feminine, for instance). Grouping after becoming a member of means numerous data should take part the be part of earlier than being aggregated. Alternatively, grouping on a excessive cardinality column is best completed after joins. Doing it earlier than dangers pointless aggregation overhead as a result of every worth is probably going distinctive anyway and that step won’t lead to an earlier discount within the quantity of knowledge transferred between intermediate levels.
Due to this fact, whether or not to push down aggregation must be a cost-based resolution. Let’s take instance of the question 2 run on a 3TB TPC-DS dataset, exhibiting how the aggregation pushdown’s worth depends upon knowledge distribution. The web_sales
desk has 2.1 billion rows and the catalog_sales
desk has 4.23 billion rows. Each tables are partitioned on the date column.
Question 2
With out CBO
Athena first joins the results of the union all operation on the web_sales
desk and the catalog_sales
desk with one other desk. Solely then does it carry out aggregation on the joined outcomes. On this instance, the quantity of knowledge that wanted to be joined was big, leading to an extended question runtime.
With CBO
Athena makes use of one of many statistics values, the distinct worth depend, to judge the associated fee implications of pushing down the aggregation vs. not doing so. When a column has many rows however few distinct values, CBO is extra prone to push aggregation down. This shrank the certified rows from web_sales
and catalog_sales
tables to 2,590 and three,590 rows, respectively. These aggregated data have been then unioned and used to affix with the tables. Evaluating to the plan with out CBO, the data collaborating within the be part of from the 2 massive tables dropped from 6.33 billion rows (2.1 billion + 4.23 billion) to simply 6,180 rows (2,590 + 3,590). This considerably decreased question runtime.
With CBO, the question runtime improved by 50% (from 37 seconds all the way down to 18 seconds). In abstract, CBO helped Athena select an optimum aggregation pushdown plan, chopping the question time in half in comparison with not utilizing cost-based optimization.
Conclusion
On this submit, we mentioned how Athena makes use of a cost-based optimizer (CBO) in its engine v3 to make use of desk statistics for producing extra environment friendly question run plans. Testing on the TPC-DS benchmark confirmed an 11% enchancment in total question efficiency when utilizing CBO in comparison with with out it.
Two key optimization employed by CBO are be part of reordering and combination pushdown. Be a part of reordering reduces intermediate knowledge by intelligently selecting the order to affix tables based mostly on statistics. Combination pushdown decreases intermediate knowledge by pushing aggregations earlier within the plan when useful.
In abstract, Athena’s new cost-based optimizer considerably hastens queries by selecting superior run plans. CBO optimizes based mostly on desk statistics saved within the AWS Glue Knowledge Catalog. This computerized optimization improves productiveness for Athena customers by means of extra responsive question efficiency. To reap the benefits of optimization strategies of CBO, seek advice from working with column statistics to generate statistics on the tables and columns within the AWS Glue Knowledge Catalog.
In regards to the Authors
Darshit Thakkar is a Technical Product Supervisor with AWS and works with the Amazon Athena crew based mostly out of Boston, Massachusetts.
Wei Zheng is a Sr. Software program Growth Engineer with Amazon Athena. He joined AWS in 2021 and has been engaged on a number of efficiency enhancements on Athena.
Chuho Chang is a Software program Growth Engineer with Amazon Athena. He has been engaged on question optimizers for over a decade.
Pathik Shah is a Sr. Analytics Architect on Amazon Athena. He joined AWS in 2015 and has been focusing within the large knowledge analytics house since then, serving to prospects construct scalable and sturdy options utilizing AWS analytics companies.