• No results found

NoSQL Database for Software Project Data

N/A
N/A
Protected

Academic year: 2021

Share "NoSQL Database for Software Project Data"

Copied!
49
0
0

Loading.... (view fulltext now)

Full text

(1)

NoSQL Database for Software Project Data

Anna Bj¨orklund

May 9, 2011

Master’s Thesis in Computing Science, 30 credits Supervisor at CS-UmU: Ola ˚ Agren

Examiner: Fredrik Georgsson

Ume˚ a University

Department of Computing Science SE-901 87 UME˚ A

SWEDEN

(2)
(3)

Abstract

The field of databases have exploded in the last couple of years. New architectures try to meet the need to store more and more data and new kinds of data. The old relational model is no longer the only way and the NoSQL movement is not a trend but a new way of making the database fit the data, not the other way around.

This master thesis report aims to find an efficient and well designed solution for storing and retrieving huge amounts of software project data at Tieto. It starts by looking at different architectures and trying three to see if any of them can solve the problem. The three databases selected are the relational database PostgreSQL, the graph database Neo4j and the key value store Berkeley DB. These are all implemented as a Web service and time is measured to find out which, if any, can handle the data at Tieto. In the end it is clear that the best database for Tieto is Berkeley DB. Even if Neo4j is almost as fast, it is still new and not as mature as Berkeley DB.

(4)

ii

(5)

Contents

1 Introduction 1

1.1 Paper outline . . . 1

2 Modern Databases 3 2.1 A brief history . . . 3

2.2 The CAP Theorem . . . 4

2.2.1 ACID v. BASE - two different ways of achieving partitioning . . . 4

2.3 Storing data today . . . 5

2.3.1 Column store . . . 6

2.3.2 Key value store . . . 6

2.3.3 Document store . . . 7

2.3.4 Graph database . . . 7

3 The problem at Tieto 9 3.1 The data . . . 9

3.2 The Questions . . . 11

3.3 The databases . . . 12

4 The solutions 13 4.1 PostgreSQL . . . 13

4.1.1 The questions . . . 14

4.1.2 Strengths and weaknesses . . . 15

4.2 Neo4j . . . 15

4.2.1 The questions . . . 16

4.2.2 Strengths and weaknesses . . . 16

4.3 Berkeley DB . . . 17

4.3.1 The questions . . . 18

4.3.2 Strengths and weaknesses . . . 19

5 Results 21

iii

(6)

iv CONTENTS

6 Conclusions 29

6.1 Future work . . . 29

7 Acknowledgements 31

References 33

A Data from test runs 35

A.1 Server times . . . 35 A.2 Client times . . . 38

(7)

List of Figures

3.1 An overview of the data . . . 10

3.2 An example of how a property is shared between different nodes . . . 10

3.3 An example of a consistent tree . . . 11

3.4 An example of an inconsistent tree . . . 12

4.1 An example of how a shared property gets duplicated in Berkeley DB . . . . 18

5.1 Total time for the client. . . 22

5.2 Client times for 10% of the data without PostgreSQL . . . 23

5.3 Total time for the server. . . 24

5.4 Client times for question 1-6 . . . 25

5.5 Total time for the client for question 7 at different amounts of data . . . 26

5.6 Client times for question 8-13 . . . 27

v

(8)

vi LIST OF FIGURES

(9)

List of Tables

2.1 An example of data organized in a table . . . 6

4.1 The table retured by PostgreSQL for the inconsistent example . . . 14

A.1 The server times for 0.1% of the data. Time in milliseconds. . . 35

A.2 The server times for 1% of the data. Time in milliseconds. . . 36

A.3 The server times for 10% of the data. Time in milliseconds. . . 36

A.4 The server times for 100% of the data. Time in milliseconds. . . 36

A.5 The server times for the hash table. Time in milliseconds. . . 37

A.6 Client times for all test runs at 0.1%. Time in seconds. . . 38

A.7 Client times for all test runs at 1%. Time in seconds. . . 38

A.8 Client times for all test runs at 10%. Time in seconds. . . 38

A.9 Client times for all test runs at 100%. Time in seconds. . . 39

vii

(10)

viii LIST OF TABLES

(11)

Chapter 1

Introduction

Today there exist many different types of databases, not only the traditional relational SQL database but several other architectures designed to handle different types of data. Since the 70s and into the new millennium the relational model was the dominant and almost all databases followed the same basic architecture. At the beginning of the new millennium developers started to realize that their data did not fit the relational model and some of them started to develop other architectures for storing data in databases. When choosing a database today the problem is much more complex then deciding on a vendor for the relational database, the main problem is deciding which architecture of data storing is best suited for the data. When that decision is made it is time to choose a vendor that meets the companies requirements regarding price, reliability and so forth. This paper will look at three different database solutions for software project data at Tieto Ume˚a and compare them. First a theoretical approach is made and then all three are implemented and are tested to see which is fastest in a test with the real data.

1.1 Paper outline

Chapter 2 begins with a brief history and then takes a deeper look at the different solutions for data storing that exist today.

Chapter 3 takes a deeper look at the problem at Tieto, the data they have and how this data fits different architectures.

Chapter 4 describes the three different solutions implemented and where the strengths and weaknesses lie in each solution from a theorecial point of view.

Chapter 5 presents the result of the implementation with extra attention to performance and the specific requirements from Tieto.

Chapter 6 addresses what is left to do and how Tieto can move forward with this.

1

(12)

2 Chapter 1. Introduction

(13)

Chapter 2

Modern Databases

2.1 A brief history

In the 70s databases was a growing field and there were some debate on how to organize the data. IBM developed System R and it was the first system to implement a Standard Query Language (SQL). System R is the foundation for many of todays popular DBMSs (Database Management System)[9]. The hardware design in the 70s and 80s were much different from today. Today processors are thousands of times faster, memory is thousands of times larger and the main bottleneck is the bandwidth between disk and main memory. The main market for RDBMS (Relational DBMS) in those days was business data processing, today there are a lot of different markets with completely different requirements. Yet another difference is the user interface, in the beginning there was a text terminal and today there is a graphical interface. Despite the changes in requirements and hardware the relational model was the dominate one until the beginning of the new millennium. At that time developers started to think outside the box and realized that they had data that did not fit the relational model.

