forked from D-Net/dnet-hadoop
Bug fixes
This commit is contained in:
parent
4fa750b719
commit
53ce023035
|
@ -17,7 +17,6 @@ echo "Getting file from " $SCRIPT_PATH
|
||||||
hdfs dfs -copyToLocal $SCRIPT_PATH
|
hdfs dfs -copyToLocal $SCRIPT_PATH
|
||||||
|
|
||||||
echo "Creating monitor database"
|
echo "Creating monitor database"
|
||||||
#cat step20-createMonitorDB.sql | sed s/SOURCE/$1/g | sed s/TARGET/$2/g1 > foo
|
|
||||||
cat createMonitorDB.sql | sed "s/TARGET/${TARGET}/g" | sed "s/SOURCE/${SOURCE}/g" > foo
|
cat createMonitorDB.sql | sed "s/TARGET/${TARGET}/g" | sed "s/SOURCE/${SOURCE}/g" > foo
|
||||||
hive $HIVE_OPTS -f foo
|
hive $HIVE_OPTS -f foo
|
||||||
echo "Hive shell finished"
|
echo "Hive shell finished"
|
|
@ -3,7 +3,6 @@ DROP TABLE IF EXISTS TARGET.result_new;
|
||||||
create table TARGET.result_new stored as parquet as
|
create table TARGET.result_new stored as parquet as
|
||||||
select distinct * from (
|
select distinct * from (
|
||||||
select * from SOURCE.result r where exists (select 1 from SOURCE.result_organization ro where ro.id=r.id and ro.organization in (
|
select * from SOURCE.result r where exists (select 1 from SOURCE.result_organization ro where ro.id=r.id and ro.organization in (
|
||||||
-- 'openorgs____::b8b8ca674452579f3f593d9f5e557483', -- University College Cork
|
|
||||||
'openorgs____::38d7097854736583dde879d12dacafca' -- Brown University
|
'openorgs____::38d7097854736583dde879d12dacafca' -- Brown University
|
||||||
) )) foo;
|
) )) foo;
|
||||||
|
|
||||||
|
|
|
@ -93,8 +93,6 @@
|
||||||
<job-tracker>${jobTracker}</job-tracker>
|
<job-tracker>${jobTracker}</job-tracker>
|
||||||
<name-node>${nameNode}</name-node>
|
<name-node>${nameNode}</name-node>
|
||||||
<exec>copyDataToImpalaCluster.sh</exec>
|
<exec>copyDataToImpalaCluster.sh</exec>
|
||||||
<!-- <env-var>HADOOP_USER_NAME=${wf:user()}</env-var>-->
|
|
||||||
<!-- <argument>${external_stats_db_name}</argument>-->
|
|
||||||
<argument>${monitor_db_name}</argument>
|
<argument>${monitor_db_name}</argument>
|
||||||
<argument>${hadoop_user_name}</argument>
|
<argument>${hadoop_user_name}</argument>
|
||||||
<file>copyDataToImpalaCluster.sh</file>
|
<file>copyDataToImpalaCluster.sh</file>
|
||||||
|
|
Loading…
Reference in New Issue