Skip to content

Instantly share code, notes, and snippets.

@andrewstevenson
Created September 11, 2016 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewstevenson/90367c0225204e86164a9672ec57e41f to your computer and use it in GitHub Desktop.
Save andrewstevenson/90367c0225204e86164a9672ec57e41f to your computer and use it in GitHub Desktop.
<!--suppress ALL -->
<configuration>
<property>
<name>sqoop.metastore.client.enable.autoconnect</name>
<value>true</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://localhost:3306/sqoop_metastore?createDatabaseIfNotExist=false</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>
<property>
<name>sqoop.job.storage.implementations</name>
<value>com.datamountaineer.ingestor.models.JobMetaStorage</value>
</property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment