Rename data-model to wherehows-data-model. (#492)

This commit is contained in:
Mars Lan 2017-05-03 12:56:02 -07:00
parent 7d07ab76b3
commit d75ae54b4b
29 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ addons:
before_script: before_script:
- mysql -u root -e 'create database if not exists wherehows' - mysql -u root -e 'create database if not exists wherehows'
- mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO 'travis'@'localhost'" - mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO 'travis'@'localhost'"
- cd data-model/DDL; mysql -u root -D wherehows < create_all_tables_wrapper.sql; cd ../.. - cd wherehows-data-model/DDL; mysql -u root -D wherehows < create_all_tables_wrapper.sql; cd ../..
- sleep 5 - sleep 5
after_success: after_success:

View File

@ -63,7 +63,7 @@ Want help? Check out the [Gitter chat room][GITTER] and [Google Groups][LIST]
[CON]: https://github.com/LinkedIn/Wherehows/wiki/Contributing [CON]: https://github.com/LinkedIn/Wherehows/wiki/Contributing
[VM]: https://github.com/LinkedIn/Wherehows/wiki/Quick-Start-With-VM [VM]: https://github.com/LinkedIn/Wherehows/wiki/Quick-Start-With-VM
[EXJAR]: https://github.com/LinkedIn/Wherehows/wiki/Getting-Started#download-third-party-jar-files [EXJAR]: https://github.com/LinkedIn/Wherehows/wiki/Getting-Started#download-third-party-jar-files
[DDL]: https://github.com/linkedin/WhereHows/tree/master/data-model/DDL [DDL]: https://github.com/linkedin/WhereHows/tree/master/wherehows-data-model/DDL
[DB]: https://github.com/LinkedIn/Wherehows/wiki/Getting-Started#set-up-your-database [DB]: https://github.com/LinkedIn/Wherehows/wiki/Getting-Started#set-up-your-database
[LIST]: https://groups.google.com/forum/#!forum/wherehows [LIST]: https://groups.google.com/forum/#!forum/wherehows
[GITTER]: https://gitter.im/wherehows [GITTER]: https://gitter.im/wherehows

View File

@ -10,7 +10,7 @@ jacoco {
} }
jacocoFull { jacocoFull {
excludeProject ":wherehows-backend", ":wherehows-hadoop", ':data-model', ':wherehows-etl', ':wherehows-common' excludeProject ":wherehows-backend", ":wherehows-hadoop", ':wherehows-data-model', ':wherehows-etl', ':wherehows-common'
} }
// Add the jacoco plugin to each project // Add the jacoco plugin to each project

View File

@ -1,2 +1,2 @@
include "wherehows-common", "wherehows-hadoop", "wherehows-etl", "data-model", "wherehows-backend", include "wherehows-common", "wherehows-hadoop", "wherehows-etl", "wherehows-data-model", "wherehows-backend",
"wherehows-api", "restli-client", "wherehows-web" "wherehows-api", "restli-client", "wherehows-web"

View File

@ -24,7 +24,7 @@
-- Mapping {Kafka topic => stg table} is loaded in -- Mapping {Kafka topic => stg table} is loaded in
-- wherehows-backend/app/actors/KafkaConsumerMaster.java -- wherehows-backend/app/actors/KafkaConsumerMaster.java
-- Avro schemas of the Kafka event are available in -- Avro schemas of the Kafka event are available in
-- data-model/avro -- wherehows-data-model/avro
-- staging table for Gobblin tracking event compaction -- staging table for Gobblin tracking event compaction
CREATE TABLE `stg_kafka_gobblin_compaction` ( CREATE TABLE `stg_kafka_gobblin_compaction` (

View File

@ -1,6 +1,6 @@
It is pretty easy to create all metadata tables in mysql client. It is pretty easy to create all metadata tables in mysql client.
``` ```
cd WhereHows/data-model/DDL cd WhereHows/wherehows-data-model/DDL
mysql -hlocalhost -uwherehows -pwherehows -Dwherehows < create_all_tables_wrapper.sql mysql -hlocalhost -uwherehows -pwherehows -Dwherehows < create_all_tables_wrapper.sql
``` ```