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...

truth makers AND truth bearers - Palestra Giancarlo no SBBD

Dando uma googada https://iep.utm.edu/truth/ There are two commonly accepted constraints on truth and falsehood:     Every proposition is true or false.         [Law of the Excluded Middle.]     No proposition is both true and false.         [Law of Non-contradiction.] What is the difference between a truth-maker and a truth bearer? Truth-bearers are either true or false; truth-makers are not since, not being representations, they cannot be said to be true, nor can they be said to be false . That's a second difference. Truth-bearers are 'bipolar,' either true or false; truth-makers are 'unipolar': all of them obtain. What are considered truth bearers?   A variety of truth bearers are considered – statements, beliefs, claims, assumptions, hypotheses, propositions, sentences, and utterances . When I speak of a fact . . . I mean the kind of thing that makes a proposition true or false. (Russe...