stats_wf_extensions_and_corrections #28

Merged
claudio.atzori merged 22 commits from spyros/dnet-hadoop:stats_wf_extensions_and_corrections into master 2020-07-27 16:02:04 +02:00
1 changed files with 32 additions and 26 deletions
Showing only changes of commit 63cd797aba - Show all commits

View File

@ -5,31 +5,37 @@
-- Refereed related tables/views
------------------------------------------------------
------------------------------------------------------
CREATE TABLE IF NOT EXISTS ${stats_db_name}.publication_refereed as
select substr(r.id, 4) as id, inst.refereed.value as refereed
from ${openaire_db_name}.publication r lateral view explode(r.instance) instances as inst
where r.datainfo.deletedbyinference=false;
CREATE TABLE IF NOT EXISTS ${stats_db_name}.dataset_refereed as
select substr(r.id, 4) as id, inst.refereed.value as refereed
from ${openaire_db_name}.dataset r lateral view explode(r.instance) instances as inst
where r.datainfo.deletedbyinference=false;
-- To be commented out after the following queries are adapted to
-- the new openAIRE graph schema.
-- When it is ready they should be added to the to statistic recalculation
-- for the impala tables and the shadow views
CREATE TABLE IF NOT EXISTS ${stats_db_name}.software_refereed as
select substr(r.id, 4) as id, inst.refereed.value as refereed
from ${openaire_db_name}.software r lateral view explode(r.instance) instances as inst
where r.datainfo.deletedbyinference=false;
CREATE TABLE IF NOT EXISTS ${stats_db_name}.otherresearchproduct_refereed as
select substr(r.id, 4) as id, inst.refereed.value as refereed
from ${openaire_db_name}.otherresearchproduct r lateral view explode(r.instance) instances as inst
where r.datainfo.deletedbyinference=false;
CREATE VIEW IF NOT EXISTS ${stats_db_name}.result_refereed as
select * from ${stats_db_name}.publication_refereed
union all
select * from ${stats_db_name}.dataset_refereed
union all
select * from ${stats_db_name}.software_refereed
union all
select * from ${stats_db_name}.otherresearchproduct_refereed;
-- CREATE TABLE IF NOT EXISTS ${stats_db_name}.publication_refereed as
-- select substr(r.id, 4) as id, inst.refereed.value as refereed
-- from ${openaire_db_name}.publication r lateral view explode(r.instance) instances as inst
-- where r.datainfo.deletedbyinference=false;
--
-- CREATE TABLE IF NOT EXISTS ${stats_db_name}.dataset_refereed as
-- select substr(r.id, 4) as id, inst.refereed.value as refereed
-- from ${openaire_db_name}.dataset r lateral view explode(r.instance) instances as inst
-- where r.datainfo.deletedbyinference=false;
--
-- CREATE TABLE IF NOT EXISTS ${stats_db_name}.software_refereed as
-- select substr(r.id, 4) as id, inst.refereed.value as refereed
-- from ${openaire_db_name}.software r lateral view explode(r.instance) instances as inst
-- where r.datainfo.deletedbyinference=false;
--
-- CREATE TABLE IF NOT EXISTS ${stats_db_name}.otherresearchproduct_refereed as
-- select substr(r.id, 4) as id, inst.refereed.value as refereed
-- from ${openaire_db_name}.otherresearchproduct r lateral view explode(r.instance) instances as inst
-- where r.datainfo.deletedbyinference=false;
--
-- CREATE VIEW IF NOT EXISTS ${stats_db_name}.result_refereed as
-- select * from ${stats_db_name}.publication_refereed
-- union all
-- select * from ${stats_db_name}.dataset_refereed
-- union all
-- select * from ${stats_db_name}.software_refereed
-- union all
-- select * from ${stats_db_name}.otherresearchproduct_refereed;