Several started to develop different ways to organize their data depending on their specific needs. There were some products but most of them were only available within the company and for a specific solution.

The phrase NoSQL was first used in 1998 as a name for a lightweight relational database that did not expose a SQL interface. In early 2009 it was reused by the organizers of an event to discuss open source distributed databases and was a reference to the naming convention of traditional relational databases, such as MySQL and PostgreSQL. Today the expression is often thought of as Not only SQL and is the movement of other database solutions than a relational database. The idea is not that relational databases are bad and wrong, just that in some cases the relational model just isn’t enough. If the relational model fits the data then it is a good idea to use it. But if the data does not fit the relational model it is worthwhile to look at another type of database. The two main disadvantages that RDBMS have are that they do not scale easily (in the next Section it will be obvious why) and they often fail at capturing the relation between the data. Only a few years ago these problems was not such a big problem but the amount of data that is in store today is infinitely much more than only ten years ago. The continuing trends of cloud computing and growth of social networks will only fuel the need for large data stores even more.

3

(14)

4 Chapter 2. Modern Databases

2.2 The CAP Theorem

To be able to discuss the different database solutions that exist today it is important to have an understanding of the CAP theorem [3]. The CAP theorem states that it is impossible for a Web service to guarantee all three of the following properties:

Consistency – all clients have the same view of the same data at all times Availability – all clients can always read and write

Partition-tolerance – the system works well despite physical network partitions

All three are desirable for all Web services but at PODC 2000 Brewer [3] made the conjecture that it is impossible to have all three, a Web service can at most choose two of the three. In 2002 Gilbert and Lynch proved that Brewer was right for asynchronous network, which is a network where the nodes does not share a clock but have to rely on the messages that are sent between them. Since this is the case for most web services it has a major impact on the decision to choose the right model for storing data. The CAP theorem states that any database solution can only fulfill two of the criteria and that it is up to the architecture to choose which two.

Most relational databases can promise consistency and availability and this is good for smaller system. If this is the main goal, the data fits the relational model and there are no requirements on uptime then the relational model is a good choice. If there are requirements on uptime or the data is massive there might be necessary to partition the data between several nodes and make a compromise on one of the other. One node can never guarantee a given uptime and for some companies this is so important that they can tolerate a database that is inconsistent at times to guarantee availability. One important note is that inconsistency is not always inconsistency, it only means that the database cannot guarantee that every node have the exact same picture of the data at all times. They do guarantee that all nodes will have the same picture at some time, but not all the time. This is referred to as eventual consistency and as the term implies, the database will be consistent at some time but not all the time.

2.2.1 ACID v. BASE - two different ways of achieving partitioning

If a database needs to be physically partitioned then the CAP-theorem states that it needs to choose to give up either A (availability) or C (consistency). ACID (Atomicity Consistent Isolation Durability) and BASE (Basically, Available, Soft state, Eventually consistent) are two different ways of doing this. ACID and BASE are not databases but more of organisation schemas that can give guidelines how a database can operate to be as good as it can be for the third criteria.

In 1981, Jim Gray [4] proposed how a partitioned database could guarantee consistency by making sure updates were done in transactions that followed some given guidelines.

Today transactions are something natural and most databases support it, some even demand it for some type of update. But in 1981 when Jim Gray reinvented transactions it was something new and it is on that foundation most systems are built today. The properties of a transaction are

Consistency a transaction only commits if it preserves the consistency of the database Atomicity a transaction either commits or not, it acts as an atomic operation

(15)

2.3. Storing data today 5

Durability once a transaction is committed, it cannot roll back

Isolation no other transaction can see the events in a non-committed transaction

In the original paper there were no I, it was added later in 1983 by Andreas Reuter and Theo Haerder [5] to form the acronym ACID (Atomicity Consistent Isolation Durability).

In 1998 Jim Gray was awarded the Turing Award1 for seminal contributions to database and transaction processing research and technical leadership in system implementation [14].

Grays rules guarantee that a database stays consistent even then partitioned, but the price for this must be availability according to the CAP theorem. Another problem with the rules is performance; the cost to keep the data consistent is not nonexistent. As a solution to these problems Dan Prittchett, Ebay [7] suggested that trading some consistency for availability can lead to dramatic improvements in scalability. His solution has the acronym BASE (Basically, Available, Soft state, Eventually consistent) and uses functional partitioning as a method of partitioning the data. Functional partitioning is dependent on the actual data stored and for some systems this technique will not work well. It allows some data to be inconsistent between different partitions at some period in time and uses persistent messaging to make the data consistent at a later point. The main point here is to allow some of the data to be inconsistent at some times but not all the time, hence the eventually consistent part of the acronym.

The notion of having inconsistent data, even if it only is for a moment, is very scary to some computer scientist. The important thing is to choose which data to allow inconsistency on and partition the system according to this. This is something we all come in contact with at some point in our lives, for example when we pay with our credit card it takes a day or two before it can be seen on the bank statement. Another example of this is Amazon and their solution Dynamo [2]. They risk losing millions in revenue if customers cannot access their web store at all times because they have customers from all around the world. When it is night at one part of the world another part has daytime and millions of potential customers choose between them and another online book store. If Amazon tolerated downtime on parts of the store at any given time the word would spread and they risk losing reputation and customers. Because of this they tolerate that different nodes have different views of some the data at short periods of time.

It is worth mentioning that not all non-relational databases operate in the same space of the CAP-theorem and there is no clear way of saying that a specific type of NoSQL database is in any specific area. Today there are several solutions that operate in different areas of the CAP theorem and the same database can exist in different areas depending on configurations.

2.3 Storing data today

Today there exist some famous non-relational database systems; Googles Big Table, Ama- zons Dynamo and Cassandra (used by Facebook and Twitter) to name a few. There are also several open source solutions with varying quality. There are no reasons to choose an RBDMS and try to fit the data into it, instead there is money and time to be saved by choosing carefully and finding the model which fits the data the best. The term NoSQL does not denote a specific type of database but can be divided into several different types of

1The Turing Award is recognized as the ”highest distinction in Computer science” and ”Nobel Prize of computing”.

(16)

6 Chapter 2. Modern Databases

non-relational databases that all have different characteristics and are suitable for different types of data and in different situations.

2.3.1 Column store

