Need advice about which tool to choose?Ask the StackShare community!

Apache Kudu

72
258
+ 1
10
AWS Glue

448
804
+ 1
9
Add tool

AWS Glue vs Apache Kudu: What are the differences?

  1. ACID Compliance: AWS Glue is a fully managed extract, transform, and load (ETL) service that allows businesses to prepare and transform their data for analytics. It supports ACID (Atomicity, Consistency, Isolation, Durability) transactions, ensuring data integrity and consistency during the ETL process. On the other hand, Apache Kudu is a storage system that provides fast analytics on fast data. While Kudu also supports ACID transactions, it focuses more on real-time ingestion and interactive analytic workloads.

  2. Data Format Support: AWS Glue supports various data formats such as Avro, Parquet, JSON, CSV, and more. It provides easy integration with other AWS services like Amazon S3, Amazon Redshift, and Amazon RDS. Apache Kudu, on the other hand, uses columnar storage to provide efficient compression and encoding of data. It also supports data storage in popular formats like Parquet, Avro, and RCFile.

  3. Data Ingestion: AWS Glue supports data ingestion from various sources including JDBC, Amazon S3, Amazon DynamoDB, Salesforce, and more. It provides connectors and crawlers to automatically discover and catalog data, making it easier to work with different datasets. Apache Kudu supports data ingestion through Apache Kafka, Hadoop, or directly through its APIs using various programming languages like Java, C++, Python, and more.

  4. Data Querying: AWS Glue allows you to run SQL queries on structured and semi-structured data using its Apache Spark-based engine. It also supports data exploration and analytics through its integration with AWS Athena and Amazon Redshift Spectrum. Apache Kudu, on the other hand, provides a columnar storage layout that allows efficient querying and aggregation of data. It supports traditional SQL and analytical frameworks like Apache Impala for interactive queries.

  5. Data Updates: AWS Glue allows for both batch and streaming data processing, making it suitable for handling real-time data. It provides capabilities to handle data updates, insertions, and deletions using its transformation jobs. Apache Kudu, on the other hand, focuses more on fast data ingestion and updates. It provides near-real-time updates and is designed for use cases that require frequent data updates and quick query response times.

  6. Scalability and Deployment: AWS Glue is a fully managed service provided by AWS, which means it automatically scales based on the workload and is easy to deploy. It also integrates well with other AWS services and provides additional capabilities like data cataloging and schema evolution. Apache Kudu, on the other hand, can be deployed on-premise or in the cloud and offers high scalability and fault tolerance. It can handle large data volumes efficiently and provides replication and automated data placement to ensure data reliability.

In Summary, AWS Glue is a fully managed ETL service that focuses on preparing and transforming data for analytics, while Apache Kudu is a storage system that provides fast analytics on fast data, with a focus on real-time ingestion and interactive analytic workloads.

Advice on Apache Kudu and AWS Glue

We need to perform ETL from several databases into a data warehouse or data lake. We want to

  • keep raw and transformed data available to users to draft their own queries efficiently
  • give users the ability to give custom permissions and SSO
  • move between open-source on-premises development and cloud-based production environments

We want to use inexpensive Amazon EC2 instances only on medium-sized data set 16GB to 32GB feeding into Tableau Server or PowerBI for reporting and data analysis purposes.

See more
Replies (3)
John Nguyen
Recommends
on
AirflowAirflowAWS LambdaAWS Lambda

You could also use AWS Lambda and use Cloudwatch event schedule if you know when the function should be triggered. The benefit is that you could use any language and use the respective database client.

But if you orchestrate ETLs then it makes sense to use Apache Airflow. This requires Python knowledge.

See more
Recommends
on
AirflowAirflow

