Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default FMS' limits

    Hello all, this forum has been very helpful in answering all my fms questions,
    I have yet another one.
    How much is too much with FMS? I would like to broadcast and view users
    webcam, but I would like to know how many people I could broadcast and view
    without making to server go extremely slow and also, is there a way arround the
    server getting too crowded? For example, say I want a max of "x" simultaneous
    conections broadcasting in a server and when I reach that "x" mark for it to go
    to broadcast through another server, etc.
    Is influxis the best hosting arround? Or are there others?

    Thanks so much in advance,

    Rgds,

    cartuchos Guest

  2. Similar Questions and Discussions

    1. Bandwidth Limits on FCS v1.5
      I'm new to FCS, so pardon my ignorance, or lack of correct terminology. We're running Flash Communication Server v1.5. We have a hard limit of...
    2. Limits
      That "Ideal" it doesn't exist ! But if you're looking for the "best compromise", that's different. No more than 25000 polys and no more than...
    3. asp.net impersonation limits?
      Hi, Are there limits to asp.net impersonation? I'm using CrystalReports.Net to print from an asp.net application. Although my diagnostic...
    4. camera limits
      I have ceated a .w3d file using Maya. The file was ceated using a tumble view camera to express the file to w3d. I had set limits to the camera, in...
    5. 2 Gig Ram Limits on Photoshop
      I am curently building a new workstation, one that can hold a max of 4 gig of ram. I was told by a friend that Photoshop will not run on a PC with...
  3. #2

    Default Re: FMS' limits

    Well... it really depends on the machine fms is running on, the internet pipe
    it's connected to, and the bitrate of the streams you're serving.

    Let's assume you're running a fairly powerful machine (maybe a dual Xeon, 4meg
    machine), you have a 100mbps pipe, and your streams are set at 256kbps.

    In this case, you'd max out the internet pipe at about 400 concurrent
    streams... far fewer than the server can handle. I've read that FMS can handle
    several throusand concurrent live streams on a single box, but I've never
    pushed it that hard (the most I've has on a single box was about 1000)

    You can limit the number of allowed connections at the server level by
    modifying your vhost.xml file for the vhost you want to limit, or you can do it
    at the application level by checking connected clients in your
    application.onConnect method:

    application.onConnect = function(clientObj){
    if (application.clients.length > 10){
    // Execute code to reject connection (too many users)
    }else{
    // Not too many users, accept the connection or execute other code
    }
    }

    Now, FMS has no means of redirecting the client to another server, but you can
    put that logic in the client side.

    As for shared hosts, I've never used any of them, but Ive heard good things
    about influxis (although the cost adds up fast if you want to handle more than
    a few concurrent users)

    Others:
    mediatemple.com
    akamai.com
    moremx.com


    JayCharles Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139