Most data today is organized in tables, this is a model that suits lots of data and is easy to understand for most humans.

Name Birth date Address Zipcode City

John Svensson 1976-02-10 Nygatan 12 123 94 Orebro¨ Malin Olsson 1986-09-23 Storgatan 54 345 19 G¨oteborg

Ove Nykvist 1967-05-02 Hammargr¨and 2 735 12 Sundsvall Table 2.1: An example of data organized in a table

The data cannot be stored in two dimensions on disc since disc is sequentially accessed.

The traditional way a RBDMS organizes the data is in records and these are continuously placed in storage. This row-oriented architecture gives fast writes and is called write opti- mized.

John Svensson, 1976-02-10, Nygatan 12, 123 94, ¨Orebro Malin Olsson, 1986-09-23, Storgatan 54, 345 19, G¨oteborg Ove Nykvist, 1967-05-02, Hammargr¨and 2, 735 12, Sundsvall

This is optimized for systems that does lots of writes but does not work well with systems that handle few writes with lots of data in each write and lots of querying in between the writes. In that case a read-optimized system is better suited and a way to achieve this is a column-oriented organization [10]. In a column store the data is stored in columns instead, making it faster to read a particular column to memory and making calculations on all values in a column.

John Svensson, Malin Olsson, Ove Nykvist 1976-02-10, 1986-09-23, 1967-05-02 Nygatan 12, Storgatan 54, Hammargr¨and 2 123 94, 345 19, 735 12

¨Orebro, G¨oteborg , Sundsvall

Then the columns of data are stored together and when querying it is not necessary to read unimportant columns to memory, thus making it faster for some types of operations.

One disadvantage of this type of storage is that it makes joins very time consuming and some column stores does not support join operations on the data. Cassandra is one of the most famous of the wide column stores and is used by both Facebook and Twitter; though Twitter use a slightly different configuration called Twissandra. Another famous one is Googles Bigtable.

2.3.2 Key value store

A key value store stores anything as a key/value pair. The key is used to access the stored value and the stored value can be anything. This may seem very simple and it is, but only on the surface; the database engine handling the persistent data is often very advanced.

The main advantage with this type of storage is that it is schema less, in theory there

(17)

2.3. Storing data today 7

are no constraints on the key or the value. In practice the key is usually some primitive of the programming language; a string, an integer or something like that. The value can be anything but is usually an object of the implementing language or a string. The main advantage is the speed and ease that data can be stored in a persistent way. It is easy to support physical partitioning and most support the eventually consistent idea behind BASE. The main disadvantage is that inhereted relations between data are lost and since anything can be stored it is up to the client to interpret the data returned by the store.

The most famous of the key value stores is Amazons Dynamo with was already discussed earlier. An open source alternative to Dynamo is Voldemort [13]. Another key value store is Berkeley DB which is one of the databases that is used in this paper. More on that will follow later.

2.3.3 Document store

A document store is a special kind of key value store; it does not store the document (the value) as a mass of data, and it uses information in the document to index the document.

Because of this there are demands on the data in the document; it has to be structured in some way. This is usually accomplice by XML, JSON or something else that the database can understand. This allows queries on the data and not just the keys as is the case for a key value store. This also allows for a much more flexible solution than an RDBMS since the database has no schema. There are no problems adding attributes to records after they have been inserted into the database, even if the attribute is something not even conceived at design time. This makes the document store very flexible, something that is hard to achieve with a traditional RDBMS.

Some famous document stores are Raven [8], MongoDB [1] and CouchDB [12].

2.3.4 Graph database

In a graph database the data is stored as nodes and vertices between the nodes. The nodes have attributes or properties and the vertices have types or names. The data is extracted by traversing the nodes and vertices in different ways. Some vendors include some way of indexing the nodes for easy access. The main advantage with this type of storing is the possibility to traverse the nodes with known mathematical graph traversing algorithms. As with all these different ways of storing data it will only work if the data fits the model.

There will be problems if the data is tabular in nature with little or no relationship between nodes. This model will then work poorly and it would have been better to use another type of database instead.

The notion of storing data in something else besides an RDBMS is nothing new, there have been several projects for as long as there have been computers. In the last years there have been an exponential growth of data and the need to use something else than an RDBMS has also grown exponentially.

(18)

8 Chapter 2. Modern Databases

(19)

Chapter 3

The problem at Tieto

The database today has two major problems; it is designed to handle any type of data and scalability was not an issue for the designers. This became a big problem when the amount of data became much larger than anticipated at design time. One of the questions Tieto wanted to have answered is if a more specific design of an RDBMS can help with scalability.

At the same time they want to know if a different kind of database can do the job better.

The choice is described later, first a look at the data at Tieto.

3.1 The data

The content and the nature of the content of the data is a company secret. Therefore this thesis will only give a general schematic picture of the data and not use the correct names or labels.

The easiest way of describing the data is by using a graph. There are four different levels of nodes; A, B, C, and D. There are no vertices between nodes of the same level and only vertices to a node of the adjacent level. The information of the relationships lies entirely on the upper nodes. The C nodes have information about which D nodes it relates to, the B nodes have information on which C nodes they relate to and so forth. A C node has no information about which B nodes it connect to. This is the nature of the data; in the implementations there exist a relationship both ways. Because of this it is a requirement among all solutions that nodes are entered in the right order. If a B node is entered into the database without all C nodes it relates to already being there, the B node cannot be stored.

Figure 3.1 is a picture to help understand the organization of the data and also give an idea of how many nodes there are in each level. In total there are 4 million nodes, 40 million relationships between nodes and 100 million values.

This is a simplification of the real data, in the real data there are some vertices from A to C, the nodes also have some metadata attached to them and each node has a predecessor.

These properties are removed from the data for this thesis to make the implementation a little bit easier. Since the main goal of this thesis is to implement and test different databases and see if they can handle the amount of data these simplifications should not make the result differ too much from reality. The picture is an overview of how the data is organized; the B and C nodes are very similar and have properties that they share, making the picture a little more complicated. Figure 3.2 is a small section of the big graph and an illustration of how one of the properties of the data in the nodes makes them connected.

9

(20)

10 Chapter 3. The problem at Tieto

Figure 3.1: An overview of the data

