Login
Remember
Register
Ask a Question
How do you deploy a Big Data solution?
+3
votes
asked
Nov 25, 2022
in
Hadoop
by
john ganales
How do you deploy a Big Data solution?
big-data-solution
hadoop
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 25, 2022
by
john ganales
You can deploy a Big Data solution in three steps:
Data Ingestion – This is the first step in the deployment of a Big Data solution. You begin by collecting data from multiple sources, be it social media platforms, log files, business documents, anything relevant to your business. Data can either be extracted through real-time streaming or in batch jobs.
Data Storage – Once the data is extracted, you must store the data in a database. It can be HDFS or HBase. While HDFS storage is perfect for sequential access, HBase is ideal for random read/write access.
Data Processing – The last step in the deployment of the solution is data processing. Usually, data processing is done via frameworks like Hadoop, Spark, MapReduce, Flink, and Pig, to name a few.
...