Though we have always built something custom, Apache airflow (https://airflow.apache.org/) stood out as a key contender/alternative when it comes to open sources. On the commercial offering, Amazon Redshift combined with Amazon Kinesis (for complex manipulations) is great for BI, though Redshift as such is expensive.

See more
Recommends

You may want to look into a Data Virtualization product called Conduit. It connects to disparate data sources in AWS, on prem, Azure, GCP, and exposes them as a single unified Spark SQL view to PowerBI (direct query) or Tableau. Allows auto query and caching policies to enhance query speeds and experience. Has a GPU query engine and optimized Spark for fallback. Can be deployed on your AWS VM or on prem, scales up and out. Sounds like the ideal solution to your needs.

See more
Vamshi Krishna
Data Engineer at Tata Consultancy Services · | 4 upvotes · 242.9K views

I have to collect different data from multiple sources and store them in a single cloud location. Then perform cleaning and transforming using PySpark, and push the end results to other applications like reporting tools, etc. What would be the best solution? I can only think of Azure Data Factory + Databricks. Are there any alternatives to #AWS services + Databricks?

See more

Hi all,

Currently, we need to ingest the data from Amazon S3 to DB either Amazon Athena or Amazon Redshift. But the problem with the data is, it is in .PSV (pipe separated values) format and the size is also above 200 GB. The query performance of the timeout in Athena/Redshift is not up to the mark, too slow while compared to Google BigQuery. How would I optimize the performance and query result time? Can anyone please help me out?

See more
Replies (4)

you can use aws glue service to convert you pipe format data to parquet format , and thus you can achieve data compression . Now you should choose Redshift to copy your data as it is very huge. To manage your data, you should partition your data in S3 bucket and also divide your data across the redshift cluster

See more
Carlos Acedo
Data Technologies Manager at SDG Group Iberia · | 5 upvotes · 235.1K views
Recommends
on
Amazon RedshiftAmazon Redshift

First of all you should make your choice upon Redshift or Athena based on your use case since they are two very diferent services - Redshift is an enterprise-grade MPP Data Warehouse while Athena is a SQL layer on top of S3 with limited performance. If performance is a key factor, users are going to execute unpredictable queries and direct and managing costs are not a problem I'd definitely go for Redshift. If performance is not so critical and queries will be predictable somewhat I'd go for Athena.

Once you select the technology you'll need to optimize your data in order to get the queries executed as fast as possible. In both cases you may need to adapt the data model to fit your queries better. In the case you go for Athena you'd also proabably need to change your file format to Parquet or Avro and review your partition strategy depending on your most frequent type of query. If you choose Redshift you'll need to ingest the data from your files into it and maybe carry out some tuning tasks for performance gain.

I'll recommend Redshift for now since it can address a wider range of use cases, but we could give you better advice if you described your use case in depth.

See more
Alexis Blandin
Recommends
on
Amazon AthenaAmazon Athena

It depend of the nature of your data (structured or not?) and of course your queries (ad-hoc or predictible?). For example you can look at partitioning and columnar format to maximize MPP capabilities for both Athena and Redshift

See more
Recommends

you can change your PSV fomat data to parquet file format with AWS GLUE and then your query performance will be improved

See more
Get Advice from developers at your company using StackShare Enterprise. Sign up for StackShare Enterprise.
Learn More
Pros of Apache Kudu
Pros of AWS Glue
  • 10
    Realtime Analytics
  • 9
    Managed Hive Metastore

Sign up to add or upvote prosMake informed product decisions

Cons of Apache Kudu
Cons of AWS Glue
  • 1
    Restart time
    Be the first to leave a con

    Sign up to add or upvote consMake informed product decisions

    - No public GitHub repository available -

    What is Apache Kudu?

    A new addition to the open source Apache Hadoop ecosystem, Kudu completes Hadoop's storage layer to enable fast analytics on fast data.

    What is AWS Glue?

    A fully managed extract, transform, and load (ETL) service that makes it easy for customers to prepare and load their data for analytics.

    Need advice about which tool to choose?Ask the StackShare community!

    What companies use Apache Kudu?
    What companies use AWS Glue?
    See which teams inside your own company are using Apache Kudu or AWS Glue.
    Sign up for StackShare EnterpriseLearn More

    Sign up to get full access to all the companiesMake informed product decisions

    What tools integrate with Apache Kudu?
    What tools integrate with AWS Glue?

    Sign up to get full access to all the tool integrationsMake informed product decisions

    Blog Posts

    Aug 28 2019 at 3:10AM

    Segment

    PythonJavaAmazon S3+16
    7
    2555
    What are some alternatives to Apache Kudu and AWS Glue?
    Cassandra
    Partitioning means that Cassandra can distribute your data across multiple machines in an application-transparent matter. Cassandra will automatically repartition as machines are added and removed from the cluster. Row store means that like relational databases, Cassandra organizes data by rows and columns. The Cassandra Query Language (CQL) is a close relative of SQL.
    HBase
    Apache HBase is an open-source, distributed, versioned, column-oriented store modeled after Google' Bigtable: A Distributed Storage System for Structured Data by Chang et al. Just as Bigtable leverages the distributed data storage provided by the Google File System, HBase provides Bigtable-like capabilities on top of Apache Hadoop.
    Apache Spark
    Spark is a fast and general processing engine compatible with Hadoop data. It can run in Hadoop clusters through YARN or Spark's standalone mode, and it can process data in HDFS, HBase, Cassandra, Hive, and any Hadoop InputFormat. It is designed to perform both batch processing (similar to MapReduce) and new workloads like streaming, interactive queries, and machine learning.
    Apache Impala
    Impala is a modern, open source, MPP SQL query engine for Apache Hadoop. Impala is shipped by Cloudera, MapR, and Amazon. With Impala, you can query data, whether stored in HDFS or Apache HBase – including SELECT, JOIN, and aggregate functions – in real time.
    Hadoop
    The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage.
    See all alternatives