Big Data Flashcards

1
Q

What is big data?

A

Big data is seen as an ‘all-encompassing’ term given to data that won’t fit the usual data constructs or containers. Calling it ‘big’ is misleading as it implies that volume is the only factor determine whether data should be classed. But there are other factors

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

What are the three features to consider?

A

Volume, variety, velocity

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

Why is volume a factor?

A

If so much data has been collected that it is no longer suitable to store on a single server then there is no hope of having the ability to process that data without breaking it down.

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

Why is a variety a factor?

A

When data is so varied and in different formats and data types that it becomes difficult to structure it.

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

Why is velocity a factor?

A

It is the speed at which data needs to be accessed; this is a problem as people aren’t satisfied with slow data connections and want data as fast and flawlessly as possible so the tech has had to be developed to enable this

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

How do we fix the issues?

A

When data banks become so large that they will no longer fit into a single server, the task of processing the data must be distributed across a bank if computers,. Using more than a single computer to perform tasks on a data bank requires specialist programming that is very complex and expensive to produce as it needs to be made to order for the data bank that is being processed. However, the functional programming paradigm can be used because it makes it easier to create and maintain code that allows for the workload to be efficiently distributed because it supports:
- Immutable data structures, statelessness, high-order functions

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

Why immutable data structures?

A

They are data structures that are unchanging. The rules that govern how they are used cannot be changed or altered, meaning that there are strict rules as to how data can be used and manipulated.

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

Why statelessness?

A

Statelessness is inherent in functional programming - the paradigm doesn’t support the concept of state; it doesn’t remember the results or states of any preceding events prior to the current instruction being read, as states can sometimes be restricting.

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

Why high-order functions?

A

High-order functions are functions that can accept a function as arguments and return a function as a result. This allows the language to be highly adaptable for whatever the requirements may be.

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

What are the possible solutions?

A

Fact-based model, Graph databases

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

What are graph databases?

A

Graph databases offer the same functionality as a standard database but instead of there being an index for a field or an entity, the graph database uses a pointer to reference the next entity. The graphs are an abstraction of data that are re,aged to each other or linked and are represented using nodes, edges and properties; these three criteria are found in the database’s schema. A schema is a blue print of how the database is structured, how to data is stored and what constraints there are on the structures and the way in which data can be stored

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

What is a fact- based model?

A

Generating a fact-based system is much like creating the Unified Modelling Language (it is a set of approaches for representing the user, data flow and functionality of a system in a way that can convey large systems in a relatively straightforward and comprehensive manner). Similarly, fact-based are not concerned with the data itself but how the dataset is structured, how the dataset is linked and how the dataset can be used. This then allows for a system to handle vast quantities of data without needing to be concerned with how the data will be used because the system will only perform operations within the constraints of the facts that have been generated.

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

Fact based vs Graph databases

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