A node has on average one or zero connections to properties but the number vary a lot and others have up to ten. The nature of the graph; the number of vertices between the different levels, the number of nodes and the number of properties shared between the nodes differ a lot depending on where in graph the calculations are made. This makes it harder to implement an optimal solution. An algorithm that works nice in one part of the graph may be a catastrophe at another part. These implementations try to be as good as it gets for the majority of the graph but not optimal for any one part of it.

Figure 3.2: An example of how a property is shared between different nodes

(21)

3.2. The Questions 11

3.2 The Questions

The questions asked to the database can be divided into two different types. The first type is a simple get a set of nodes with a given property. The properties are one or two and all nodes returned must have the given property. In PostgreSQL a typical question is SELECT

* FROM table WHERE table.a = X AND table.b = Y. This type is called the simple questions without connections and there are nine in this solution. The other type is a set of more complicated questions where the connections between the nodes are explored. These questions are

– Return a sub tree of a given A

– Return all B that connect to a given C

– Check the difference between two A, return all nodes unique to A1, unique to A2 and all nodes A1 and A2 have in common in three different lists

– Check if a tree under A is consistent and if it is inconsistent return how it is inconsistent A sub tree under an A is inconsistent if two C have the same value in a specific attribute but are not the same node. For all cases of inconsistency the database returns the value of the attribute and all B-C pairs where the C-node has the value of the attribute. If the sub tree is consistent the question only return true. To illustrate this see Figure 3.3 and 3.4. In Figure 3.3 the sub tree of A is consistent but in 3.4 there are two C-nodes that have the same value of a=4 but they are not the same node. In this case the question will return a=4 and a list of BC-pair; B2-C2, B3-C4 and B4-C4.

Figure 3.3: An example of a consistent tree

Note that the attribute in question is a very specific attribute and that it is only in a sub tree under a given A that this is interesting. In two different sub trees there are some C nodes with the same value that are not the same C node but this is permitted. It is only in the sub tree of one A that all C nodes with the same value in the attribute must be the same node. How and why inconsistencies occur is to closely connect to the nature of the data to be revealed here. They do occur at some points and the solution at Tieto today cannot tell in which nodes the problem is, it only gives true or false if the sub tree is consistent or not.

(22)

12 Chapter 3. The problem at Tieto

Figure 3.4: An example of an inconsistent tree

3.3 The databases

One of the databases chosen was PostgreSQL, a free Open Source RDBMS that is known to have good performance. One major advantage was also that Tieto already had this installed for other testing purpose. Because of the nature of the data one of the databases is a graph oriented database and the choice was Neo4j, a Swedish open source graph database. One major advantage was also that it is written in Java and well documented. The last database was a choice of either a document store or a key value store. This was because they are very different in their architecture from the other two and it is interesting to see if they are as good as they should be on the simple requests and how bad they are on the more complicated questions. Several were considered but the choice fell on Berkeley DB, a key value store that had recently been rewritten for Java. It previously only existed in C with a library that could run the C-version in Java but with the new version the cost for inter language translation was avoided. Berkeley DB is also well documented and has several examples.

(23)

Chapter 4

The solutions

The solution is implemented in Java 1.6 as a Web service. This was a requirement from Tieto as this would make it easier to integrate this into their existing systems. The three different data stores implements the same interface and are therefore interchangeable without making any changes to the Web service methods. Since this is intended as an internal system the data source is trusted and there are no protections against malicious data. The only protection that exists is against faulty data. This may seem a bit strange and if any of these databases are integrated into Tietos existing systems they need some work in this area. The main reason for this limitation is time. The time for this thesis is limited and it was decided that it was better get as much functionality as possible instead of spending time on error handling for something that may be discarded.

All three solutions operate in the same space of the CAP theorem; none of them are physically partitioned. Both Neo4j and Berkeley can be partitioned if the need should arise.

4.1 PostgreSQL

The PostgreSQL solution is implemented in version 8 and uses java.sql.* library to commu- nicate with the database. The main table structure is straight forward; one table for each of the levels of nodes with a serial id field and three tables containing the relationship between the different layers of nodes. The property described in Section 3.1 is also in its own table with a join table that tells which property belongs to which node. This is not the structure of Tietos current solution; this is a new design that tries to be as good as it can be for this version of the data.

One of the main problems with PostgreSQL can be found in this design; there are approximately 18 million rows in the table joining B and C nodes. All questions regarding the relationship between the B and C nodes will be costly any way it is done. When asking for a specific B it is necessary to query over this table because one important part of a B is whith C it connects to. The information about these connections must be in the database and the other solutions for achieving this would have other problems. One way would be to let the table for B nodes contain this information but the number of connections differs widely between different B nodes. This makes it hard to have any other solution than the one chosen. Pruning the data and discard some of the nodes is not an option, all data is still relevant in one way or another. Another possibility would be if the graph could be divided into several smaller sub graphs. Then the table could be split into several smaller tables.

This is not possible for this data, not even when looking at only the B and C levels so this

13

(24)

14 Chapter 4. The solutions

a B.id C.id

3 C1 B1

3 C1 B2

4 C2 B2

4 C4 B3

4 C4 B5

2 C3 B3

2 C3 B4

Table 4.1: The table retured by PostgreSQL for the inconsistent example

cannot be done without having more than one copy of some of the nodes.

The logic of this solution strives to make as few queries to the database as possible without having to loop the resulting rows more than once. The overhead of querying the database is something to consider and it is worth a little more logic in the program to not have to query the database more than once for each question. This is the only solution that requires anything else than a java library since the PostgreSQL server runs independently from the java program. In the test runs the PostgreSQL server was run on the same computer and thus eliminating the time it would take the data to be transferred in a network.

4.1.1 The questions

In this Section the more interesting solutions will be described in some detail. The first nine questions are simple select with some joins for retrieving the data. They are not particularly interesting or special, only simple selects. The queries are written to allow the query planner in PostgreSQL as much freedom as possible since it probably is better at the planning then the author of this paper.

Question 10 and 11 does nothing special; they only return the sub tree or the list of B nodes and does nothing unexpected. Question 12 gets the unique labelling string for the two different sub trees for the different A nodes. It then uses javas set operators with a hash set on the two sets of strings to get the three different subsets. Given the results of the test runs this is probably not the optimal way of doing this even thought java is good at hashing strings. If there is any more work done on this solution this questions is definitely worth looking at and implementing a better solution.

