All Projects → catedrasaes-umu → NoSQLDataEngineering

catedrasaes-umu / NoSQLDataEngineering

Licence: MIT license
NoSQL Data Engineering

Programming Languages

java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language
Xtend
68 projects
Jupyter Notebook
11667 projects
scala
5932 projects
CSS
56736 projects

Projects that are alternatives of or similar to NoSQLDataEngineering

docs
Source code of the ArangoDB online documentation
Stars: ✭ 18 (-28%)
Mutual labels:  nosql, graph-database, document-database
Orientdb
OrientDB is the most versatile DBMS supporting Graph, Document, Reactive, Full-Text and Geospatial models in one Multi-Model product. OrientDB can run distributed (Multi-Master), supports SQL, ACID Transactions, Full-Text indexing and Reactive Queries. OrientDB Community Edition is Open Source using a liberal Apache 2 license.
Stars: ✭ 4,394 (+17476%)
Mutual labels:  nosql, graph-database, document-database
Arangodb
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.
Stars: ✭ 11,880 (+47420%)
Mutual labels:  nosql, graph-database, document-database
System Runtime
A JavaScript library that runs systems
Stars: ✭ 83 (+232%)
Mutual labels:  schema, nosql
Kivik
Kivik provides a common interface to CouchDB or CouchDB-like databases for Go and GopherJS.
Stars: ✭ 200 (+700%)
Mutual labels:  couchdb, nosql
Sleekdb
Pure PHP NoSQL database with no dependency. Flat file, JSON based document database.
Stars: ✭ 450 (+1700%)
Mutual labels:  schema, nosql
Ravendb
ACID Document Database
Stars: ✭ 2,870 (+11380%)
Mutual labels:  nosql, document-database
Kitura-CouchDB
CouchDB adapter for Kitura
Stars: ✭ 50 (+100%)
Mutual labels:  couchdb, nosql
Mongoeye
Schema and data analyzer for MongoDB written in Go.
Stars: ✭ 113 (+352%)
Mutual labels:  schema, nosql
Sessel
Document RDFizer for CouchDB
Stars: ✭ 22 (-12%)
Mutual labels:  couchdb, nosql
Rxdb
🔄 A client side, offline-first, reactive database for JavaScript Applications
Stars: ✭ 16,670 (+66580%)
Mutual labels:  couchdb, nosql
NoSE
👃 Automated schema design for NoSQL applications
Stars: ✭ 25 (+0%)
Mutual labels:  schema, nosql
pocket-cms
☁️ A pocket sized CMS written for nodejs
Stars: ✭ 13 (-48%)
Mutual labels:  schema, nosql
Sql Boot
Advanced REST-wrapper for your SQL-queries (actually not only SQL)
Stars: ✭ 51 (+104%)
Mutual labels:  schema, nosql
migrana
Migrana is a Datomic migration tool that gives you the control over how your Datomic database evolves.
Stars: ✭ 22 (-12%)
Mutual labels:  schema, schema-inference
framework
Solu Framework is a full featured, ORM-backed, isomorphic framework using RPython, Pouch/CouchDB and React.
Stars: ✭ 20 (-20%)
Mutual labels:  couchdb, nosql
Couchdb Net
EF Core-like CouchDB experience for .NET!
Stars: ✭ 50 (+100%)
Mutual labels:  couchdb, nosql
Nodbi
Document DBI connector for R
Stars: ✭ 56 (+124%)
Mutual labels:  couchdb, nosql
Avancedb
An in-memory database based on the CouchDB REST API and containing the CouchDB Futon and Fauxton web sites
Stars: ✭ 161 (+544%)
Mutual labels:  couchdb, nosql
Mongodb Quickstart Course
Course demos and handout material for Talk Python's MongoDB Quickstart course
Stars: ✭ 220 (+780%)
Mutual labels:  nosql, document-database

NoSQLDataEngineering

Warning: This repository stores previous versions of all the projects available to infer a schema from an Aggregate-oriented NoSQL database.

The new, up-to-date repository with U-Schema, inference and engineering processes is stored in our ModelUM GitHub

A NoSQL schema (now known as a U-Schema) is a schema used to define which data and in which format is being stored in a NoSQL database. This schema is not explicitly defined but inferred by a data-oriented infererence process.

Table of contents








The Athena language

For an extended reference of the Athena language please visit https://modelum.github.io/tools.html

The Orion language

For an extended reference of the Orion language please visit https://modelum.github.io/tools.html

