forked from telefonicaid/fiware-cygnus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
populate_hdfs_new_encoding.sh
50 lines (46 loc) · 2.25 KB
/
populate_hdfs_new_encoding.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /bin/bash
#
# Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
#
# This file is part of fiware-cygnus (FI-WARE project).
#
# fiware-cygnus is free software: you can redistribute it and/or modify it under the terms of the GNU Affero
# General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
# fiware-cygnus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License along with fiware-cygnus. If not, see
# http://www.gnu.org/licenses/.
#
# For those usages not covered by the GNU Affero General Public License please contact with iot_support at tid dot es
#
# Author: frb
# Show the usage
if [ $# -ne 2 ]; then
echo "Usage:"
echo " populate_hdfs_new_encoding.sh <basepath> <username>"
echo "Where:"
echo " <basepath> is the absolute base path in HDFS where to populate"
echo " Warning: before populating, this path will be deleted, if existing!"
echo " <username> is the user account in HDFS owning the above base path"
exit 1
fi
# Input parameters
$basepath=$1
sudo -u $user hadoop fs -rm -r -skipTrash $basepath
sudo -u $user hadoop fs -mkdir $basepath
sudo -u $user hadoop fs -mkdir $basepath/svc/
sudo -u $user hadoop fs -mkdir $basepath/svc/svcpath/
sudo -u $user hadoop fs -mkdir $basepath/svc/svcpath/room1_room/
sudo -u $user hadoop fs -touchz $basepath/svc/svcpath/room1_room/room1_room.txt
sudo -u $user hadoop fs -mkdir $basepath/svc/svcpath/room_2_room/
sudo -u $user hadoop fs -touchz $basepath/svc/svcpath/room_2_room/room_2_room.txt
sudo -u $user hadoop fs -mkdir $basepath/svc/svc_path/
sudo -u $user hadoop fs -mkdir $basepath/svc/svc_path/room3_room/
sudo -u $user hadoop fs -touchz $basepath/svc/svc_path/room3_room/room3_room.txt
sudo -u $user hadoop fs -mkdir $basepath/svc_other/
sudo -u $user hadoop fs -mkdir $basepath/svc_other/svcpath/
sudo -u $user hadoop fs -mkdir $basepath/svc_other/svcpath/room4_room/
sudo -u $user hadoop fs -touchz $basepath/svc_other/svcpath/room4_room/room4_room.txt