abhilekhsingh / gc3pie

Automatically exported from code.google.com/p/gc3pie
0 stars 0 forks source link

`gsession abort` does not abort jobs #403

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Consider the following steps (using GC3Pie "trunk"):

1. I have a session I would like to abort and kill all jobs:

    $ gstat -s stub2
    +--------------------------------+--------------------+---------+-------------------------------------+
    | JobID                          | Job name           | State   | Info                                |
    +--------------------------------+--------------------+---------+-------------------------------------+
    | GTSubControllApplication.64278 | GTSC_nS11_Nc42_7_1 | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64279 | GTSC_nS10_Nc42_7_1 | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64280 | GTSC_nS9_Nc42_7_1  | RUNNING | RUNNING at Fri Jul 19 16:40:21 2013 |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64281 | GTSC_nS8_Nc42_7_1  | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64282 | GTSC_nS7_Nc42_7_1  | RUNNING | RUNNING at Fri Jul 19 16:38:25 2013 |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    +--------------------------------+--------------------+---------+-------------------------------------+
    $ gsession abort stub2

2. However, after `gession abort`, the jobs are still alive, as testified by 
`gstat` and `gcloud`:

    $ gstat -s stub2
    +--------------------------------+--------------------+---------+-------------------------------------+
    | JobID                          | Job name           | State   | Info                                |
    +--------------------------------+--------------------+---------+-------------------------------------+
    | GTSubControllApplication.64278 | GTSC_nS11_Nc42_7_1 | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64279 | GTSC_nS10_Nc42_7_1 | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64280 | GTSC_nS9_Nc42_7_1  | RUNNING | RUNNING at Fri Jul 19 16:40:21 2013 |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64281 | GTSC_nS8_Nc42_7_1  | NEW     |                                     |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    | GTSubControllApplication.64282 | GTSC_nS7_Nc42_7_1  | RUNNING | RUNNING at Fri Jul 19 16:38:25 2013 |
    |                                | _2                 |         |                                     |
    |                                |                    |         |                                     |
    +--------------------------------+--------------------+---------+-------------------------------------+

    $ gcloud list

    ====================================
    VMs running on EC2 resource `hobbes`
    ====================================

    +------------+---------+--------------+-------------+--------------+--------------+---------+
    |     id     |  state  |  public ip   | Nr. of jobs | Nr. of cores |   image id   | keypair |
    +------------+---------+--------------+-------------+--------------+--------------+---------+
    | i-00005555 | running | 130.60.24.78 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005554 | running | 130.60.24.75 |      1      |      8       | ami-00000085 |  rmurri |
    | i-00005557 | running | 130.60.24.80 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005556 | running | 130.60.24.79 |      1      |      8       | ami-00000085 |  rmurri |
    | i-00005551 | running | 130.60.24.66 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005553 | running | 130.60.24.74 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005552 | running | 130.60.24.73 |      0      |      8       | ami-00000085 |  rmurri |
    +------------+---------+--------------+-------------+--------------+--------------+---------+

3. By converse, `gkill -A -s` does its job:

    $ gkill -s stub2 -A
    Failed canceling job 'GTSubControllApplication.64278': Job 'GTSubControllApplication.64278' not submitted.
    Sent request to cancel job 'GTSubControllApplication.64282'.
    Failed canceling job 'GTSubControllApplication.64281': Job 'GTSubControllApplication.64281' not submitted.
    Failed canceling job 'GTSubControllApplication.64279': Job 'GTSubControllApplication.64279' not submitted.
    Sent request to cancel job 'GTSubControllApplication.64280'.

    $ gstat -s stub2
    +--------------------------------+--------------------+------------+----------------------------------------+
    | JobID                          | Job name           | State      | Info                                   |
    +--------------------------------+--------------------+------------+----------------------------------------+
    | GTSubControllApplication.64278 | GTSC_nS11_Nc42_7_1 | NEW        |                                        |
    |                                | _2                 |            |                                        |
    |                                |                    |            |                                        |
    | GTSubControllApplication.64279 | GTSC_nS10_Nc42_7_1 | NEW        |                                        |
    |                                | _2                 |            |                                        |
    |                                |                    |            |                                        |
    | GTSubControllApplication.64280 | GTSC_nS9_Nc42_7_1  | TERMINATED | Cancelled. at Fri Jul 19 17:10:37 2013 |
    |                                | _2                 |            |                                        |
    |                                |                    |            |                                        |
    | GTSubControllApplication.64281 | GTSC_nS8_Nc42_7_1  | NEW        |                                        |
    |                                | _2                 |            |                                        |
    |                                |                    |            |                                        |
    | GTSubControllApplication.64282 | GTSC_nS7_Nc42_7_1  | TERMINATED | Cancelled. at Fri Jul 19 17:10:36 2013 |
    |                                | _2                 |            |                                        |
    |                                |                    |            |                                        |
    +--------------------------------+--------------------+------------+----------------------------------------+

    $ gcloud list

    ====================================
    VMs running on EC2 resource `hobbes`
    ====================================

    +------------+---------+--------------+-------------+--------------+--------------+---------+
    |     id     |  state  |  public ip   | Nr. of jobs | Nr. of cores |   image id   | keypair |
    +------------+---------+--------------+-------------+--------------+--------------+---------+
    | i-00005555 | running | 130.60.24.78 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005554 | running | 130.60.24.75 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005557 | running | 130.60.24.80 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005556 | running | 130.60.24.79 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005551 | running | 130.60.24.66 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005553 | running | 130.60.24.74 |      0      |      8       | ami-00000085 |  rmurri |
    | i-00005552 | running | 130.60.24.73 |      0      |      8       | ami-00000085 |  rmurri |
    +------------+---------+--------------+-------------+--------------+--------------+---------+