Schema models

Projects: es.um.nosql.examples, es.um.nosql.orchestrator.test TODO...

Inference process

The inference process assumes the following initial scenario:

  • A document-based NoSQL database is running. At the moment supported databases are MongoDB and CouchDB. If this requirement is not met or your data is in another format, maybe this will help you.
  • The database must be divided into several tables or collections or each object must contain a type attribute indicating its collection. Each object must also contain a unique _id attribute.
  • The user has installed the Eclipse Modeling Framework (EMF, http://www.eclipse.org/modeling/emf/)

The following projects are needed to execute the inference process:

Some examples of the inference process may be found on the es.um.nosql.orchestrator.test project. The process is resumed as follows:

  • First of all the NoSQL import project is used and a database importer is created. Then a convenient method is used to infer from the database a minimum set of objects describing the existing versions:
    System.out.println("Starting inference...");
    MongoDBImport inferrer = new MongoDBImport();
    JsonArray jArray = inferrer.mapRed2Array(MONGODB_IP, TABLENAME, MONGODB_MAPREDUCE_FOLDER);
    System.out.println("Inference finished.");
    
  • Then the Json2DBSchema project is used, and the result of the last step is supplied as an input. In our case we will commonly use a JsonArray with the minimum objects from the last step as an input:
    System.out.println("Starting BuildNoSQLSchema...");
    BuildNoSQLSchema builder = new BuildNoSQLSchema();
    builder.buildFromGsonArray(TABLENAME, jArray, OUTPUT_MODEL_NAME);
    
  • The result of the inference process will be a NoSQLSchema saved in the OUTPUT_MODEL_NAME route.
  • Now this model may be visualized or used to generate some code using any other project from this repository.

NoSQL Schema metamodel

The projects involved in the NoSQL Schema metamodel definition are the following ones:

  • es.um.nosql.s13e: This projects stores the metamodel definition in an ecore file, stored in model/nosqlschema.ecore. It also contains the generated java classes for this metamodel, as well as some utilities such as a Model loader used to load model definitions in a XMI file.
  • es.um.nosql.s13e.edit and es.um.nosql.s13e.editor: These projects are used to define a generated editor in order to manipulate NoSQL schema models with the Ecore interface.

The most important elements of this projects are, apart from the metamodel definition, the Model loader, which will be used in several other projects to start some processes from a model file located somewhere in the file system. It also contains a PrettyPrinter class which can take a NoSQL schema model and print it to the standard input in a human-readable way.

The NoSQL schema metamodel


  • The NoSQLSchema metamodel has NoSQLSchema as a root element with a certain name and containing several Entities.
  • An Entity describes an object of the real world such as Movie, Prize, Director or Criticism. It contains, at the same time, several version definitions.
  • An EntityVersion is a certain version of an Entity, with an identifier, a count attribute (indicating how many objects in the bd correspond to this version) and a boolean root attribute, indicating if this version is a root element or is embedded into some other object. An EntityVersion may contain several properties.
  • An Attribute is a kind of Property with a name and an associated type. This type may be at the same time a Primitive type such as a String, Number or Boolean, or a Tuple containing several Tuples and Primitive types inside of it.
  • A Reference is a kind of Property with a cardinality, a name and is associated with an Entity. This way an object inside a database may be associated with another object by pointing to its id on this field.
  • An Aggregate is a kind of Property with a cardinality, a name and potentially several associated EntityVersions. This way an object may embed several other objects inside of it.


In the image above there is an example of a NoSQLSchema model based on a 'Movies' domain. It is divided into several parts:

  • Entity Movie: With three EntityVersions, each one of them containing several Attributes, References and Aggregates. Some of these references are associated with Director, and some aggregations embed other entity versions such as Criticism.
  • Entity Director: Divided in two versions with references to Movie.
  • Entity Criticism: Divided in two versions with several simple Attributes of Primitive Type.
  • Entity Rating: With just one entity version and a couple of string Attributes.
  • Entity Prize: With another entity version, and a couple Attributes, being one of them a Tuple.

A NoSQLSchema model may be obtained by aplying the inference process described here. Once a NoSQLSchema model is obtained, it may be used for several things:

  • It can be visualized by using the NoSQL Schema visualization tool (link)
  • It can be used to generate a differentiation model used to classify objects and visualize them in D3.js (link)
  • It can be used to generate a Decision tree to effectively classify objects of this database. Projects related are 'Entity Differentiation'(link) and 'Decision tree'(link)
  • ...

NoSQL import

This project is aimed to import JSON data from a NoSQL database. It is provided with a MapReduce process and applies this process to the given database. As a result of the MapReduce process it obtains a subset of representative database objects which describes all the entities and versions found on that database. It supports MongoDB and CouchDB databases, but this list will be updated on the near future with more document based databases. As an input for this project to work the user needs to provide the following inputs:

  • A fully working MongoDB or CouchDB database with some data on it.
  • A database name to which the process will infer representative JSON objects and apply the MapReduce process.
  • A MapReduce folder containing a map.js file and a reduce.js file. These files contain JavaScript code, they may be found on the corresponding folder and are not likely to change.


An example of its usage is just based on the creation of a MongoDB/CouchDBImport object and an execution of a suitable method. The process goes as follow:

  • A MongoDB/CouchDBImport object is created and there are a couple of map.js and reduce.js on a folder.
  • The created object will apply the MapReduce files to a given database and extract a minimum representation of the Json objects stored on the database.
  • The object now will apply an homogeneization to to each object in order to remove unnecessary attributes (such as _rev, _id, etc).
  • The object will finally apply the desired output format and return the result to the client.

The Java project involved in the NoSQL import project is the following one:

  • es.um.nosql.s13e.nosqlimport: This project contains a definition of two database importers able to interact with MongoDB and CouchDB. It also contains some helper classes in order to return a suitable output as a Stream<JsonObject>, JsonArray or a Json file which will be used on the schema extraction process (see here). As more databases are supported new classes will be added to this project.

Json to DBSchema

TODO:


Database import

This project is used to fill a database with raw data from a file. It may be not necessary if the input for the inference process is an already filled database, but in some cases the user will have just a JSON, XML or CSV file, and so this project might come handy to import the relevant files into a database.

As an example of the usage the user may check the Main class. The process goes as follow:

  • A DbController object is created with a certain DbType as a parameter. This way the controller will create a client for the specified database.
  • An input method is selected by calling to a certain method of the DbController: model2Db, xml2Db or json2Db methods are given as examples.
    • The model2Db method expects a NoSQLSchema model and then it will generate random JSON information according to the given model. Then it will proceed to insert the JSON data on the database. More details may be checked on the Model2Db and JsonGenerator classes.
    • The xml2Db method makes use of the XML2Db class and expects a XML file with the following format:
      <?xml version="1.0" encoding="utf-8"?>
      <collectionName>
          <row <parameter 1>=<value 1> <parameter 2>=<value 2> ... ... <parameter N>=<value N>/>
          <row <parameter 1>=<value 1> <parameter 2>=<value 2> ... ... <parameter N>=<value N>/>
          <row <parameter 1>=<value 1> <parameter 2>=<value 2> ... ... <parameter N>=<value N>/>
      </collectionName>
      
    • The json2Db method makes use of the Json2Db class and expects a route to a JSON file as well as a database name. It will insert the content found into the database with an appropiate collection name.
    • The user will probably need to create its own interface class if the implemented ones are not enough for its requirements, but the implementation shouldn't be too difficult.
  • Now the controller will apply the input method with the given client, filling the database.


The Java project involved in the Database import project is the following one:

  • es.um.nosql.s13e.db: This project contains a definition of a database controller able to fill MongoDB and CouchDB databases given a certain XML, JSON or model file. It is also possible to implement classes to process data files into the database, if needed.

Random data generation

The purpose for this project is to provide the user a meaningful dataset of a certain volume to which he can execute queries and perform different data analyses, since sometimes the data available in a dataset is not sufficient to apply certain processes. Because of this, this project may be used to generate random data content using a NoSQLSchema model as an input file. A YAML configuration file should also be defined with certain parameters and conditions so the data generated meets certain criteria defined by the user.

The general structure of the project is as follows:


First of all a NoSQLSchema model may be defined by using the Ecore editor in Eclipse, or by inferring it from a database using the inference process described here, so there is no need to start from an inferred schema, the user may define one by himself. Then a YAML configuration file should be provided. This file contains several definitions and keys detailed just below:

The YAML configuration file

The configuration file is divided into some sections each one of them accepting several parameters:

  • input section:
    • model (REQUIRED): The input model conforming the NoSQLSchema metamodel.
    • debug: Boolean value indicating if debug messages will be printed during the execution.
    • splits (REQUIRED): The iterations in which the generation will be performed. This parameter needs to be adjusted in order to not fill all the memory available.
  • entities section:
    • versions section:
      • minInstances and maxInstances: The range of objects generated randomly for each existing version entity.
    • includeType: Boolean value which tells if a type attribute should be inserted in each object indicating the entity it belongs.
    • timestamp: The timestamp mark from where objects are being generated. Useful for evolution studies purposes.
    • dateFormat: The format in which the previous timestamp is defined, such as dd/MM/yyyy.
  • attributes section:
    • primitiveTypes section:
      • strangeTypesProbability: The probability to generate another type instead of the expected type.
      • nullProbability: The probability to generate a NULL value instead of the expected value.
      • stringType: The type of strings being generated, which may be name, name_surname, random, large, word, phrase, word_number or nonsense.
      • stringNamesFile: The file containing the names to be randomly selected.
      • stringSurnamesFile: The file containing the surnames to be randomly selected.
      • stringWordsFile: The file containing the words to be randomly selected.
      • minIntegerAllowed and maxIntegerAllowed: The range of ints to be randomly generated.
      • minDoubleAllowed and maxDoubleAllowed: The range of doubles to be randomly generated.
      • doubleDecimalsAllowed: The decimals allowed each time a double is generated.
    • tuples section:
      • minTupleElements and maxTupleElements: The range of elements being generated on each tuple.
      • strangeTypesProbability: The probability to generate another tuple type instead of the expected type.
      • nullProbability: The probability to generate a NULL value instead of the expected tuple value.
  • associations section:
    • references section:
      • minReferenceAllowed and maxReferenceAllowed: The range of elements referred in a single reference.
      • strangeTypesProbability: The probability to generate another reference type instead of the expected type.
    • aggregates section:
      • minAggregateAllowed and maxAggregateAllowed: The range of elements agregated in a single aggregation.
  • output section (AT LEAST ONE REQUIRED):
    • database: The IP in which the database is running.
    • databaseCollection: The name of the collection being inserted in the database.
    • folder: The folder to which the output should generate files.
    • console: Boolean value indicating if the output should be printed to the console.

A lot of these options are just optional, only the input model and an available output are required to be defined. This subsection will be extended on the future when more options are defined on request. An example of this file can be found in es.um.nosql.s13e.db.gen/config/config.yaml.

The project

The process is defined in several steps explained below:

  • First of all several splits are defined, and the same number of iterations are queued.
  • For each split the generation is divided into two steps:
    • The first step generates the required objects and fills them with primitive types and tuples.
    • The second step fills the references and aggregates with objects generated in that same split.
  • Finally the objects generated are stored in the selected outputs.
  • The data structures are flushed and a new split may begin.

The Java project involved in the Random data generation project is the following one:

  • es.um.nosql.s13e.db.gen: This project contains several classes to be used as POJOs for the YAML configuration file, the data generator itself and the output module in which several output modes are defined. There is also a main class and a controller used as a running example of the project.

Subtype discovery

This project is intended to analyze a U-Schema model, its entities and its variations, and create a Variation matrix from it. A variation matrix is a data structure that holds a row for each feature, and a column for each variation. Each cell is marked if a variation has a certain feature. This data structure allows us to infer strong, weak and exclusion dependencies. Once these dependencies are inferred, this project also contains a process able to connect to a MongoDB database and discover the discriminator property of a database.

This project also contains a main class that performs the whole process based on the Figure below:


The Java project involved in the Subtype discovery process project is the following one:

  • es.um.unosql.subtypes: This project the data structures necessary to analyze a U-Schema model, obtain the strong/weak/exclusion dependencies and discovery of the discriminator property.

This project is related to the following one, so please, be sure to check it out.


Schema evolution

This project is intended to analyze a U-Schema model, its entities and its variations, in order to classify variations depending on their count as outliers or non-outliers. The count attribute stores, for each variation, how many objects of that variation exist on the database. Once variations are classified then several analysis may be performed: Outliers may be transformed to non-outliers variations by proposing migrations, and non-outliers variations will be studied in the future TODO.

There are several independent processes on this project. We list and explain them below:

  • A process is presented to generate some MapReduce templates in order to launch the inference process with different options to catch the timestamp field.
  • Another process is available to generate a CSV file from an input U-Schema.
  • A third process allows the user to detect outliers and propose transformations from a U-Schema.
  • The last process takes a U-Schema model as an input, removes outliers, and then studies the remaining variations, in order to catch dependencies.

As explained, one of the generated outputs for a U-Schema model when analyzing outliers is a CSV file in which for each Entity, its count number and its timestamps are stored in columns. By doing this, it is fairly easy to create a plot in Python in which variations with their lifelines may be presented, as seen in the next Figure.


The project also contains a utility to suggest some transformations in order to make outliers dissapear, by migrating outlier variations to non-outlier variations. The criteria for this suggestions is as follows:

  • For any outlier variation, search for the non-outlier variations with most properties in common.
  • From all these non-outlier variations, select the one with less properties not in common with the outlier. This way the proposed migration will try to perform as less changes as possible to each variation. An example of these suggestions may be seen on the Figure below:


The Java project involved in the Schema evolution analysis project is the following one:

  • es.um.unosql.subtypes: This project contains some MapReduce templates to be used on the MapReduce inference process in order to extract the initial and last timestamps for each variation. It also contains the executables to extract and analyze outliers from a U-Schema model. Lastly it contains some Python utilities to create charts from an outlier CSV file. There are several Main classes, each one of them launches a certain process.

Object document mappers

TODO:


NoSQL Schema visualization

This tool is designed to represent schemas and schema versions in a friendly way using Sirius (https://eclipse.org/sirius/). Sirius is a modeling tool used to generate graphical DSLs in an easy way, but also to define a suitable representation for a given model. As a result of the inference process described above (link) a NoSQLSchema model is given, and that model is the input for the visualization process.

At the moment there are defined the following viewpoints:

  • A tree viewpoint in which all schema versions are listed as well as the entity versions (ordered alphabetically). This tree representation is divided into three branches, each one of them showing a certain aspect: A Schemabranch in which schema versions are shown ordered by the Entity to which its root EntityVersion belongs, an Inverted Index in which all the EntityVersions are listed as well as the schema versions in which they are involved, and finally a Dictionary branch in which each Entity is displayed with its EntityVersions and Properties.


  • A global schema diagram representation to visualize the Entities, EntityVersions and Properties. Each one of the elements shows a defined style. This diagram shows, in a friendly way, the same information as the last branch of the tree viewpoint.


  • Two diagram representations associated with each schema version.

  • A diagram representation associated to each Entity, as well as each element associated, in some way, with the EntityVersions of that Entity.


The projects involved in this visualization tool are the following ones:

  • es.um.nosql.s13e.design: The Sirius workbench project in which the viewpoints are defined.
  • es.um.nosql.s13e.visualization.sdk: The feature project in which the Sirius visualization plugin is stored.

However: Please keep in mind this section was developed in 2016 for a M.Sc.Thesis (found here) and since then several changes have been performed on the inference process. Because of that we have been wanting to redefine all the viewpoints available, since we now think the available viewpoints are not fully efficient on showing the information we want. For example, the viewpoints do not satisfy us when we use as an input really big models (hundreds of EntityVersions). That's why we will be redefining the implemented viewpoints and you should expect drastic changes on the viewpoints available soon(tm).


Data visualization


https://www.youtube.com/watch?v=933V5AiwAgM

This visualization tool is designed to draw different graphics representing the data classification of a NoSQL database using D3.js (https://d3js.org/). D3.js is a JavaScript library for manipulating documents based on data. As a result of the inference process described above (link) a NoSQL_Schema model is given, and HTML5/CSS3/JavaScript code is generated as an output of the visualization process.

Once the code is generated the user just needs to provide a JSON file with the database objects, and make sure that these objects have a defined id field of some kind as well as a "type" attribute indicating its type (the entity it belongs to).


The NoSQL_Schema model will then be transformed by a m2m transformation into a Version_Diff model which defines, for each version entity (and each JSON object) a collection of HasField and HasNotField defining how the version is composed, by which properties and with which types. Now a m2t transformation can be executed which in the end will generate JavaScript.


Once the m2t transformation is finished a HTML5/JS project is created with an index.html. Giving a proper JSON object collection file it is possible to classify this collection into its entities and versions and represent the results with D3.js graphics.



The project involved in this visualization tool is the following one:

  • es.um.nosql.s13e.datavisualization: Project with the Version_Diff metamodel definition. It also contains all the m2m and m2t transformations, and references the NoSQLSchema project.

Also in the NoSQLDataIndex project several examples can be found. Each example is contained in a folder with the JavaScript code already generated. To visualize each example, just open the index.html file in a web browser.

Please keep in mind this section was developed in 2016 for a M.Sc.Thesis (found here), and so it will become obsolete and need some refinements at some point.


Decision tree


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].