Skip to content

Commit

Permalink
fix some load
Browse files Browse the repository at this point in the history
Change-Id: I212395f220cd855b53b4cc937a0d531ee25b84ee
  • Loading branch information
Thearas committed Jan 24, 2025
1 parent 61860fe commit af0fb88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CREATE DATABASE IF NOT EXISTS default;
USE default;

CREATE TABLE `default.student`(
CREATE TABLE `student`(
`id` varchar(50),
`name` varchar(50),
`age` int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ LOCATION
TBLPROPERTIES (
'transient_lastDdlTime'='1685331029');

msck repair crdmm_data;
msck repair table crdmm_data;

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ parallel=$(getconf _NPROCESSORS_ONLN)
nohup /opt/hive/bin/hive --service metastore &

# wait metastore start
sleep 10s
while [[ ! $(nc -z localhost "${HMS_PORT:-9083}") ]]; do
sleep 1s
done

# create tables for other cases
# new cases should use separate dir
Expand Down

0 comments on commit af0fb88

Please sign in to comment.