Software Alternatives, Accelerators & Startups

Amazon Athena

Amazon Athena is an interactive query service that makes it easy to analyze data in Amazon S3 using standard SQL. Athena is serverless, so there is no infrastructure to manage, and you pay only for the queries that you run.

Amazon Athena

Amazon Athena Reviews and Details

This page is designed to help you find out whether Amazon Athena is good and if it is the right choice for you.

Screenshots and images

  • Amazon Athena Landing page
    Landing page //
    2023-03-17

Features & Specs

  1. Serverless

    Athena is serverless, which means there's no need to set up or manage any infrastructure. You can start querying data immediately without worrying about managing underlying servers.

  2. Pay-as-you-go

    You only pay for the queries you run, and the cost is based on the amount of data scanned by the queries. This is cost-effective, especially for infrequent querying.

  3. Scalable

    Athena scales automatically, enabling it to handle large datasets and concurrent queries efficiently, without manual intervention.

  4. Integration with AWS ecosystem

    Athena integrates seamlessly with other AWS services like S3, Glue, and QuickSight, making it easy to build comprehensive data pipelines and analytics solutions.

  5. Supports standard SQL

    Athena uses standard SQL for querying, which makes it easy for users familiar with SQL to get started quickly.

  6. Quick to deploy

    Since there is no infrastructure to manage, you can start querying your data within minutes of setting up Athena.

  7. Supports a variety of data formats

    Athena supports multiple data formats including CSV, JSON, ORC, Avro, and Parquet, providing flexibility in data ingestion and storage.

Badges & Trophies

Promote Amazon Athena. You can add any of these badges on your website.

SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

AWS Big Data: What is Amazon Athena?

Deep Dive on Amazon Athena - AWS Online Tech Talks

