Pular para o conteúdo principal

1st Workshop on Conceptual Modeling for NoSQL Data Stores, Co-located with ER Conf

Recebi do meu orientador, em 13/04/2020, essa chamada para um Workshop sobre Modelagem Conceitual voltada para NoSQL Data Stores, que será realizado no ER 2020.

*******************************************************************************

1st Workshop on Conceptual Modeling for NoSQL Data Stores,

Co-located with ER 2020 (39th International Conference on Conceptual Modeling)

November 3-6, 2020 in Vienna, Austria

*******************************************************************************

The objective of the half-day workshop CoMoNoS is to explore opportunities for conceptual modeling, addressing real-world problems that arise with NoSQL data stores (like MongoDB, Couchbase, Cassandra, Neo4J, or Google Cloud Datastore). 


In designing an application backed by a NoSQL data store, developers face specific challenges that match the strengths of the ER community.

The purpose of this workshop is to grow a community of researchers and industry practitioners working on conceptual modeling for NoSQL data stores. 


With this workshop, we hope to provide the necessary breeding ground: We are convinced that practitioners will ultimately benefit from the experience of the ER research community. At the same time, we want to provide a forum for researchers to learn about the actual pain points faced by practitioners. 

Research Topics

In the context of conceptual modeling for NoSQL data stores, the scope of the workshop includes, but is not limited to the following topics:

- Data modeling for schema-flexible or schema-free NoSQL data stores, in-cluding graph databases
- Agile modeling
- Modeling for DevOps
- Data model reverse engineering (schema extraction)
- Graph matching and graph transformation
- Unified data modeling for polystores
- Metamodeling
- Data model evolution
- Visualization of data models and data instances
- Modeling and concurrency control 

- Modeling sharding and replication strategies
- Modeling for query optimization
- Process mining
- Empirical studies and real-world use cases
- Migrating software architectures to NoSQL data store


Important Dates

- July 6, 2020: Due date for full workshop papers submission 

- July 27, 2020: Notification of paper acceptance to authors 
- August 11, 2020: Camera ready version of workshop papers

Submission


The limit for submitted papers (as well as for final, camera-ready papers) is 10 pages. Short papers have a limit of 6 pages.


More information about the workshop are available here: https://sites.google.com/view/comonos20/home and more information on the ER conference can be found here: https://er2020.big.tuwien.ac.at/

Contact

If you have questions regarding the workshop or need further information, please do not hesitate to contact the organisers uta.stoerl@h-da.demeike.klettke@uni-rostock.de or stefanie.scherzinger@uni-passau.de


Uta Stoerl, Meike Klettke and Stefanie Scherzinger

Comentários

  1. Por causa desse workshop eu escolhi o tema Data Modelling for Connected Data para realizar uma revisão sistemática da literatura (SLR) na disciplina INF2710 em 2020.2

    ResponderExcluir

Postar um comentário

Sinta-se a vontade para comentar. Críticas construtivas são sempre bem vindas.

Postagens mais visitadas deste blog

Connected Papers: Uma abordagem alternativa para revisão da literatura

Durante um projeto de pesquisa podemos encontrar um artigo que nos identificamos em termos de problema de pesquisa e também de solução. Então surge a vontade de saber como essa área de pesquisa se desenvolveu até chegar a esse ponto ou quais desdobramentos ocorreram a partir dessa solução proposta para identificar o estado da arte nesse tema. Podemos seguir duas abordagens:  realizar uma revisão sistemática usando palavras chaves que melhor caracterizam o tema em bibliotecas digitais de referência para encontrar artigos relacionados ou realizar snowballing ancorado nesse artigo que identificamos previamente, explorando os artigos citados (backward) ou os artigos que o citam (forward)  Mas a ferramenta Connected Papers propõe uma abordagem alternativa para essa busca. O problema inicial é dado um artigo de interesse, precisamos encontrar outros artigos relacionados de "certa forma". Find different methods and approaches to the same subject Track down the state of the art rese...

Aula 12: WordNet | Introdução à Linguagem de Programação Python *** com NLTK

 Fonte -> https://youtu.be/0OCq31jQ9E4 A WordNet do Brasil -> http://www.nilc.icmc.usp.br/wordnetbr/ NLTK  synsets = dada uma palavra acha todos os significados, pode informar a língua e a classe gramatical da palavra (substantivo, verbo, advérbio) from nltk.corpus import wordnet as wn wordnet.synset(xxxxxx).definition() = descrição do significado É possível extrair hipernimia, hiponimia, antonimos e os lemas (diferentes palavras/expressões com o mesmo significado) formando uma REDE LEXICAL. Com isso é possível calcular a distância entre 2 synset dentro do grafo.  Veja trecho de código abaixo: texto = 'útil' print('NOUN:', wordnet.synsets(texto, lang='por', pos=wordnet.NOUN)) texto = 'útil' print('ADJ:', wordnet.synsets(texto, lang='por', pos=wordnet.ADJ)) print(wordnet.synset('handy.s.01').definition()) texto = 'computador' for synset in wn.synsets(texto, lang='por', pos=wn.NOUN):     print('DEF:',s...

DGL-KE : Deep Graph Library (DGL)

Fonte: https://towardsdatascience.com/introduction-to-knowledge-graph-embedding-with-dgl-ke-77ace6fb60ef Amazon recently launched DGL-KE, a software package that simplifies this process with simple command-line scripts. With DGL-KE , users can generate embeddings for very large graphs 2–5x faster than competing techniques. DGL-KE provides users the flexibility to select models used to generate embeddings and optimize performance by configuring hardware, data sampling parameters, and the loss function. To use this package effectively, however, it is important to understand how embeddings work and the optimizations available to compute them. This two-part blog series is designed to provide this information and get you ready to start taking advantage of DGL-KE . Finally, another class of graphs that is especially important for knowledge graphs are multigraphs . These are graphs that can have multiple (directed) edges between the same pair of nodes and can also contain loops. The...