Closed avkoehl closed 4 years ago
quintessence_corpus (phase 1 only)
EEBO_Models (phase 1 only)
quintessence (mixed)
quintessence_corpus (phase 1 and 2)
EEBO_Models
My conclusions, correct me if I am wrong with any of this @cnagda.
@avkoehl The embeddings tables, timeseries table, topic model tables, tfidf table are updated on EEBO_Models on datasci (meaning they have phase1+2). Otherwise that all sounds right. Also just noticed I never made the topic_proportions table, is there code for that somewhere?
That's great news! Okay so all that remains to to update the topic_proportions. I will raise an issue #6
So as part of this issue I will merge quintessence and quintessence_corpus on datasci. And delete dtm_tfidf and EEBO_metadata tables from ds.
So as part of this issue I will merge quintessence and quintessence_corpus on datasci. And delete dtm_tfidf and EEBO_metadata tables from ds.
the two tables were deleted from digitalscholars EEBO_Models database.
moving Authors, Keywords, Languages, Metadata from quintessence to quintessence_corpus on datasci using this syntax alter table my_old_db.mytable rename my_new_db.mytable
alter table quintessence.Authors rename quintessence_corpus.Authors
alter table quintessence.Keywords rename quintessence_corpus.Keywords
alter table quintessence.Languages rename quintessence_corpus.Languages
alter table quintessence.Metadata rename quintessence_corpus.Metadata
Then had to drop schema quintessence. and manually deleted any files in /data/mysql/quintesssence
First got the ip address of digitalscholars. Then on datasci mysql from command line:
GRANT ALL ON quintessence_corpus.* TO digitalscholars@'169.237.102.141' IDENTIFIED BY "P@55word";
GRANT ALL ON EEBO_Models.* TO digitalscholars@'169.237.102.141' IDENTIFIED BY "P@55word";