Deep Dive on Amazon Athena - AWS Online Tech Talks

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Amazon Athena and what they use it for.
  • How LayerX Achieves โ€œPainlessโ€ Governance and Security in the Cloud
    Logs from AWS CloudTrail, Entra ID, Datadog, and Amazon Athena are aggregated and searchable via APIs and CLI commands. LayerX stores logs in Snowflake, making it easy to visualize and retrieve audit evidence. Log extraction is automatedโ€”no more ad hoc queries or manual exports. - Source: dev.to / 3 months ago
  • Vector: A lightweight tool for collecting EKS application logs with long-term storage capabilities
    In this article, we present an architecture that demonstrates how to collect application logs from Amazon Elastic Kubernetes Service (Amazon EKS) via Vector, store them in Amazon Simple Storage Service (Amazon S3) for long-term retention, and finally query these logs using AWS Glue and Amazon Athena. - Source: dev.to / 5 months ago
  • Introducing Iceberg Table Engine in RisingWave: Manage Streaming Data in Iceberg with SQL
    However, Iceberg defines the storage format, leaving the complexities of data ingestion and processing, especially for real-time streams, to separate systems. While query engines like Trino or Athena excel with static datasets, they aren't designed for continuous, low-latency ingestion and transformation of streaming data into Iceberg. This often forces engineers to integrate multiple complex tools, increasing... - Source: dev.to / 6 months ago
  • Deploying a Complete Machine Learning Fraud Detection Solution Using Amazon SageMaker : AWS Project
    SageMaker Feature Store keeps track of the metadata of stored features (e.g. Feature name or version number) so that you can query the features for the right attributes in batches or in real time using Amazon Athena , an interactive query service. - Source: dev.to / 11 months ago
  • Spatial Search of Amazon S3 Express One Zone Data with Amazon Athena and Visualized It in QGIS
    Prepare GIS data for use with Amazon Athena. This time, we created four types of sample data in QGIS in advance. - Source: dev.to / almost 2 years ago
  • Enhancing AWS Athena Efficiency - Building a Python Athena Client
    If you have not heard about AWS Athena, I encourage you to take a look at this service. You can read more about it here. - Source: dev.to / almost 2 years ago
  • Best architecture to provide real time data analytics to users?
    Probably S3 Select or Athena? https://aws.amazon.com/athena/ Both can query S3 directly. Source: over 2 years ago
  • How to browse an RDS snapshot that has been exported to S3
    You can use athena to query data out of parquet files in S3. Source: over 2 years ago
  • AWS Beginner's Key Terminologies
    Amazon Athena (analytics) Amazon Athena is an interactive query service that you can use to analyze data in Amazon S3 using ANSI SQL. Athena is serverless, so there's no infrastructure to manage. Athena scales automatically and is simple to use, so you can start analyzing your datasets within seconds. Https://aws.amazon.com/athena/. - Source: dev.to / over 2 years ago
  • Rewriting my blog from scratch with NextJS
    Other systems either use SQL databases for this purpose, or multi-step pipelines that use different tools for storing and querying the data. I didn't want to use either solution, on the one hand, because I didn't find free solutions for low traffic, and on the other the hand because I anyway wanted to experiment a bit with DynamoDB. - Source: dev.to / almost 3 years ago
  • Serverless Event Driven AI as a Service
    Once it's in a Data Lake then you have different options depending on the analytics you need. For more advanced constant analytics then you could look into Amazon Kinesis Data Analytics instead of Firehose to S3, but for Ad-Hoc queries then this is where Glue and Athena come in. - Source: dev.to / almost 3 years ago
  • Well-Architected Review - Part II - Operational Excellence
    You will want to use metrics based on operations outcomes to gain useful insights. Now you want to do analytics on your logs and use Cloudwatch Logs Insights or store the logs in Amazon S3, which then triggers an AWS Glue crawler to create an AWS Glue Data Catalog that then can be queried using Amazon Athena using standard SQL. The results can be visualized in Amazon Quicksight. - Source: dev.to / almost 3 years ago
  • AWS Lambda storage options
    Storing data in S3 has an additional benefit, given how well it integrates with other AWS services. For instance, you can use Amazon Athena to query your S3 data, or Amazon Rekognition to analyze it. Additionally you can use AWS Glue to perform extract, transform, and loan (ETL) operations. To create ad hoc visualizations and business analysis reports, Amazon QuickSight can connect to your S3 buckets and produce... - Source: dev.to / about 3 years ago
  • Show HN: Query SQLite files stored in S3
    > attempting to square-peg-round-hole something like this into AWS S3 I don't think it's like that. AWS already offers services like S3 Select[0] or Athena[1] that do something similar. > the user is merely invited to retry Another reason why I used s3fs instead of manually making requests. > Why not just use the right tool for the job? I certainly have multiple uses-cases where creating an SQLite database locally... - Source: Hacker News / about 3 years ago
  • Used Cars Data Scraping - R & Github Actions & AWS
    It came up with the idea of how to combine Data Engineering with Cloud and automation. I needed to find a data source as it would be an automated pipeline, so I needed a dynamic source. At the same time, I wanted to find a site where I thought retrieving data would not be a problem and do practice with both rvest and dplyr. After I had no problems with my experiments with Carvago, I added the necessary data... - Source: dev.to / about 3 years ago
  • Tracking grocery price trends on AWS - Part 2 - Analytics
    In this second part, I'm going to show you basic steps on how to run analysis on the extracted grocery data. AWS services we are going to use are AWS Athena and Amazon Quicksight. - Source: dev.to / about 3 years ago
  • Deploying a Mostly Serverless Website on GCP
    When debating the database solution for our application we were really seeking for a scalable serverless database that wouldnโ€™t bill us for idle time. Options like AWS Athena, AWS Aurora Serverless, and Azure Cosmos DB immediately came to mind. We believed that GCP would have a comparable service, yet we could not find one. Even after consulting the GCP cloud service comparison documentation we were still unable... - Source: dev.to / about 3 years ago
  • DeWitt Clause, or Can You Benchmark %DATABASE% and Get Away With It
    Amazon Web Services, including Athena, Aurora, and Redshift. You may perform benchmarks or comparative tests or evaluations (each, a โ€œBenchmarkโ€) of the Services. If you perform or disclose, or direct or permit any third party to perform or disclose, any Benchmark of any of the Services, you (i) will include in any disclosure, and will disclose to us, all information necessary to replicate such Benchmark, and (ii)... - Source: dev.to / over 3 years ago
  • Spatial Search of Amazon S3 Data with Amazon Athena and Visualized It in QGIS
    Prepare GIS data for use with Amazon Athena. This time, we created four types of sample data in QGIS in advance. - Source: dev.to / over 3 years ago
  • Automatically Partitioning Cloudflare Logs for Athena
    Once the Cloudflare request logs are in S3, they can be queried using Athena. This blog post even provides a nice CREATE TABLE command to set up the table in Athena. - Source: dev.to / over 3 years ago
  • WTF is KoopJS
    Query my datalake with AWS Athena all within Koop and Node. - Source: dev.to / over 3 years ago

Do you know an article comparing Amazon Athena to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Amazon Athena discussion

Log in or Post with

Is Amazon Athena good? This is an informative page that will help you find out. Moreover, you can review and discuss Amazon Athena here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.