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 "Stu Hood (JIRA)" <ji...@apache.org> on 2007/07/18 23:59:04 UTC

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

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
            Reporter: Stu Hood
            Priority: Minor


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 gsg-keypair`
"""
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.


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

Posted by "Stu Hood (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514368 ] 

Stu Hood commented on HADOOP-1635:
----------------------------------

Hudson was confused by a separate issue obviously... the EC2 code doesn't have any tests yet.

> 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.


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

Posted by "Tom White (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tom White updated HADOOP-1635:
------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

I've just committed this. Thanks Stu!

> 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.


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

Posted by "Stu Hood (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stu Hood updated HADOOP-1635:
-----------------------------

    Attachment: hadoop-1635.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.


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

Posted by "Stu Hood (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stu Hood updated HADOOP-1635:
-----------------------------

    Description: 
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.


  was:
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 gsg-keypair`
"""
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.



> 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
>            Reporter: Stu Hood
>            Priority: Minor
>
> 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.


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

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ 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.


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

Posted by "Stu Hood (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stu Hood updated HADOOP-1635:
-----------------------------

        Fix Version/s: 0.15.0
                       0.14.0
                       0.13.1
    Affects Version/s: 0.15.0
                       0.14.0
                       0.13.1
               Status: Patch Available  (was: Open)

Here is a patch against hadoop-trunk to fix the issue

> 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.