11. Big Data Flashcards

1
Q

What is Big Data? What are the three aspects of Big Data?

A

Big Data is the collection and processing of large distributed and varied sources of data. The three aspects of Big Data are:

Volume - large amounts of data
Velocity - the data is arriving at a fast rate
Variety - the data is in many varying forms (text, images, temperature etc.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why is Functional Programming appropriate to processing Big Data?

A

Functional Programming languages are Stateless. There are no assignable Variables, and Functions have no side effects, which makes writing parallel code easier (no race conditions or deadlock) which is important with large a Volume of data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a Fact Based Model?

A

A Fact Based Model is an alternative to a Relational Database where a Graph stores facts/information about entities. The Graph has labelled Edges which identify relationships between entities. These models are append only, and use timestamps to identify the most recent version of a fact, whilst retaining information which changes over time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly