aerokube / selenoid

Selenium Hub successor running browsers within containers. Scalable, immutable, self hosted Selenium-Grid on any platform with single binary.
https://aerokube.com/selenoid/latest/
Apache License 2.0
2.57k stars 322 forks source link

Multiple test cases will terminate selenoid #522

Closed kiam123 closed 6 years ago

kiam123 commented 6 years ago

I tested 20 test cases, but selenoid will terminate and I will reopen Docker.I don't know what the problem is, so I put the way I implemented it.

i upload my test case in youtube : https://youtu.be/BJVVcOfdtPg

docker-compose.yml

version: '3'

services:
  nginx:
    image: nginx:stable-alpine
    depends_on:
    - ggr
    ports:
    - 4443:4443
    restart: unless-stopped
    volumes:
    - ./etc/nginx/conf.d/ggr.conf:/etc/nginx/conf.d/ggr.conf:ro
  ggr:
    image: aerokube/ggr:1.5.5
    network_mode: bridge
    ports:
      - 5555:5555
    restart: unless-stopped
    volumes:
      - ./etc/grid-router:/etc/grid-router:ro
    command: ["-listen", ":5555"]
  ggr-ui:
    image: aerokube/ggr-ui:1.1.1
    network_mode: bridge
    depends_on:
      - ggr
    ports:
      - 8888:8888
    volumes:
      - ./etc/grid-router/quota:/etc/grid-router/quota:ro
  selenoid-ui-1:
    image: "aerokube/selenoid-ui:1.6.1"
    network_mode: bridge
    depends_on:
      - ggr-ui
    links:
      - ggr-ui
    ports:
      - "8088:8080"
    command: ["--selenoid-uri", "http://ggr-ui:8888"]
  selenoid:
    image: "aerokube/selenoid:1.7.1"
    network_mode: bridge
    ports:
      - "8082:4444"
    volumes:
      - ".:/etc/selenoid/" # assumed current dir contains browsers.json
      - "/var/run/docker.sock:/var/run/docker.sock"
    command: ["-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"]
  selenoid-ui-2:
    image: "aerokube/selenoid-ui:1.6.1"
    network_mode: bridge
    depends_on:
      - selenoid
    links:
      - selenoid
    ports:
      - "8080:8080"
    command: ["--selenoid-uri", "http://selenoid:4444"]  

browsers.json

{
    "chrome": {
        "default": "67.0",
        "versions": {
            "66.0": {
                "image": "selenoid/vnc_chrome:66.0",
                "port": "4444",
                "path": "/"
            },
            "67.0": {
                "image": "selenoid/vnc_chrome:67.0",
                "port": "4444",
                "path": "/"
            }
        }
    },
    "firefox": {
        "default": "61.0",
        "versions": {
            "60.0": {
                "image": "selenoid/vnc_firefox:60.0",
                "port": "4444",
                "path": "/wd/hub"
            },
            "61.0": {
                "image": "selenoid/vnc_firefox:61.0",
                "port": "4444",
                "path": "/wd/hub"
            }
        }
    },
    "opera": {
        "default": "54.0",
        "versions": {
            "53.0": {
                "image": "selenoid/vnc_opera:53.0",
                "port": "4444",
                "path": "/"
            },
            "54.0": {
                "image": "selenoid/vnc_opera:54.0",
                "port": "4444",
                "path": "/"
            }
        }
    },
    "android": {
        "default": "8.1",
        "versions": {
            "8.1": {
                "image": "selenoid/android:8.1",
                "port": "4444",
                "path": "/wd/hub"
            }
        }
    }
}

test.xml

<qa:browsers xmlns:qa="urn:config.gridrouter.qatools.ru">
 <browser name="chrome" defaultVersion="67.0">
    <version number="67.0">
        <region name="Taiwan">
            <host name="my_selenoid_server_ip" port="8082" count="50"/>
        </region>
    </version>
</browser>
<browser name="internet explorer" defaultVersion="11">
    <version number="11">
        <region name="Taiwan">
            <host name="my_selenoid_server_ip" port="4444" count="1"/>
        </region>
    </version>