The last query determined if a sub tree of A was consistent or not. For examples of this see Figure 3.3 and 3.4. This was really hard to implement and the final solution is one that uses PostgreSQL for the most part and some java for the final logic. The query to PostgreSQL returns table 4.1 for the previous inconsistent example. This is sorted primarily on the value of a and secondarily on C. The java program then has the following algorithm to remove the rows that does not contain the inconsistent a-value. The return structure is not in row format but contains the same information, organized in a slightly different way.

Note that before the first row is calculated the variables keeping track of the previous row are set to empty strings and therefore are a value but matches noting from the database.

1 Fetch the values for the new row

2 is this a-value the same as the previous row 2.1 is this C the same as the previous row

2.1.1 keep C and D in a structure

(25)

4.2. Neo4j 15

2.2 else (the C is different meaning an inconsistent tree) 2.2.1 set this a-value as inconsistent

2.2.2 keep C and B nodes in a structure

3 else (this is not the same a-value as the previous row) 3.1 is the previous a inconsistent

3.1.1 set the return structure as inconsistent 3.1.2 save all data in the return structure 3.2 else (the previous a is consistent)

3.2.1 discard all saved data 4 set this row as the previous row

4.1.2 Strengths and weaknesses

The implementation of PostgreSQL was the first one, since this was the database most familiar from previous experience. In the end this database proved to be the hardest and most time consuming to implement. The amount of code needed to handle calls to the database, exceptions and similar things is massive. Almost all exception handling is simply printing an error message on stderr and moving on or returning false since there is no use spending time implementing fancy error handling for something that may be discarded shortly. All changes to the database are made in transaction and time and effort was spent on making sure the data in the database did not get corrupted. One problem with PostgreSQL and other SQL databases is that the programmer needs to be good at SQL to be able to handle writing the queries, setting up tables and similar things. There is a big hurdle to get over in order to do things nicely and efficiently.

4.2 Neo4j

Neo4j is a graph database and as such it uses nodes and vertices to store data. A node can have several properties and several vertices or relationships with other nodes. These relationships must be of a specific type. A relationship can also have several properties just like the nodes. A property is a key that is a string and a value. The value must be one of Javas primitive types, a string or an array of primitives or strings. The data is retrieved from the database by traversing the graph.

Since the data is in a graph structure there was no need to think of any other structure for storing the data. All attributes in a node are stored as properties and the relationships are set as the nodes get entered into the database. Relationships are set both ways so between two nodes there are two relationships with different types, one going up and one going down. This helps with the traversing of the tree, making sure that only nodes in the right direction gets traversed.

To index the nodes this solution uses the LucenIndexService that is closely integrated in the database but not a part of it. There is no indexing in the graph engine but this semi built in index service uses a Lucene as backend and is as close as it gets to being an integrated index. This is not intended as a key-value store and therefore indexing is not a priority, the main way of finding the right nodes should be by traversing the graph with different algorithms. Because the indexing is separate from the database it is possible to

(26)

16 Chapter 4. The solutions

remove a node from the database and still have it indexed. The index service may still return the node but it will not have the correct properties set and when asked for the value of the propery an exception will be thrown. The first time this happened it was a somewhat hard error to find. The database said that the property was not set but the problem was that the node was still indexed by the property and removed from the database. It is vital that all indices are removed when a node is removed from the database. The only time nodes are removed from the database in this solution is then all data is removed for testing purposes.

This solution uses version 1.1 of Neo4j. The new version 1.2 came out in December 2010.

The implementation was finished in November of 2010 and has not been checked against the new version of the database. One of the main differences is how the indexing is handled. If there is any future work done on this solution one of the first steps should be integrating the new way of indexing. More information on this can be found on Neo4js web page [11].

4.2.1 The questions

The first nine questions are handled by the index service. All nodes that are put in the database get indexed on the different properties that are needed for this. When the correct node has been found the information is moved from the node to the Java object that gets returned. A new object is created for every node that is returned, it is not the same object that got put in the database but it has the same information.

The more complex questions use the graph structure of Neo4j to return the correct nodes.

Question 10 gets the correct A from the index service and then simply traverses the sub tree and returns the nodes. Neo4j makes this traversing very easy, it is possible to ask for every node that is at a maximum depth from this node and that can be accessed by the correct relationship type. The same is true for question 11, the correct C node is found by asking the index service for the node and then asking the database for all its neighbours with the correct relationship.

Question 12 uses Javas hash set in the same way as PostgreSQL to calculate the different sets from given sub trees. As previously mentioned this is probably not the best way and a different algorithm should be considered if any more work is done on this database.

The consistency check really uses the graph properties of this database. It begins by making a depth first search with a maximum depth of two. For all C nodes it saved the a-value and the C node in a hash table. The a-value is set as key and the C node is put in a list. When all nodes are traversed the program begins to go through the hash table and searching for a-values that have more than one value in the list. If such a list is found, the sub tree is inconsistent. To get the right B nodes all B nodes are examined and the ones with correct A are stored in the return structure. For the most cases a sub tree will be consistent and this should be faster than BerkeleyDB for those cases since it really uses the nature of the graph and only when it is needed.

4.2.2 Strengths and weaknesses

It was fairly easy to start implementing Neo4j. There are some examples on the web site and a really good API for all of the classes. The only major problem was described above, if an index was not removed it showed in a really strange behaviour and the root cause was hard to find. A completely missing functionality is the ability to truncate the entire database. Since this was a test there was a need to store data, perform the tests and then remove all data to make the database clean for the next test. This is very easy in both

(27)

4.3. Berkeley DB 17

PostgreSQL and BerkeleyDB but no easy solution was found for Neo4j. Neo4j is still young and the changing of indexing from version 1.1 to 1.2 shows that big changes are still being made. Both PostgreSQL and BerkeleyDB are older and more mature products.

Neo4j requires really fast discs or huge amounts of memory to work well. The Linux machine that was used in the developing of this thesis had some real problems with speed.

The test runs was done on solid state drive and Neo4j needs better hardware for the program than the other two databases.

Because the data is organized as a graph there are several graph algorithms that can be used to solve various problems. A graph is easy to understand and most data with lots of relationships are described as a graph. There exist programs that allows for a graphical presentation of the data in the database but none were tested by the author of this thesis.

4.3 Berkeley DB

BerkeleyDB is a key-value store that is originally written in C++ but now has a completely rewritten version in Java. BerkeleyDB is owned by Oracle since 2006. Berkeley stores any java-class that is set to be persistent. It uses annotations to set the class as persistent or as an entity class and the members of the class that are primary- and secondary key. The secondary keys have four different ways of relating to other instances of the same class. An example will clarify this.

@Entity

class ExampleClass {

@PrimaryKey long id;

@SecondaryKey(relate=ONE_TO_ONE) Int ssn;

@SecondaryKey(relate=MANY_TO_ONE) String Name;

@SecondaryKey(relate=ONE_TO_MANY) String[] email;

@SecondaryKey(relate=MANY_TO_MANY) String[] family;

}

ONE TO ONE says that the value is unique for every instance in the database. A primary key is of this type but it is unusual for secondary keys. MANY TO ONE means that this instance only has one but share that with several other instances of this class. If an instance may have many but no other instance may have any of the same the relation type is ONE TO MANY and if an instance can have many that it shares with other the relation type is MANY TO MANY. For more information on implementation details, see the API [6].

Since BerkeleyDB require all objects to be stored to be set as persistent the information have to be moved from the original object coming in to a Berkeley object that looks the same except for the Berkeley specific annotations. When returning an object from the database

(28)

18 Chapter 4. The solutions

the reverse is done to make sure the correct type of object gets returned. When doing this some information about relationships between the nodes are lost. In Figure 3.2 there is a shared property between the nodes. In Berkeley each node will get their own copy of this property and when returned the nodes will have different but identical copies of this property, see Figure 4.1.

Figure 4.1: An example of how a shared property gets duplicated in Berkeley DB

4.3.1 The questions

As with the others the first nine questions were easy when the indexing part was understood.

If a Berkeley DB object could be returned the search methods would consist of only one line of code. Returning a sub tree needs the database to first get the right A node then looping all B nodes, getting the right node from database and finding all C nodes it connects to.

It then needs to do the same for all C nodes to get all D nodes. This means that several nodes may get visited more than once and that is not optimal. If a get from the database is costly and there are lots of C nodes that belong to different B nodes in the same sub tree this approach will be expensive. But if there are only a few of these nodes it will cost more to keep track of which have already been explored than to let them get explored once more. Therefore this solution uses the naive approach and lets the same C node get explored several times.

Getting down the tree is fairly easy with Berkeley DB as with both the other databases.

In the other two there is also information on how to get up the tree but this information does not exist in Berkeley DB. Information on with B nodes a C node belongs to is only stored in the B nodes and therefore it must be search in the B nodes. The search is not hard, the id of the C nodes is set to be a secondary index and the search is simple but possibly time consuming. The difference between two sub trees is handled in much the same way as with the other databases. The difference here is in the speed of the initial search since it is done twice.

The inconsistency check was hard to do in Berkley DB. In Neo4j there was a possibility to store only the C nodes and the a-value and then get the information if the sub tree is inconsistent. In Berkeley DB this would be much harder since there is no link from a C node to its B nodes and on to the A node to make sure only the correct B nodes gets returned.

(29)

4.3. Berkeley DB 19

The supervisor at Tieto, Anders Martinsson, made a solution for his Hashtable and that solution seemed to be a good approach: it stores all the information needed as it makes a depth first search of the sub tree. In Neo4j only the a-value and its corresponding C node is saved but there it is possible to retrieve the information about the B nodes without having to search the whole tree again. In Berkeley DB this is not possible so all information needed to be saved as the initial search proceeded. The hashtable has the structure

Hashtable<String, Hashtable<String, List<String>>> to keep track of all nodes vis- ited so far. The outer hashtable have the a-value as key and a hashtable as the value. The inner hashtable have the C node for key and then a list of B nodes for value. Then the initial search is done it is simply a matter of looking at the length of each of the inner hashtables to see if any of them are of greater length than one. If so, then that a-value is in more than one C node and the tree is inconsistent.

4.3.2 Strengths and weaknesses

This was a little bit harder than Neo4j to get started on the implementation but after the initial hurdle was cleared there were few problems with getting the code to work. When first tested on the developing machine the first reaction was that it was really fast. Those tests were only to test the functionality but even then it was a clear difference in the speed of the test program.

The author of this paper has tried to find some graphical program to view the data in the database and handle it manually. No such program has been found but it would be good if it existed.

(30)

20 Chapter 4. The solutions

(31)

Chapter 5

Results

The test program was developed by Anders Martinsson; my supervisor at Tieto. All test runs were done by him on his computer,

The test runs are made in four different percentages of the data; 0.1%, 1%, 10% and 100%. The test was run 2048 times for each question except for Neo4j and PortgreSQL at 100% because they took so long it was not possible to let them run that many tests. Neo4j had 512 tests and PostgreSQL had 256 tests per question. Time was measured at both client and server; the client measured the wall clock time for all test runs in milliseconds and the server each questions time in nanoseconds. In total there were almost 500 000 times to analyse at the end of all test runs. The server times will not be presented in total here;

only the mean, median and a trimmed mean will be presented. The trimmed mean has 5%

cut of at each end to get rid of any extreme values. All times are in tables in Appendix A.

Note that the listings of client times for 100% have the numbers for Neo4j and PostgreSQL are multiplied with 4 resp. 8 to give an accurate picture for comparison.

This is maybe the most important result of them all. The fact that the total time for running the entire test set was so high that it could not be completed for both Neo4j and PostgreSQL is very telling of which database is faster for the large amount of data.

The test program was developed at the same time as the databases and to test it Anders designed a Hash table to handle the data. This is not a persistent database but for com- parison reasons test runs were done with this as well for the three smaller data sets.

First a look at the client times for the different questions at the different percentage levels. Note that the scale in the x-axis is logarithmic and not linear.

It can be seen in Figure 5.1(a) and 5.1(b) that PostgreSQL has a high overhead cost since it needs to call an external database. For that amount of data there can be no other explanation as to why the cost is so much higher. The impact of this overhead should decrease as the amount of data increases. Neo4j struggles with some of the questions when it comes to 100% of the data but Berkeley DB is still quite fast. Neither Neo4j nor Berkeley DB can keep all the information in memory and need to read from disc. This seems to affect Neo4j more than Berkeley DB, even though they both keep their data on the SSD.

