Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modifying evolution image in Big data course #48

Merged
merged 1 commit into from
Dec 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Modifying evolution image in Big data course
  • Loading branch information
Aditya Kamat committed Dec 9, 2020
commit 1b936b6829fb033d823ab5a9e9f19d6c1a7b50f1
13 changes: 7 additions & 6 deletions courses/big_data/evolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,24 @@
![Pig Example](images/pig_example.png)

Output:
```mysql
```
7,Komal,Nayak,24,9848022334,trivendram
8,Bharathi,Nambiayar,24,9848022333,Chennai
5,Trupthi,Mohanthy,23,9848022336,Bhuwaneshwar
6,Archana,Mishra,23,9848022335,Chennai
```

3. [**Spark**](https://spark.apache.org/)
1. Spark provides primitives for in-memory cluster computing that allows user programs to load data into a cluster’s memory and query it repeatedly, making it well suited to machine learning algorithms.
4. [**Presto**](https://prestodb.io/)
1. Presto is a high performance, distributed SQL query engine for Big Data.
2. Its architecture allows users to query a variety of data sources such as Hadoop, AWS S3, Alluxio, MySQL, Cassandra, Kafka, and MongoDB.
3. Example presto query:
```mysql
use studentDB;
show tables;
SELECT roll_no, name FROM studentDB.studentDetails where section=’A’ limit 5;
```
```
use studentDB;
show tables;
SELECT roll_no, name FROM studentDB.studentDetails where section=’A’ limit 5;
```
</br>

# Data Serialisation and storage
Expand Down
Binary file modified courses/big_data/images/hadoop_evolution.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.