</browser>
<browser name="MicrosoftEdge" defaultVersion="42">
    <version number="42">
        <region name="Taiwan">
            <host name="my_selenoid_server_ip" port="4444" count="1"/>
        </region>
    </version>
</browser>
</qa:browsers>

ggr.conf

upstream ggr {
  server my_selenoid_server_ip:5555 weight=10  max_fails=3 fail_timeout=10s;
}
server {

  listen 4443 default_server;
  listen [::]:4443 default_server;

  location / {
    proxy_pass http://ggr;
  }

}
aandryashin commented 6 years ago

As I can see you are trying to run 20 test cases in parallel with enabled video recorder, what kind of hardware you are using to run selenoid? could you please check load average on that machine when tests are running? also check recommended docker settings: https://aerokube.com/selenoid/latest/#_recommended_docker_settings

сб, 11 авг. 2018 г. в 12:36, kr lee notifications@github.com:

I tested 20 test cases, but selenoid will terminate and I will reopen Docker.I don't know what the problem is, so I put the way I implemented it.

i upload my test case in youtube : https://youtu.be/BJVVcOfdtPg

docker-compose.yml

version: '3'

services: nginx: image: nginx:stable-alpine depends_on:

  • ggr ports:
  • 4443:4443 restart: unless-stopped volumes:
  • ./etc/nginx/conf.d/ggr.conf:/etc/nginx/conf.d/ggr.conf:ro ggr: image: aerokube/ggr:1.5.5 network_mode: bridge ports:
    • 5555:5555 restart: unless-stopped volumes:
    • ./etc/grid-router:/etc/grid-router:ro command: ["-listen", ":5555"] ggr-ui: image: aerokube/ggr-ui:1.1.1 network_mode: bridge depends_on:
    • ggr ports:
    • 8888:8888 volumes:
    • ./etc/grid-router/quota:/etc/grid-router/quota:ro selenoid-ui-1: image: "aerokube/selenoid-ui:1.6.1" network_mode: bridge depends_on:
    • ggr-ui links:
    • ggr-ui ports:
    • "8088:8080" command: ["--selenoid-uri", "http://ggr-ui:8888"] selenoid: image: "aerokube/selenoid:1.7.1" network_mode: bridge ports:
    • "8082:4444" volumes:
    • ".:/etc/selenoid/" # assumed current dir contains browsers.json
    • "/var/run/docker.sock:/var/run/docker.sock" command: ["-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"] selenoid-ui-2: image: "aerokube/selenoid-ui:1.6.1" network_mode: bridge depends_on:
    • selenoid links:
    • selenoid ports:
    • "8080:8080" command: ["--selenoid-uri", "http://selenoid:4444"]

browsers.json

{ "chrome": { "default": "67.0", "versions": { "66.0": { "image": "selenoid/vnc_chrome:66.0", "port": "4444", "path": "/" }, "67.0": { "image": "selenoid/vnc_chrome:67.0", "port": "4444", "path": "/" } } }, "firefox": { "default": "61.0", "versions": { "60.0": { "image": "selenoid/vnc_firefox:60.0", "port": "4444", "path": "/wd/hub" }, "61.0": { "image": "selenoid/vnc_firefox:61.0", "port": "4444", "path": "/wd/hub" } } }, "opera": { "default": "54.0", "versions": { "53.0": { "image": "selenoid/vnc_opera:53.0", "port": "4444", "path": "/" }, "54.0": { "image": "selenoid/vnc_opera:54.0", "port": "4444", "path": "/" } } }, "android": { "default": "8.1", "versions": { "8.1": { "image": "selenoid/android:8.1", "port": "4444", "path": "/wd/hub" } } } }

test.xml

