You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2007/07/20 00:23:06 UTC

[jira] Commented: (HADOOP-1635) Keypair Name Hardcoded

    [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514027 ] 

Hadoop QA commented on HADOOP-1635:
-----------------------------------

-1, build or testing failed

2 attempts failed to build and test the latest attachment http://issues.apache.org/jira/secure/attachment/12362160/hadoop-1635.patch against trunk revision r557118.

Test results:   http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/434/testReport/
Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/434/console

Please note that this message is automatically generated and may represent a problem with the automation system and not the patch.

> Keypair Name Hardcoded
> ----------------------
>
>                 Key: HADOOP-1635
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1635
>             Project: Hadoop
>          Issue Type: Bug
>          Components: contrib/ec2
>    Affects Versions: 0.13.0, 0.13.1, 0.14.0, 0.15.0
>            Reporter: Stu Hood
>            Priority: Minor
>             Fix For: 0.13.1, 0.14.0, 0.15.0
>
>         Attachments: hadoop-1635.patch
>
>
> The keypair name is hardcoded as 'gsg-keypair'  on the
> """
> OUTPUT=`ec2-run-instances $AMI_IMAGE -k gsg-keypair`
> """
> line in 'create-hadoop-image'. And again on the 
> """
> RUN_INSTANCES_OUTPUT=`ec2-run-instances $AMI_IMAGE -n $NO_INSTANCES -g $GROUP -k $KEY_NAME -d "$NO_INSTANCES,$MASTER_HOST" | grep INSTANCE | awk '{print $2}'`
> """
> line in 'launch-hadoop-cluster'.
> The lines should read
> """
> OUTPUT=`ec2-run-instances $AMI_IMAGE -k $KEY_NAME`
> """
> and
> """
> RUN_INSTANCES_OUTPUT=`ec2-run-instances $AMI_IMAGE -n $NO_INSTANCES -g $GROUP -k $KEY_NAME -d "$NO_INSTANCES,$MASTER_HOST" | grep INSTANCE | awk '{print $2}'`
> """
> respectively.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.