You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sqoop.apache.org by "Abraham Elmahrek (JIRA)" <ji...@apache.org> on 2015/04/03 22:47:53 UTC

[jira] [Created] (SQOOP-2283) Support usage of --exec and --password-alias

Abraham Elmahrek created SQOOP-2283:
---------------------------------------

             Summary: Support usage of --exec and --password-alias
                 Key: SQOOP-2283
                 URL: https://issues.apache.org/jira/browse/SQOOP-2283
             Project: Sqoop
          Issue Type: Bug
            Reporter: Abraham Elmahrek
            Assignee: Abraham Elmahrek
             Fix For: 1.4.7


Currently, passwords are being queried for even when --password-alias is provided during job creation.

https://github.com/apache/sqoop/blob/trunk/src/java/org/apache/sqoop/SqoopOptions.java#L750

{code}
  private void writePasswordProperty(Properties props) {
    if (getPasswordFilePath() != null) { // short-circuit
      putProperty(props, "db.password.file", getPasswordFilePath());
      return;
    }

    if (this.getConf().getBoolean(
      METASTORE_PASSWORD_KEY, METASTORE_PASSWORD_DEFAULT)) {
      // If the user specifies, we may store the password in the metastore.
      putProperty(props, "db.password", this.password);
      putProperty(props, "db.require.password", "false");
    } else if (this.password != null) {
      // Otherwise, if the user has set a password, we just record
      // a flag stating that the password will need to be reentered.
      putProperty(props, "db.require.password", "true");
    } else {
      // No password saved or required.
      putProperty(props, "db.require.password", "false");
    }
  }
{code}

We should be aware of `db.password.alias` and set `db.require.password` appropriately.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)