ggr.conf upstream ggr { server my_selenoid_server_ip:5555 weight=10 max_fails=3 fail_timeout=10s; } server { listen 4443 default_server; listen [::]:4443 default_server; location / { proxy_pass http://ggr; } } — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub , or mute the thread .
vania-pooh commented 6 years ago

@kiam123 what's inside Selenoid logs? Also today we released version 1.7.2 which fixes a panic issue. Please try with this release.

kiam123 commented 6 years ago

@vania-pooh can not to see, because docker is terminated and needs to be reopened

kiam123 commented 6 years ago

@vania-pooh ok, now i go to download

kiam123 commented 6 years ago

@vania-pooh same the problem https://www.youtube.com/watch?v=3utY9FEQChs&feature=youtu.be

$ docker ps image

@aandryashin I don't know how to set this configuration on windows. image

Below is the status of my server : $ docker info | grep Storage image

$ docker info image

ipconfig -all ↓↓↓↓↓↓↓↓↓Translate↓↓↓↓↓↓↓↓

Windows IP Configuration

   Host Name . . . . . . . . . . . . .: xxxxx_Server
   Primary Dns Suffix  . . . . . . . . . .:
   Node Type . . . . . . . . . . . . .: Hybrid
   IP Routing Enabled . . . . . . . . . . . : No
   WINS Proxy Enabled . . . . . . . . . : No

Ethernet adapter vEthernet (DockerNAT):

   Connection-specific DNS Suffix . . . . . . . . :
   Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter #2
   Physical Address . . . . . . . . . . . . .: 00-15-5D-96-41-0E
   DHCP Enabled . . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . . . . . . . .: Yes
   IPv4 Address . . . . . . . . . . . . : 10.0.75.1(Preferred)
   Subnet Mask . . . . . . . . . . . .: 255.255.255.0
   Default Gateway . . . . . . . . . . . . .:
   DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter VirtualBox Host-Only Network #4:

   Connection-specific DNS Suffix . . . . . . . . :
   Description . . . . . . . . . . . . . . .: VirtualBox Host-Only Ethernet Adapter #4
   Physical Address . . . . . . . . . . . . .: 0A-00-27-00-00-18
   DHCP Enabled . . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . . . . . . . .: Yes
   Link-local IPv6 Address . . . . . . . : fe80::8c49:5012:6da9:6cc3%24(Preferred)
   IPv4 Address . . . . . . . . . . . . : 192.168.56.1(Preferred)
   Subnet Mask . . . . . . . . . . . .: 255.255.255.0
   Default Gateway . . . . . . . . . . . . .:
   DHCPv6 IAID . . . . . . . . . . . : 420085799
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF
   DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter Ethernet network:

   Connection-specific DNS Suffix . . . . . . . . :
   Description . . . . . . . . . . . . . . .: Intel(R) 82579LM Gigabit Network Connection
   Physical Address . . . . . . . . . . . . .: 60-A4-4C-24-B2-BF
   DHCP Enabled . . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . . . . . . . .: Yes
   Link-local IPv6 Address . . . . . . . : My IPv6 Address(Preferred)
   IPv4 Address . . . . . . . . . . . . : My IPv4 Address(Preferred)
   Subnet Mask . . . . . . . . . . . .: 255.255.255.0
   Default Gateway . . . . . . . . . . . . .: fe80::257:d2ff:feba:dd77%10
                                       My Default Gateway
   DHCPv6 IAID . . . . . . . . . . . : 39887948
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF
   DNS Servers . . . . . . . . . . . .: DNS Server
                                       DNS Server
   NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter vEthernet (default switch):

   Connection-specific DNS Suffix . . . . . . . . :
   Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter
   Physical Address . . . . . . . . . . . . .: 02-15-8F-39-8D-E7
   DHCP Enabled . . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . . . . . . . .: Yes
   Link-local IPv6 Address . . . . . . . : fe80::9190:899d:5218:6fc1%22(Preferred)
   IPv4 Address . . . . . . . . . . . . : 172.25.150.65(Preferred)
   Subnet Mask . . . . . . . . . . . .: 255.255.255.240
   Default Gateway . . . . . . . . . . . . .:
   DHCPv6 IAID . . . . . . . . . . . : 201332061
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF
   DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip . . . . . . . .: prevent

Ethernet adapter vEthernet (nat):

   Connection-specific DNS Suffix . . . . . . . . :
   Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter #3
   Physical Address . . . . . . . . . . . . .: 00-15-5D-6A-BD-F9
   DHCP Enabled . . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . . . . . . . .: Yes
   Link-local IPv6 Address . . . . . . . : fe80::c581:377b:3299:9f77%11(Preferred)
   IPv4 Address . . . . . . . . . . . . : 172.27.176.1(Preferred)
   Subnet Mask . . . . . . . . . . . .: 255.255.240.0
   Default Gateway . . . . . . . . . . . . .:
   DHCPv6 IAID . . . . . . . . . . . : 805311837
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF
   DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip . . . . . . . .: Enabled
aandryashin commented 6 years ago

Did you tried to run one test? Is it working?

сб, 11 авг. 2018 г. в 20:39, kr lee notifications@github.com:

@vania-pooh https://github.com/vania-pooh same the problem https://www.youtube.com/watch?v=3utY9FEQChs&feature=youtu.be

$ docker ps [image: image] https://user-images.githubusercontent.com/14953180/43993118-62d3c278-9dbb-11e8-9db5-fcf56d266177.png

@aandryashin https://github.com/aandryashin I don't know how to set this configuration on windows. [image: image] https://user-images.githubusercontent.com/14953180/43993201-6b5bf504-9dbc-11e8-85f4-af0bb344da2d.png

Below is the status of my server : $ docker info | grep Storage [image: image] https://user-images.githubusercontent.com/14953180/43993126-8fbb8d7a-9dbb-11e8-9a1e-ff0467cd80ca.png

$ docker info [image: image] https://user-images.githubusercontent.com/14953180/43993441-eaacf81e-9dbf-11e8-9d24-ffed27122a0b.png

ipconfig -all ↓↓↓↓↓↓↓↓↓Translate↓↓↓↓↓↓↓↓

Windows IP Configuration

Host Name . . . . . . . . . . . . .: xxxxx_Server Primary Dns Suffix . . . . . . . . . .: Node Type . . . . . . . . . . . . .: Hybrid IP Routing Enabled . . . . . . . . . . . : No WINS Proxy Enabled . . . . . . . . . : No

Ethernet adapter vEthernet (DockerNAT):

Connection-specific DNS Suffix . . . . . . . . : Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter #2 Physical Address . . . . . . . . . . . . .: 00-15-5D-96-41-0E DHCP Enabled . . . . . . . . . . . : No Autoconfiguration Enabled . . . . . . . . . . .: Yes IPv4 Address . . . . . . . . . . . . : 10.0.75.1(Preferred) Subnet Mask . . . . . . . . . . . .: 255.255.255.0 Default Gateway . . . . . . . . . . . . .: DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1 fec0:0:0:ffff::2%1 fec0:0:0:ffff::3%1 NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter VirtualBox Host-Only Network #4:

Connection-specific DNS Suffix . . . . . . . . : Description . . . . . . . . . . . . . . .: VirtualBox Host-Only Ethernet Adapter #4 Physical Address . . . . . . . . . . . . .: 0A-00-27-00-00-18 DHCP Enabled . . . . . . . . . . . : No Autoconfiguration Enabled . . . . . . . . . . .: Yes Link-local IPv6 Address . . . . . . . : fe80::8c49:5012:6da9:6cc3%24(Preferred) IPv4 Address . . . . . . . . . . . . : 192.168.56.1(Preferred) Subnet Mask . . . . . . . . . . . .: 255.255.255.0 Default Gateway . . . . . . . . . . . . .: DHCPv6 IAID . . . . . . . . . . . : 420085799 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1 fec0:0:0:ffff::2%1 fec0:0:0:ffff::3%1 NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter Ethernet network:

Connection-specific DNS Suffix . . . . . . . . : Description . . . . . . . . . . . . . . .: Intel(R) 82579LM Gigabit Network Connection Physical Address . . . . . . . . . . . . .: 60-A4-4C-24-B2-BF DHCP Enabled . . . . . . . . . . . : No Autoconfiguration Enabled . . . . . . . . . . .: Yes Link-local IPv6 Address . . . . . . . : My IPv6 Address(Preferred) IPv4 Address . . . . . . . . . . . . : My IPv4 Address(Preferred) Subnet Mask . . . . . . . . . . . .: 255.255.255.0 Default Gateway . . . . . . . . . . . . .: fe80::257:d2ff:feba:dd77%10 My Default Gateway DHCPv6 IAID . . . . . . . . . . . : 39887948 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF DNS Servers . . . . . . . . . . . .: DNS Server DNS Server NetBIOS over Tcpip . . . . . . . .: Enabled

Ethernet adapter vEthernet (default switch):

Connection-specific DNS Suffix . . . . . . . . : Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter Physical Address . . . . . . . . . . . . .: 02-15-8F-39-8D-E7 DHCP Enabled . . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . . . . . . . .: Yes Link-local IPv6 Address . . . . . . . : fe80::9190:899d:5218:6fc1%22(Preferred) IPv4 Address . . . . . . . . . . . . : 172.25.150.65(Preferred) Subnet Mask . . . . . . . . . . . .: 255.255.255.240 Default Gateway . . . . . . . . . . . . .: DHCPv6 IAID . . . . . . . . . . . : 201332061 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1 fec0:0:0:ffff::2%1 fec0:0:0:ffff::3%1 NetBIOS over Tcpip . . . . . . . .: prevent

Ethernet adapter vEthernet (nat):

Connection-specific DNS Suffix . . . . . . . . : Description . . . . . . . . . . . . . . .: Hyper-V Virtual Ethernet Adapter #3 Physical Address . . . . . . . . . . . . .: 00-15-5D-6A-BD-F9 DHCP Enabled . . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . . . . . . . .: Yes Link-local IPv6 Address . . . . . . . : fe80::c581:377b:3299:9f77%11(Preferred) IPv4 Address . . . . . . . . . . . . : 172.27.176.1(Preferred) Subnet Mask . . . . . . . . . . . .: 255.255.240.0 Default Gateway . . . . . . . . . . . . .: DHCPv6 IAID . . . . . . . . . . . : 805311837 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-21-5E-64-03-60-A4-4C-24-B2-BF DNS Servers . . . . . . . . . . . .: fec0:0:0:ffff::1%1 fec0:0:0:ffff::2%1 fec0:0:0:ffff::3%1 NetBIOS over Tcpip . . . . . . . .: Enabled

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/aerokube/selenoid/issues/522#issuecomment-412290571, or mute the thread https://github.com/notifications/unsubscribe-auth/ABWNbeKDZJsWC_6V7p-vzj-AdnbWDgLIks5uPxa-gaJpZM4V5Gns .

kiam123 commented 6 years ago

@aandryashin I run 15 test cases, no problem

aandryashin commented 6 years ago

How many cpus on the machine that runs selenoid? We recommend run 1-2 browser session per cpu...

вс, 12 авг. 2018 г. в 13:39, kr lee notifications@github.com:

@aandryashin https://github.com/aandryashin I run 15 test cases, no problem

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/aerokube/selenoid/issues/522#issuecomment-412333943, or mute the thread https://github.com/notifications/unsubscribe-auth/ABWNbRa4pyiEivlLzpmawzXP6y1kgNEbks5uQAXIgaJpZM4V5Gns .

kiam123 commented 6 years ago

@aandryashin like this? command: ["-cpu", "1", "-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"]

version: '3'
services:
  selenoid:
    image: "aerokube/selenoid:1.7.1"
    network_mode: bridge
    ports:
      - "8082:4444"
    volumes:
      - ".:/etc/selenoid/" # assumed current dir contains browsers.json
      - "/var/run/docker.sock:/var/run/docker.sock"
    command: ["-cpu", "1", "-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"]
  selenoid-ui:
    image: "aerokube/selenoid-ui:1.6.1"
    network_mode: bridge
    depends_on:
      - selenoid
    links:
      - selenoid
    ports:
      - "8080:8080"
    command: ["--selenoid-uri", "http://selenoid:4444"]
aandryashin commented 6 years ago

I asked about hardware running selenoid. Is it bare metal with 50 cores? Most probably you hardware is overloaded with 50 containers running in parallel.

вс, 12 авг. 2018 г. в 14:33, kr lee notifications@github.com:

@aandryashin https://github.com/aandryashin like this? command: ["-cpu", "1", "-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"]

version: '3' services: selenoid: image: "aerokube/selenoid:1.7.1" network_mode: bridge ports:

  • "8082:4444" volumes:
  • ".:/etc/selenoid/" # assumed current dir contains browsers.json
  • "/var/run/docker.sock:/var/run/docker.sock" command: ["-cpu", "1", "-limit", "50","-log-output-dir", "logs/", "-session-attempt-timeout", "2m", "-service-startup-timeout", "2m"] selenoid-ui: image: "aerokube/selenoid-ui:1.6.1" network_mode: bridge depends_on:
  • selenoid links:
  • selenoid ports:
  • "8080:8080" command: ["--selenoid-uri", "http://selenoid:4444"]

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/aerokube/selenoid/issues/522#issuecomment-412336609, or mute the thread https://github.com/notifications/unsubscribe-auth/ABWNbQHcp4STN4kLy88QM1Rl_TIXlDW7ks5uQBJugaJpZM4V5Gns .

kiam123 commented 6 years ago

@aandryashin i show my hardware info and show start 20 containers cpu status System info

Item Value
OS Name Microsolf Windows 10 Pro
Version 10.0.17134 build 17134
Other OS Description Not Available
OS Manufacturer Microsolf Corporation
System Name xxxx_SERVER
System Manufacturer ASUSTek Computer INC.
System Model BM6875_BM6675_BP6375
System Type x64 PC
System SKU SKU
Processor Intel® Core(TM) i7-377- CPU @ 3.40GHz , 3401 Mhz, 4 Core(s), 8 Logic Processor
BIOS Version/Date ASUSTek COMPUTER INC. (LICENSED from AMI) 0625, 2012/12/27
SMBIOS Version 2.7
Embedded Controller Version 255.255
BIOS Mode Old Version
BaseBoard Manufacturer ASUSTeck COMPUTER INC.
BaseBoard Model Not Available
BaseBoard Name Base Board
Platform Role desktop
Secure Boot State no support
PCR7 Configuration Binding Not Possible
Windows Directory C:\WINDOWS
System Directory C:\WINDOWS\system32
Boot Device \Device\HarddiskVolume1
Locale Taiwan
Hardware Abstraction Layer Version = "10.0.17134.1"
User Name  
Time Zone  
Installed Physical Memory (RAM) 16.0 GB
Total Physical Memory 15.7 GB
Available Physical Memory 8.10 GB
Total Virtual Memory 19.1 GB
Available Virtual Memory 2.75 GB
Page File Space 3.39 GB
Page File C:\pagefile.sys
Core DMA protection close
Virtualized security running
Virtual security security necessary security attributes  
Security attributes available for virtualized security Base virtualization support, DMA protection
Virtualized security service has been set  
Virtualized security service execution  
Device encryption support Reason for automatic device encryption failure: PCR7 is not supported, hardware security test interface fails, and device is not InstantGo, and DMA bus/device is not allowed.
A Hypervisor was detected. The features required for Hyper-V will not be displayed.  

    The state in which Selenoid is executing. You can see the status of the execution on youtube for 0.23 minutes. https://www.youtube.com/watch?v=3utY9FEQChs&feature=youtu.be image

vania-pooh commented 6 years ago

@kiam123 on 4 cores we recommend to run up to 8 parallel sessions. You overload your server.

kiam123 commented 6 years ago

@aandryashin @vania-pooh ok, this is a hardware problem. Cannot too many people can connect at the same time, it will overload. Thank you and this issue can close.

vania-pooh commented 6 years ago

@kiam123 ok, closing.