2

Today I restarted mysqoop server and now all my jobs and links seems to have gone away. Sqoop is working with a derby database :

org.apache.sqoop.repository.jdbc.url=jdbc:derby:@BASEDIR@/repository/db;create=true

Do you have any clue on how i can put them back?

jBravo
  • 873
  • 1
  • 9
  • 28
  • Do you have any more details about the Derby configuration? Specifically, what was the Derby JDBC Connection URL? – Bryan Pendleton Sep 09 '15 at 17:56
  • Perhaps the setting of BASEDIR has changed, and your old database was in a different database, while your new database is in the new location of BASEDIR. Have you tried searching your hard disk? Note that since 'create=true' was specified, Derby would have quietly created a new empty db in the new location. – Bryan Pendleton Sep 10 '15 at 13:33
  • 1
    That's it ! My base was in ~/sqoop_install_dir/@BASEDIR@/repository/. After restart, the server create a new ~/@BASEDIR@/repository. Thanks for your help. – jBravo Sep 11 '15 at 06:55
  • @BryanPendleton could you write an answer so i could close this question? – jBravo Jul 01 '16 at 10:10
  • thanks for the nudge, good to hear it helped you fix your issue! – Bryan Pendleton Jul 03 '16 at 02:13

1 Answers1

1

Perhaps the setting of BASEDIR has changed, and your old database was in a different database, while your new database is in the new location of BASEDIR.

Have you tried searching your hard disk?

Note that since 'create=true' was specified, Derby would have quietly created a new empty db in the new location.

Bryan Pendleton
  • 16,128
  • 3
  • 32
  • 56