If the client times are divided by the number of test runs Berkeley DB completes query 12 in less than 5 seconds, Neo4j needs almost 25 second but PostgreSQL needs as much as 115 seconds or almost 2 minutes. Even if this is a question asked once a day 2 minutes is a very long time to wait for an answer. One other interesting thing that is obvious from these graphs is that the more complex questions that is the hardest seems to be question 12, the difference between two sub-trees and question 10, returning a sub tree of A. When

21

(32)

22 Chapter 5. Results

0 2 4 6 8 10 12 14

0 100 200 300 400 500 600 700 800 900

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(a) 0.1 % of the data.

0 2 4 6 8 10 12 14

0 500 1000 1500 2000 2500 3000

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(b) 1 % of the data.

0 2 4 6 8 10 12 14

0 1000 2000 3000 4000 5000 6000 7000 8000

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(c) 10 % of the data.

0 2 4 6 8 10 12 14

0 0.5 1 1.5 2 2.5x 105

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB

(d) 100 % of the data.

Figure 5.1: Total time for the client.

comparing the times, for 10% of the data the time is almost double which means that the time spend calculating the sets is almost nothing compared to the time of getting the sub trees. For 100% the time is still only slightly more than double the time for getting one sub tree.

One interesting fact is that Berkeley DB and Neo4j almost can keep up with the Hash table. One of the main reasons for this is probably the speed of the solid state drive. With a slower hard drive this would probably not be possible, especially for Neo4j. In Figure 5.2 the client times for Neo4j, Berkeley DB and the Hash table are plotted for 10% of the data.

For question 9 it appears that the hash table is the slowest, but only just.

On the server side the times plotted are the trimmed means because they are generally somewhere in between the mean and median. The graphs are almost the same; PostgreSQL is the slowest for almost every question.

One thing that becomes apparent from these Figures is that some of the simple questions are not so simple after all. A look at question 7 in Figure 5.5 and the results are very interesting. The maximum seems to be when only 1% of the data is tested, except for Neo4j which has a top at 100% when the rest of them actually go down in time. There are some explanations for this but the most likely is that the data scales badly for this example. If the original data contains 20 unique values of the attribute in question, it drops to 0.2 for 1% and is rounded to 1. That means that a much larger portion of the data is returned

(33)

23

0 2 4 6 8 10 12 14

0 100 200 300 400 500 600 700 800

Question number

Time in seconds

Neo4J BerkeleyDB Hash table

Figure 5.2: Client times for 10% of the data without PostgreSQL

than for 10%. A closer look at the exact behaviour of the data and the databases for this question would be interresting but it probably does not influence the final result.

(34)

24 Chapter 5. Results

0 2 4 6 8 10 12 14

0 0.05 0.1 0.15 0.2 0.25 0.3 0.35

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(a) 0.1 % of the data.

0 2 4 6 8 10 12 14

0 0.2 0.4 0.6 0.8 1 1.2 1.4

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(b) 1 % of the data.

0 2 4 6 8 10 12 14

0 0.5 1 1.5 2 2.5 3 3.5 4

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(c) 10 % of the data.

0 2 4 6 8 10 12 14

0 20 40 60 80 100 120

Question number

Time in seconds

PostgreSQL Neo4J BerkeleyDB

(d) 100 % of the data.

Figure 5.3: Total time for the server.

(35)

25

0.1%0 1% 10% 100%

200 400 600 800 1000 1200

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(a) Question 1

0.1%0 1% 10% 100%

200 400 600 800 1000 1200

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(b) Question 2

0.1%0 1% 10% 100%

20 40 60 80 100 120 140 160 180 200

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(c) Question 3

0.1%0 1% 10% 100%

200 400 600 800 1000 1200

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(d) Question 4

0.1%0 1% 10% 100%

200 400 600 800 1000 1200 1400 1600 1800

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(e) Question 5

0.1%0 1% 10% 100%

1000 2000 3000 4000 5000 6000 7000 8000 9000

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(f) Question 6

Figure 5.4: Client times for question 1-6

(36)

26 Chapter 5. Results

0.1%0 1% 10% 100%

500 1000 1500 2000 2500 3000

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

Figure 5.5: Total time for the client for question 7 at different amounts of data

(37)

27

0.1%0 1% 10% 100%

500 1000 1500

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(a) Question 8

0.1%0 1% 10% 100%

1000 2000 3000 4000 5000 6000 7000 8000 9000

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(b) Question 9

0.1%0 1% 10% 100%

2 4 6 8 10 12x 104

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(c) Question 10

0.1%0 1% 10% 100%

10 20 30 40 50 60

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(d) Question 11

0.1%0 1% 10% 100%

0.5 1 1.5 2 2.5x 105

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(e) Question 12

0.1%0 1% 10% 100%

500 1000 1500 2000 2500 3000 3500

Amount of data

Time in seconds

PostgreSQL Neo4J BerkeleyDB Hash table

(f) Question 13

Figure 5.6: Client times for question 8-13

(38)

28 Chapter 5. Results

(39)

Chapter 6

Conclusions

In this paper a question was asked; is there any database that can handle the amount of data that Tieto have and how good can it get? To answer this question it was necessary to take a look at what architectures that exist today and find some different databases that could do the job. Based on the nature of the data it became clear that one should be a graph database and Neo4j was chosen because it considered to be one of the best on the market.

The relational database was based on the fact that is already existed in the company and that it is one of the fastest relational databases available. A third and completely different database was needed and Berkeley DB is a key value store that had all the qualities.

All three were implemented as a Web service and their performance was measured. The results were pretty clear; the database that is the best at handling the data is Berkeley DB, even for the questions that are closely connected to the graphical aspect of the data. This was a surprising result especially that it was faster even for the more graphical questions.

Even though it data fits the graphical model the best Neo4j just was not fast enough to be able to use its advantage.

There is also the problem with the maturity of the product. The first version of Neo4j was released in February of 2010, version 1.1 half a year later and in December of 2010 yet another version. Neo4j needs time to mature and become a more stable product before suits companies such as Tieto.

