您好,登錄后才能下訂單哦!
這篇文章主要講解了“sqoop使用mysql做為metastore的方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“sqoop使用mysql做為metastore的方法”吧!
<property>
<name>sqoop.metastore.client.enable.autoconnect</name>
<value>false</value>
<description>If true, Sqoop will connect to a local metastore
for job management when no other metastore arguments are
provided.
</description>
</property>
<property>
<name>sqoop.metastore.client.autoconnect.url</name>
<value>jdbc:mysql://<mysql-Server-IP>:<mysql-port>/sqoop?createDatabaseIfNotExist=true</value>
</property>
<property>
<name>sqoop.metastore.client.autoconnect.username</name>
<value>sqoop</value>
</property>
<property>
<name>sqoop.metastore.client.autoconnect.password</name>
<value>sqoop</value>
</property>
CREATE TABLE SQOOP_ROOT (
version INT,
propname VARCHAR(128) NOT NULL,
propval VARCHAR(256),
CONSTRAINT SQOOP_ROOT_unq UNIQUE (version, propname)
);
-- Inserted the following row (** this did the trick)
INSERT INTO
SQOOP_ROOT
VALUES(
NULL,
'sqoop.hsqldb.job.storage.version',
'0'
);
#增量導(dǎo)入
sqoop job --create job3 --meta-connect 'jdbc:mysql://172.18.1.1:3306/sqoop?user=root&password=test' -- import --connect 'jdbc:mysql://172.18.1.1:3306/test' --username 'root' --password 'test' --table 'test1' --columns 'id,name,age' --hive-import --hive-table default.jnincr1 --incremental append --check-column 'id' --last-value 0
sqoop job --meta-connect 'jdbc:mysql://172.18.1.1:3306/sqoop?user=root&password=test' --list
sqoop job --meta-connect 'jdbc:mysql://172.18.1.1:3306/sqoop?user=root&password=test' --exec job3 -- --username root --password test --append
sqoop job --create job3 --meta-connect 'jdbc:hsqldb:hsql://172.18.1.1:16000/sqoop' -- import --connect 'jdbc:mysql://172.18.1.1:3306/test' --username 'root' --password '123456' --table 'test_001' --columns 'id,name' --hive-import --hive-table default.a3 --incremental append --check-column 'id' --last-value 0
sqoop job --meta-connect 'jdbc:hsqldb:hsql://172.18.1.1:16000/sqoop' --exec job3 -verbose
此方法需要修改sqoop源碼,解決事務(wù)鎖表問題
感謝各位的閱讀,以上就是“sqoop使用mysql做為metastore的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對sqoop使用mysql做為metastore的方法這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。