Using the EC2 backend on Hobbes.

For reference, here is the DEBUG level output of `gession abort`.  It
can be seen that nothing is done after parsing the configuration file.

    $ gsession abort stub2 -vv
    gc3.gc3utils: INFO: Starting gsession at Fri Jul 19 17:05:50 2013; invoked as '/home/rmurri/.virtualenvs/gc3pie-dev/bin/gsession abort stub2 -vv'
    gc3.gc3libs: DEBUG: Configuration.load(): File '/etc/gc3/gc3pie.conf' does not exist, ignoring.
    gc3.gc3libs: DEBUG: Configuration.load(): File '/home/rmurri/.virtualenvs/gc3pie-dev/etc/gc3/gc3pie.conf' does not exist, ignoring.
    gc3.gc3libs: DEBUG: Configuration.load(): Reading file '/home/rmurri/.gc3/gc3pie.conf' ...
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'smscg' defined by: aai_username='rmurri', cert_renewal_method='slcs', debug='0', idp='uzh.ch', name='smscg', private_credentials_copy='no', remember_password='no', type='voms-proxy', vo='smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh' defined by: debug='0', name='ssh', type='ssh', username='murri'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh_user_rmurri'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh_user_rmurri' defined by: debug='0', name='ssh_user_rmurri', type='ssh', username='rmurri'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'joel_fiddes'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'joel_fiddes' defined by: debug='0', <omissis>
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh_gc3user'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh_gc3user' defined by: debug='0', name='ssh_gc3user', type='ssh', username='gc3-user'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'hobbes'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'hobbes' defined by: architecture=set(['x86_64']), auth='joel_fiddes', debug='0', ec2_region='nova', ec2_url='http://hobbes.gc3.uzh.ch:8773/services/Cloud', enabled=True, image_id='ami-00000085', instance_type='m1.xlarge', keypair_name='rmurri', max_cores=32, max_cores_per_job=8, max_memory_per_core=Memory(14, unit=GB), max_walltime=Duration(1000, unit=h), name='hobbes', public_key='~/.ssh/id_dsa.pub', security_group_name='gc3pie_ssh', security_group_rules='tcp:22:22:0.0.0.0/0, icmp:-1:-1:0.0.0.0/0', type='ec2+shellcmd', user_data='', vm_auth='ssh_gc3user', vm_pool_max_size='15'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'localhost'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'localhost' defined by: architecture=set(['x86_64']), auth='none', debug='0', enabled=False, frontend='localhost', max_cores=10, max_cores_per_job=2, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(8, unit=h), name='localhost', transport='local', type='shellcmd'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'smscg_arc1'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'smscg_arc1' defined by: arc_ldap='INDEX:ARC0:ldap://giis.smscg.ch:2135/o=grid/mds-vo-name=Switzerland', architecture=set(['x86_64', 'i686']), auth='smscg', debug='0', enabled=False, max_cores=4000, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(24, unit=h), name='smscg_arc1', type='arc1'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'smscg' defined by: arc_ldap='ldap://giis.smscg.ch:2135/o=grid/mds-vo-name=Switzerland', architecture=set(['x86_64', 'i686']), auth='smscg', debug='0', enabled=False, max_cores=4000, max_cores_per_job=256, max_memory_per_core=Memory(4, unit=GB), max_walltime=Duration(24, unit=h), name='smscg', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'gordias'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'gordias' defined by: arc_ldap='ldap://gordias.unige.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='gordias.unige.ch', max_cores=256, max_cores_per_job=32, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(12, unit=h), name='gordias', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'idgc3grid01'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'idgc3grid01' defined by: arc_ldap='ldap://idgc3grid01.uzh.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='idgc3grid01.uzh.ch', gamess_location='/export/apps/gamess-2010R3', max_cores=320, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(99999, unit=h), name='idgc3grid01', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'lhep'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'lhep' defined by: arc_ldap='ldap://ce.lhep.unibe.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='ce.lhep.unibe.ch', max_cores=479, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(800, unit=h), name='lhep', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'vitalit'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'vitalit' defined by: arc_ldap='ldap://globus.vital-it.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='globus.vital-it.ch', max_cores=1000, max_cores_per_job=32, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(24, unit=h), name='vitalit', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'wsl'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'wsl' defined by: arc_ldap='ldap://hera.wsl.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='hera.wsl.ch', max_cores=272, max_cores_per_job=128, max_memory_per_core=Memory(3, unit=GB), max_walltime=Duration(24, unit=h), name='wsl', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'schroedinger'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'schroedinger' defined by: accounting_delay='150s', architecture=set(['x86_64']), auth='ssh', debug='0', default_pe='parastation', enabled=False, frontend='idesl4-g.uzh.ch', max_cores=512, max_cores_per_job=1024, max_memory_per_core=Memory(24, unit=GB), max_walltime=Duration(3, unit=day), name='schroedinger', transport='ssh', type='sge', zods_prologue='/home/rmurri/.gc3/zods_pre.sh'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'ocikbpra'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'ocikbpra' defined by: architecture=set(['i686']), auth='ssh', debug='0', enabled=False, frontend='ocikbpra.uzh.ch', gamess_location='/share/apps/gamess', max_cores=8, max_cores_per_job=20, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(99999, unit=h), name='ocikbpra', transport='ssh', type='sge', walltime='2'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'brutus'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'brutus' defined by: architecture=set(['x86_64']), auth='ssh_user_rmurri', debug='0', enabled=False, frontend='brutus.ethz.ch', max_cores=8192, max_cores_per_job=1024, max_memory_per_core=Memory(3, unit=GB), max_walltime=Duration(72, unit=h), name='brutus', transport='ssh', type='lsf'.
    gc3.gc3libs: INFO: Dropping computational resource 'smscg' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'gordias' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'wsl' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'idgc3grid01' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'schroedinger' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'vitalit' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'smscg_arc1' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: DEBUG: Creating resource 'hobbes' defined by: architecture=set(['x86_64']), auth='joel_fiddes', debug='0', ec2_region='nova', ec2_url='http://hobbes.gc3.uzh.ch:8773/services/Cloud', enabled=True, image_id='ami-00000085', instance_type='m1.xlarge', keypair_name='rmurri', max_cores=32, max_cores_per_job=8, max_memory_per_core=Memory(14, unit=GB), max_walltime=Duration(1000, unit=h), name='hobbes', public_key='~/.ssh/id_dsa.pub', security_group_name='gc3pie_ssh', security_group_rules='tcp:22:22:0.0.0.0/0, icmp:-1:-1:0.0.0.0/0', type='ec2+shellcmd', user_data='', vm_auth='ssh_gc3user', vm_pool_max_size='15'.
    gc3.gc3libs: INFO: Computational resource 'hobbes' initialized successfully.
    gc3.gc3libs: DEBUG: Checking auth: EC2Auth
    gc3.gc3libs: DEBUG: Configuration.load(): File '/etc/gc3/gc3pie.conf' does not exist, ignoring.
    gc3.gc3libs: DEBUG: Configuration.load(): File '/home/rmurri/.virtualenvs/gc3pie-dev/etc/gc3/gc3pie.conf' does not exist, ignoring.
    gc3.gc3libs: DEBUG: Configuration.load(): Reading file '/home/rmurri/.gc3/gc3pie.conf' ...
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'smscg' defined by: aai_username='rmurri', cert_renewal_method='slcs', debug='0', idp='uzh.ch', name='smscg', private_credentials_copy='no', remember_password='no', type='voms-proxy', vo='smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh' defined by: debug='0', name='ssh', type='ssh', username='murri'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh_user_rmurri'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh_user_rmurri' defined by: debug='0', name='ssh_user_rmurri', type='ssh', username='rmurri'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'joel_fiddes'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'joel_fiddes' defined by: debug='0', <omissis>
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for auth 'ssh_gc3user'.
    gc3.gc3libs: DEBUG: Config._parse(): Auth 'ssh_gc3user' defined by: debug='0', name='ssh_gc3user', type='ssh', username='gc3-user'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'hobbes'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'hobbes' defined by: architecture=set(['x86_64']), auth='joel_fiddes', debug='0', ec2_region='nova', ec2_url='http://hobbes.gc3.uzh.ch:8773/services/Cloud', enabled=True, image_id='ami-00000085', instance_type='m1.xlarge', keypair_name='rmurri', max_cores=32, max_cores_per_job=8, max_memory_per_core=Memory(14, unit=GB), max_walltime=Duration(1000, unit=h), name='hobbes', public_key='~/.ssh/id_dsa.pub', security_group_name='gc3pie_ssh', security_group_rules='tcp:22:22:0.0.0.0/0, icmp:-1:-1:0.0.0.0/0', type='ec2+shellcmd', user_data='', vm_auth='ssh_gc3user', vm_pool_max_size='15'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'localhost'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'localhost' defined by: architecture=set(['x86_64']), auth='none', debug='0', enabled=False, frontend='localhost', max_cores=10, max_cores_per_job=2, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(8, unit=h), name='localhost', transport='local', type='shellcmd'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'smscg_arc1'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'smscg_arc1' defined by: arc_ldap='INDEX:ARC0:ldap://giis.smscg.ch:2135/o=grid/mds-vo-name=Switzerland', architecture=set(['x86_64', 'i686']), auth='smscg', debug='0', enabled=False, max_cores=4000, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(24, unit=h), name='smscg_arc1', type='arc1'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'smscg'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'smscg' defined by: arc_ldap='ldap://giis.smscg.ch:2135/o=grid/mds-vo-name=Switzerland', architecture=set(['x86_64', 'i686']), auth='smscg', debug='0', enabled=False, max_cores=4000, max_cores_per_job=256, max_memory_per_core=Memory(4, unit=GB), max_walltime=Duration(24, unit=h), name='smscg', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'gordias'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'gordias' defined by: arc_ldap='ldap://gordias.unige.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='gordias.unige.ch', max_cores=256, max_cores_per_job=32, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(12, unit=h), name='gordias', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'idgc3grid01'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'idgc3grid01' defined by: arc_ldap='ldap://idgc3grid01.uzh.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='idgc3grid01.uzh.ch', gamess_location='/export/apps/gamess-2010R3', max_cores=320, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(99999, unit=h), name='idgc3grid01', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'lhep'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'lhep' defined by: arc_ldap='ldap://ce.lhep.unibe.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='ce.lhep.unibe.ch', max_cores=479, max_cores_per_job=256, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(800, unit=h), name='lhep', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'vitalit'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'vitalit' defined by: arc_ldap='ldap://globus.vital-it.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='globus.vital-it.ch', max_cores=1000, max_cores_per_job=32, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(24, unit=h), name='vitalit', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'wsl'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'wsl' defined by: arc_ldap='ldap://hera.wsl.ch:2135/o=grid/mds-vo-name=local', architecture=set(['x86_64']), auth='smscg', debug='0', enabled=False, frontend='hera.wsl.ch', max_cores=272, max_cores_per_job=128, max_memory_per_core=Memory(3, unit=GB), max_walltime=Duration(24, unit=h), name='wsl', type='arc0'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'schroedinger'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'schroedinger' defined by: accounting_delay='150s', architecture=set(['x86_64']), auth='ssh', debug='0', default_pe='parastation', enabled=False, frontend='idesl4-g.uzh.ch', max_cores=512, max_cores_per_job=1024, max_memory_per_core=Memory(24, unit=GB), max_walltime=Duration(3, unit=day), name='schroedinger', transport='ssh', type='sge', zods_prologue='/home/rmurri/.gc3/zods_pre.sh'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'ocikbpra'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'ocikbpra' defined by: architecture=set(['i686']), auth='ssh', debug='0', enabled=False, frontend='ocikbpra.uzh.ch', gamess_location='/share/apps/gamess', max_cores=8, max_cores_per_job=20, max_memory_per_core=Memory(2, unit=GB), max_walltime=Duration(99999, unit=h), name='ocikbpra', transport='ssh', type='sge', walltime='2'.
    gc3.gc3libs: DEBUG: Config._parse(): Read configuration stanza for resource 'brutus'.
    gc3.gc3libs: DEBUG: Config._parse(): Resource 'brutus' defined by: architecture=set(['x86_64']), auth='ssh_user_rmurri', debug='0', enabled=False, frontend='brutus.ethz.ch', max_cores=8192, max_cores_per_job=1024, max_memory_per_core=Memory(3, unit=GB), max_walltime=Duration(72, unit=h), name='brutus', transport='ssh', type='lsf'.
    gc3.gc3libs: INFO: Dropping computational resource 'lhep' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'ocikbpra' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'brutus' because of 'enabled=False' setting in configuration file.
    gc3.gc3libs: INFO: Dropping computational resource 'localhost' because of 'enabled=False' setting in configuration file.

Original issue reported on code.google.com by riccardo.murri@gmail.com on 19 Jul 2013 at 3:13

GoogleCodeExporter commented 9 years ago

Original comment by riccardo.murri@gmail.com on 19 Jul 2013 at 3:13