6.1 Future work

The results are promising and there is definitely worth a continued development of the Berkeley DB part of the solution. Even though there exist a solution today it is not optimal and at the rate the data is growing Tieto may find themselves in trouble a lot faster than they anticipate. The real data have some properties that are excluded from this first test to make the task a little easier. A good first step would be to identify these and start implementing them as well to see if the results still hold.

29

(40)

30 Chapter 6. Conclusions

(41)

Chapter 7

Acknowledgements

I would like to start by thanking my supervisor at Tieto, Anders Martinsson for all his support and help. Without him this master thesis would not have existed since the whole thing was his idea. I also thank everyone at Tietos office in Ume˚a for making my workday a pleasant time.

I thank internal supervisor at the department of Computing Science at Ume˚a Universitet, Ola ˚Agren.

Last but not least I thank my husband for everything he has done to support me throw- out the entire master thesis project.

31

(42)

32 Chapter 7. Acknowledgements

(43)

References

[1] 10Gen. Mongodb. http://www.mongodb.org/, August 18 2010.

[2] Giuseppe DeCandia, Deniz Hastorun, Madan Jampani, Gunavardhan Kakulapati, Avinash Lakshman, Alex Pilchin, Swaminathan Sivasubramanian, Peter Vosshall, and Werner Vogels. Dynamo: Amazon’s highly available key-value store. In Proc. SOSP, 41:205–220, 2007.

[3] Seth Gilbert and Nancy Lynch. Brewer’s Conjecture and the Feasibility of Consistent, Available, Partition-Tolerant Web Services. ACM SIGACT News, 33, 2002.

[4] Jim Gray. The Transaction Concept: Virtues and Limitations. Proceedings of Seventh International Conference on Very Large Databases, 1981.

[5] Theo Haerder and Andreas Reuter. Principles of transaction-oriented database recov- ery. Computing Surveys, 15(4), 1983.

[6] Oracle. http://www.systomath.com/doc/BerkeleyDb-4.7/html/java/, December 6 2010.

[7] Dan Pritchett. BASE: An Acid Alternative. Queue, 6(3), 2008.

[8] Hibernating Rhinos. Raven DB. http://ravendb.net/, August 18 2010.

[9] Michael Stonebraker, Samuel Madden, Daniel J. Abadi, Stavros Harizopoulos, Nabil Hachem, and Pat Helland. The End of an Architectural Era (It’s Time for a Complete Rewrite). VLDB ’07, 2007.

[10] Mike Stonebraker, Daniel J. Abadi, Adam Batkin, Xuedong Chen, Mitch Cherniack, Miguel Ferreira, Edmond Lau, Amerson Lin, Sam Madden, Elizabeth O’Neil, Pat O’Neil, Alex Rasin, Nga Tran, and Stan Zdonik. C-Store: A Column-oriented DBMS.

VLDB, pages 553–564, 2005.

[11] Neo Technology. Neo4J, the graph database. http://neo4j.org/, December 6 2010.

[12] The Apache Software Foundation. The CouchDB Project.

http://couchdb.apache.org/, August 18 2010.

[13] Project Voldemort. Project Voldemort, A distributed database.

http://project-voldemort.com/, August 18 2010.

[14] Wikipedia. Turing award. http://en.wikipedia.org/wiki/Turing Award, October 5 2010.

33

(44)

34 REFERENCES

(45)

Appendix A

Data from test runs

Here is the raw data from the test runs. The server times are rounded to 4 significant digits.

The values for the Hash table did not fit in the table with the others and therefore it is in its own table.

A.1 Server times

PostgreSQL Neo4j Berkeley DB

mean trim median mean trim median mean trim median

Q1 13.41 13.14 12.9 0.1889 0.1657 0.1647 0.1363 0.114 0.1078 Q2 12.38 12.37 12.36 0.09073 0.09009 0.09068 0.05806 0.05725 0.05615 Q3 0.7108 0.7051 0.7035 0.0648 0.06052 0.06033 0.04722 0.04666 0.04629

Q4 82.43 81.49 68.1 3.679 3.648 2.709 3.36 3.295 2.403

Q5 53.41 53.37 53.36 8.909 8.704 8.457 9.297 9.134 8.978

Q6 298.4 297.7 297.4 18.74 18.59 18.6 16.6 16.29 15.98

Q7 326.9 326.2 326 27.47 27.22 27.29 25.53 25.16 24.6

Q8 27.97 27.89 28.13 3.619 3.575 3.563 0.421 0.4028 0.4147 Q9 32.83 32.74 32.53 0.8853 0.8656 0.8562 0.813 0.7952 0.7852 Q10 29.17 29.1 28.86 0.3765 0.3518 0.346 0.3681 0.3437 0.3003 Q11 5.288 5.285 5.408 0.06893 0.06775 0.0664 0.2815 0.2452 0.1964 Q12 59.67 59.52 59.18 0.5257 0.4977 0.5086 0.5271 0.4973 0.5486 Q13 1.722 1.715 1.713 0.09877 0.09506 0.09334 0.3445 0.3281 0.2868

Table A.1: The server times for 0.1% of the data. Time in milliseconds.

35

References

Related documents

Performance comparison of the Neo4j graph database and the Oracle relational database can also be done through time complexity analy- sis and execution plan analysis for both

Table 4-2 Query 1 Response Time Values of different entries for Traditional and Cloud Database in milliseconds

Their latest reported highway, segment, direction, position, velocity and update time are stored together with the current balance (sum of toll charges) and the toll to be

The database contains recorded sentences of actors producing smiled speech along with corresponding neutrally pronounced speech (i.e., with no spe- cific emotion expressed) as well

The protocol itself and software implementations for emitting, collecting, storing, analyzing and visualizing the Eiffel data have been developed internally within Ericsson

http://juncker.epp.eu/sites/default/files/attachments/nodes/en_01_main.pdf (accessed on 03 May, 2018) as cited in DREXL, J. Designing Competitive Markets for Industrial Data – Between

Amazon RDS database instances are basically instances of MySQL, Microsoft SQL server or Oracle database running on an Amazon’s EC2 platform. Since users do not have access to the

Our purpose was to create a web-based database solution for Drivhuset Sweden where they can input data into the database using online forms.. The objective is that all