Multiple bitrate encoder creates 3 seperate events and streams instead of a single event.

I'm using the Niagara 4100 streaming appliance to encode a live multiple bitrate streams for an event. The problem is the Niagara encoder doesn't allow me to attach an event name to the stream url like - 'streamevent%i?adbe-live-event=liveevent', instead it only allows 'streamevent%i'. So in the end I get three seperate events with a stream for each event.
Like so:
Example:
/Events/streamevent1/MNMMNNMxxxxx.stream 
/Events/streamevent2/MNMMNNMxxxxx.stream
/Events/streamevent3/MNMMNNMxxxxx.stream
AND
/Streams/streamevent1/files…
/Streams/streamevent2/files…
/Streams/streamevent3/files…
Is it possible to make it work this way without using the 'adbe-live-event' parameter using the .f4m manifest file?
Thanks,
Dave

There is a workaroud available but you can try using Flash Media Live Encoder, which is a free tool for better results. Surf to - C:\FMSHOME\samples\applications\livepkgr directory and you will find a main.asc file in there. This is the server side scripting file that is attached to the livepkgr application.
In this, edit the var liveEventName variable and set it to the event you want to attach your streams to eg - "liveevent".
Now create a separate copy of your livepkgr application inside C:\FMSHOME\applications\ like livepkgr_mbr and replace the main.far file with the main.asc you just edited. Now while publishing, connect to this application livepkgr_mbr and just specify the stream name - livestream%i. Check your permissions before starting the recording.
This should work for you. But please remember that doing this will cause all your streams to be associated with the same event - liveevent as you are hard coding that inside the main.asc file. So its best to keep a separate application just for this purpose.

Similar Messages

  • How to define custom event and how to trigger the defined event

    hi,guys
    hurry issue....................hope get help.
    I am using oracle weblogic 10gr3 portal.and we choiced java portlet.as of now,we got some question about custom Event.hope you can give some idea....
    thank you so much.
    question detail:
    1.for java portlet ,how to define custom event.
    2.how to trigger this event.
    3 about the data,may be sometime need to transit Biz data.
    auctully,I just want to implements between two portlets communicate.
    for example:
    existing portletA,portletB.
    portletA is a list,like:
    A AA <button>
    after I click this buttom,then portletB will be effect,it means they are interact with each other.
    does anybody hit this issue before,if you solved pls share me .
    thank you for you help....

    Hello,
    Please note that everything below applies to JSR168 portlets ONLY- JSR286 portlets and other portlet types handle events a little differently.
    From inside your JSR168 portlet you can send an event during processAction or when receiving another event by using the PortletBackingContext object, such as:
    import javax.portlet.ActionResponse;
    import javax.portlet.ActionRequest;
    import javax.servlet.http.HttpServletRequest;
    import com.bea.netuix.servlets.controls.portlet.backing.PortletBackingContext;
    public void processAction(ActionRequest actionRequest, ActionResponse actionResponse)
    HttpServletRequest httpRequest = (HttpServletRequest) actionRequest.getAttribute("javax.servlet.request");
    PortletBackingContext portletBackingContext = PortletBackingContext.getPortletBackingContext(httpRequest);
    portletBackingContext.fireCustomEvent("customEvent", "This is a custom event");
    To receive an event, in your .portlet file you just need to put in a "handleCustomEvent" tag specifying which method to call when the event is received, such as:
    <?xml version="1.0" encoding="UTF-8"?>
    <portal:root xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0"
    xmlns:portal="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0 portal-support-1_0_0.xsd">
    <netuix:javaPortlet title="Listening Portlet" definitionLabel="yourPortletName">
    <netuix:handleCustomEvent event="customEvent" eventLabel="customEvent" filterable="true" description="custom event handler">
    <netuix:invokeJavaPortletMethod method="processCustomEvent"/>
    </netuix:handleCustomEvent>
    </netuix:javaPortlet>
    </portal:root>
    Then, in your receiving portlet the method "processCustomEvent" would receive the event, such as:
    public void processCustomEvent(ActionRequest actionRequest, ActionResponse actionResponse, Event event)
    The event payload can be any Serializable object you want, but for forward-compatibility with JSR286 it would be ideal if it had a valid JAXB binding.
    Kevin

  • Iphone5 deleted most recurring events in Calendar when changing one event and confirming Save for All Future Events

    This has occurred now twice today, requiring me to resync my iphone5 in order to recapture the majority of my Calender events that were in place before this mysterious disappearance took place. When I touched the "Save for All Future Events" button, the process took much longer than usual, with this result. My iCloud account is set only for Backups; nothing on my iphone is set to sync with iCloud. Has anyone else had disappearing Calender Events in the new iphone5 or any ideas what may be causing this to happened - never before occurred on previous iphones.

    I had the same problem and thought it was fixed after spending a lot of time last night going through all my appointments on my 9900 and fixing them. Then this morning I did a 1-way sync with my PC and after updating all my categories in Outlook I did a 2-way sync just to have the same thing all over again. 
    I resolved the problem by replacing DM7 with DM6.1
    I just can't see how after 6 months this can happen. It's not like syncing calendar appointments is something only a handful of people do.
    Looks like RIM's new CEO has his work cutout for him.
    New York Yankees
    It's Hard To Be Humble

  • My calander lost all my events and I can't input any events why

    I lost all of my calendar appointments and can no longer put any appointments on my calendar. How do I fix it and get back all of my data back?

    I lost all of my calendar appointments and can no longer put any appointments on my calendar. How do I fix it and get back all of my data back?

  • AWT (Events) and Applet - applet cannot recognize awt events?

    Hi there,
    I'm embedding one frame inside an applet, but every action inside this frame goes to EventQueue of system with this command:
    public void insertEventQueue(AWTEvent e) {
         Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(e);
    When I run through eclipse, its all working fine. Although when I run inside browser, all action don't work. What could it be? PS: I've already signed this jar.
    Thank you!

    Hi there,
    I'm embedding one frame inside an applet, but every action inside this frame goes to EventQueue of system with this command:
    public void insertEventQueue(AWTEvent e) {
         Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(e);
    When I run through eclipse, its all working fine. Although when I run inside browser, all action don't work. What could it be? PS: I've already signed this jar.
    Thank you!

  • Can I switch calendars (Ex. "night shift" to "day shift" cal) with a repeating event, but ONLY for that one event??  It asks "for all events or only this event" if i change the time.  But it changes ALL events when i try and switch calendars.  Any help??

    I have 2 calendars set up for my work schedule, a "night shift" and "day shift" calendar.  I've set up repeating events fro Fri/Sat/Sun 3-11pm "night shifts" and Mon/Tues 7am-3pm "day shifts".  But lets say for example that I swap shifts and instead of working nights on Saturday like I normally would, I am now working days.  I want to change that in my calendar.  When I go to change the event, if i change the TIME it asks if i want to change all event or ONLY this event.  no problem....just this single event.  but when i go to change the event from the "night shift" calendar to the "day shift" calendar, it changes ALL the repeating events, and not just that one single event.   can anyone help with this???  am i doing something wrong?  is there a way to do this or not with the new iCal program???  i used to do this and never had any problems.    Thank you!

    You need to follow iPhoto terms since we only know what you tell us
    what are you calling folders - in iPhoto folders can not hold photos - albums hold photos and folders hold albums or other folders
    The basic default view of photo is by event (iPhoto '08 and later)
    Exactly what you you trying to do?
    LN

  • FCP 10.1.1 messed up my Events and Projects...

    I just updated FCP all the way from 10.0.7 to 10.1.1, but I ran into some major issue that's messing with my workflow. When I launched the new FCP 10.1.1, it asked me if I want to upgrade my Events and Projects folders into a single Library, I clicked Upgrade and it got that done. Then I was asked whether I want to preserve the old Events and Projects, fortunately, I chose to preserve it, and it moved the two folders into a new one now called 'Old Macintosh HD (something etc.). Later when I was trying to use the new version of FCP, something went horribly wrong, and it crashed. I tried relaunching FCP again, this time however, instead of loading the new Library it just created in my Movies folder, it created a new Library in the same folder named Untitled.
    So I tried dragging and dropping the older library that contained all my Events and Projects onto the FCP icon on they dock, and it immediately crashed. I then try deleting the 'Untitled' library in my Movies folder to see if FCP would recognise that older Library it created before. No luck it just created another Untitlted library and ignored my old library, tried dragging and dropping the old library, crashed again.
    Fortunately I chose to preserve the old folder, and even if I didn't I still have Time Machine to restore them. So now I'm going to try to re-import all my Events from the 'Original Media' folder inside of each individual Event, and redo all the copying and transcoding, etc. That is not a big deal, the big problem is, however, the Projects. I can't figure out how to put my Projects back in place now that the Library is closed off an inaccessible (to the best of my current knowledge). And even if I can get those Projects inside the Library, I still have to relink it back to the media which I am now importing in as new events and thus making it very difficult for FCP to see that they are actually suppose to be connected.
    It would be IMMENSELY helpful if anyone can help me with this I still have a pretty big project to finish and I need to finish it preferably in the next week or so since I won't have access to my iMac and editing on my 5+ year old MBP wouldn't be feasible as it doesn't have enough extra storage to hold my 40+GB of clips.

    First, take a look at these free videos about the FCP X new library model.
    From your description - moving folders around and renaming them - it's not clear what your situation is currently.
    I think it would be useful if you would post a screen shot of your Finder window that includes the first library that FCP created when you updated.
    You can navigate to that library in the application  by choosing File>Open Library>Other>Locate. When you do what happens?
    Russ

  • Pics not showing up in "Events" AND "pictures" but "Finder" sees them ok

    I am missing some events (with photos) from iPhoto. These pics are also missing from the pictures tab. Finder can locate them on the HD and seemingly has them located in the iPhoto folder. I have tried to import them from Finder and a warning pops up and says "Photos are already in the iPhoto library". Everyone I have asked seems to think it is impossible for the photos to not be shown in the pictures tab.
    Any help is appreciated.
    Buford
    I am a newbie to apple . . . .can u tell?

    I am having exactly the same problem as is described above -- I will import a bunch of pictures from a camera to iphoto '09 (8.1.2 (424)), I'll split them into multiple events, and then sometimes one of the events won't show up on the main events listing. If I search for the event by its name in iphoto, I can find it. And all of its pictures are in the photos view. But the event doesn't show up in the default listing.
    I tried Option 1, but it didn't work -- I know of at least 2 events that still didn't show up.
    I then tried Option 2, and it took *over 2 days* to re-process everything (I have 738 events with 28,056 photos and camera movies). This is on an imac 2.8 ghz core 2 duo; not the fastest, but not the slowest, either.
    Option 2 seems to have worked -- I now see the 2 events that were missing before.
    But just be aware that it may take a long, long time to rebuild and copy everything.

  • Custom Event and Custom itemRenderer

    I created an MXML component based on <mx:Button/> and
    am using it as a custom itemRenderer in a DataGrid.
    I also created a custom event, and my custom itemRenderer
    dispatches the event. I know the event gets dispatched because I
    see it in the debugger.
    I register an event listener in the parent of the DataGrid,
    but the event handler is not being called.
    If you have any advice, please help.

    In the DeleteItemEvent constructor:
    super(type, bubbles);
    TS

  • I open FCPX, see Events and Projects, then they disappear

    Here's what's going on:
    1. Was using macbook to edit, via an external drive (with events and projects folders on root level)
    2. Tried using Imac to edit, so I closed everything out,  Unmounted  drive and mounted it on iMac before opening Final Cut.
    3. Opened FXP X and found that one of the elements was simply not in any of the projects that used it. It is possible, I suppose, that During the creation of these elements I was using a clip stored not in the elements folder, so it was lost track of, but there's no red frames saying I've got detached Video.
    4. Tried opening the backup I'd made of events and project folders on my second external drive (events and projects folders also on root level.
    5. At first when FCP X opens, I see the projects and events that I want to see, including the missing event appearing in the project list thumbnail sorta timelines in the project browser, but within seconds, projects and events diappear, leaving FCP looking like there are no projects or events.  Clean Slate.
    6. I notice that the events and projects browsers at first show events and projects as being contained in the external drive. When all disappears, it seems to be because the external drive is no longer recognized or superseded by the Macintosh HD, which becomes the only HD shown in either browswer.
    Not sure if the 1st issue (disappearing element) and the 2nd (disappearing events and projects before my eyes) are related.
    But at a loss.
    Thoughts?

    Projects and events can disappear if they are exact copies, clones of other projects and events on other drives.

  • HT1338 Transferring iPhoto events (and all pictures inside) between MacBook Pro's

    I have an old Mac Book Pro (OSX 10.5.8) and I want to switch the iPhoto "Events" and all pictures/video in each "event" to my newer Mac Book Pro (OSX 10.7.5).  How do I do this?  So far, when I transferred my photos, they are all in one jumbled mess

    If you wan to merge 2 library incase you can try this iPhoto Library Manager.

  • All Entourage events and Tasks just disappeared - PLEASE HELP

    PLEASE HELP!!
    This is what JUST happened to me. Everything between Entourage 2008, iCal and my iPhone had been working fine for a couple months. Then, about 3 days ago, my iCal calendar went blank and so, of course, did my iPhone.
    After reading some discussions and finding that this was not uncommon, I tried what seemed to be the common fix:
    1. In the Entourage sync settings,
    2. Turn off 'sync with iCal';
    3. Delete the 'Entourage' calendar from iCal;
    4. Go back to Entourage and turn 'sync with iCal' back on.
    After doing this I was prompted, during the subsequent sync, to resolve conflicts. Of course I chose for all events from Entourage to erase those on iCal. That's where the 'fun' began.
    First, almost every event in Entourage duplicated, but still nothing in iCal. Then, AS I WATCHED THE SCREEN, one-by-one every single event in my Entourage calendar DISAPPEARED!!! Finally, in iCal, the 'Entourage' calendar symbol re-generated itself, but no events whatsoever. So now every single event in my entire calendar is gone! All tasks have been erased as well.
    Can anyone PLEASE tell me a way to recover those events in Entourage. This is my only work calendar and it was chock full. Unfortunately, I'm not on Leopard on this machine, so I can't use Time Machine.
    PLEASE HELP!!

    It sounds like you might be using two different applications for taking notes.  That could get confusing. Have a look at this tutorial on using the Notes application that comes with iPad. There is a good suggestion in here about saving really important notes.   http://www.ehow.com/video_6214241_using-notes-ipad.html

  • Streaming videos in multiple-bitrates without manually creating video files in each b

    I want to have a media file that I can stream at multiple bitrates using FFMPEG (for encoding and multiple bitrate generation) and Flash Media Server (for streaming). 
    In "LIVE BROADCASTING" ffmpeg made multiple bitrate videos from a single bitrate source but there were no files for the different bitrates. A file would be created for different bitrates when a viewer requested that bitrate streaming video but when a request was terminated the generated file was deleted.
    So I searched in Flash Media Server and found (hds-vod), but in hds-vod I should create one file for every bitrate, for example if I have 2000 videos in my archive with HD quality (1024 kbps) I should make 4 videos with different bitrates from one video and together I have created 10,000 videos.
    So to have 2000 videos in five bitrates (1024k, 760k, 320k, 145k, 64k), and now I have 10,000 videos. I have space for 2000 videos and I don't have free space in my server for 10,000 video files.
    I want to stream "ON-DEMAND" videos in my server and not have the different bitrate files be continually generated like this.
    Does anyone have any advice?
    Thank you

    Unfortunately, you cannot organize the videos on your iPod Touch differently than the way they do it. That *****, I know. Hopefully this will change with 2.0.
    Hope that was helpful.
    -Messymeese

  • ICal / Exchange / iOS-Cal sync creates multiple events and multiple problem

    Hi,
    I got an iPod Touch for Xmas, so I've rejigged all my iCal calendars to sync via the Enterprise Exchange server at my works. I have three calendars, one for my work appointments, one for my personal appointments and one for other appointments and events.
    I expected to get some weirdness from previous iCal experience, but I've found an odd set of behaviours.
    Some all-day events become midnight to midnight events on the iPod only.
    Some events became duplicated.
    Many of these duplicated events do not appear on the iPod, only in Exchange and iCal on OSX.
    If I change an event on iOS4 Cal.app, say the free/busy information or a deletion, the event changes as expected on Exchange (as seen via Outlook Web Access etc).
    If I change an event on iCal on OSX, the event duplicates itself on Exchange, but not on the iPod.
    If I delete a duplicate event (in any exchange synced calendar) on iCal on OSX, the event reappears a few minutes later or on refreshing. If I delete a duplicate event Cal.app on iOS, it stays deleted.
    Has anyone else experienced this kind of thing? I've seen some notes about duplications via MobileMe, but I don't have that feature. Is there a different method of referring to Exchange events used in iCal on OSX and Cal.app on iOS?
    Also, when I moved my third calendar to Exchange, it made all the events "Show as Busy". Does anyone know a way of programmatically (e.g. Applescript) setting all those to "Free"? I can't seem to find an event property that matches the value given in "Show As..." when you view the event.

    Jeeze, I'm try to sort this out as well. Some iCal Events (but not all), are duplicating within iCal on the MAC. The Mobileme Calendar and the iPhone Calendar seem okay (no Dups).
    Could this be a simple matter of turning off (unchecking), the calendar boxes for the Calendars "ON MY MAC" and also minimizing that Directory Tree and leaving on and expanded the [email protected] Directory Tree with Calendar Boxes checked ?
    Done that way, MobileMe and the iPhone are being updated.
    Having said that, the obvious conclusion is that any New Event entered into a Calendar within the "ON MY MAC" directory tree is not going to be synced with MobileMe nor the iPhone and is a waste of time.
    Furthermore, Any New Event entered into a calendar on the iPhone will be synced with its coressponding Calendar in MOBILME, and it's Directory tree in iCal on the MAC - But Not the "ON MY MAC" Directory tree - That never gets synced. Am I right or am I going crazy.

  • Problem with FMIS 4 and streaming of live events

    We have a problem on our platform and its driving us nuts... no seriously... NUTS.
    We have triple checked every possible component from a hardware level up to a software configuration level.
    The problem :  Our platform consists of 2 origin servers with 6 edges talking to them (really beefy hardware).  Once we inject a live stream into our two origins... we can successfully get the stream out via the edges and stream it successfully via our player.  Once we hit around 2200 concurrent connections, the FMIS servers drops all the connections busy with streams.   From the logs the only thing we can see is the following - Tons of disconnects with the Status code 103's which according to the online documentation means Client disconnected due to server shutdown (or application unloaded).
    We simulated the scenario with the FMS load simulator utility... and we start seeing errors + all connections dropped around the 2200 mark.
    The machines are Dell blades with dual CPU Xeons (quad cores) with around 50 gigs of ram per server... The edges are all on 10 Gb/s ethernet interfaces as well. 
    We managed to generate a nice big fat coredump on the one origin and the only thing visible from inspecting the core dumps + logs is the following :
    2011-10-05 
    15:44:10   
    22353   (e)2641112 
    JavaScript runtime is out of memory; server shutting down instance (Adaptor:
    _defaultRoot_, VHost: _defaultVHost_, App: livestreamcast_origin/_definst_). Check the JavaScript runtime size for this application
    in the configuration file.
    And from the core dump :
    warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7fff9ddfc000
    Core was generated by `/opt/adobe/fms/fmscore -adaptor _defaultRoot_ -vhost _defaultVHost_ -app -inst'.
    Program terminated with signal 11, Segmentation fault.
    #0  0x00002aaaab19ab22 in js_MarkGCThing () from /opt/adobe/fms/modules/scriptengines/libasc.so
    (gdb) bt
    #0  0x00002aaaab19ab22 in js_MarkGCThing () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #1  0x00002aaaab196b63 in ?? () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #2  0x00002aaaab1b316f in js_Mark () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #3  0x00002aaaab19a673 in ?? () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #4  0x00002aaaab19a6f7 in ?? () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #5  0x00002aaaab19ab3d in js_MarkGCThing () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #6  0x00002aaaab19abbe in ?? () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #7  0x00002aaaab185bbe in JS_DHashTableEnumerate () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #8  0x00002aaaab19b39d in js_GC () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #9  0x00002aaaab17e6d7 in js_DestroyContext () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #10 0x00002aaaab176bf4 in JS_DestroyContext () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #11 0x00002aaaab14f5e3 in ?? () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #12 0x00002aaaab14fabd in JScriptVMImpl::resetContext() () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #13 0x00002aaaab1527b4 in JScriptVMImpl::postProcessCbk(unsigned int, bool, int) ()
       from /opt/adobe/fms/modules/scriptengines/libasc.so
    #14 0x00002aaaab1035c7 in boost::detail::function::void_function_obj_invoker3<boost::_bi::bind_t<void, boost::_mfi::mf3<void, IJScriptVM, unsigned int, bool, int>, boost::_bi::list4<boost::_bi::value<IJScriptVM*>, boost::arg<1>, boost::arg<2>, boost::arg<3> > >, void, unsigned int, bool, int>::invoke(boost::detail::function::function_buffer&, unsigned int, bool, int) ()
       from /opt/adobe/fms/modules/scriptengines/libasc.so
    #15 0x00002aaaab0fddf6 in boost::function3<void, unsigned int, bool, int>::operator()(unsigned int, bool, int) const ()
       from /opt/adobe/fms/modules/scriptengines/libasc.so
    #16 0x00002aaaab0fbd9d in fms::script::AscRequestQ::run() () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #17 0x00002aaaab0fd0eb in boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<bool, boost::_mfi::mf0<bool, fms::script::AscRequestQ>, boost::_bi::list1<boost::_bi::value<fms::script::IntrusivePtr<fms::script::AscRequestQ> > > >, bool>::invoke(boost::detail::function::function_buffer&) () from /opt/adobe/fms/modules/scriptengines/libasc.so
    #18 0x00000000009c7327 in boost::function0<bool>::operator()() const ()
    #19 0x00000000009c7529 in fms::script::QueueRequest::run() ()
    #20 0x00000000008b868a in TCThreadPool::launchThreadRun(void*) ()
    #21 0x00000000008b8bd6 in TCThreadPool::__ThreadStaticPoolEntry(void*) ()
    #22 0x00000000008ba496 in launchThreadRun(void*) ()
    #23 0x00000000008bb44f in __TCThreadEntry(void*) ()
    #24 0x000000390ca0673d in start_thread () from /lib64/libpthread.so.0
    #25 0x000000390bed44bd in clone () from /lib64/libc.so.6
    From what it looks like above, FMS is hard crashing when trying to use clone(2) (basically it means when its trying to spawn a new/another process).
    I am really hoping there is someone out there who can guide us in the right direction with regards to how we can pinpoint why our platform cannot cope with a pathetic 2200 connections before the FMIS daemon drops all connected streams.
    There has to be someone out there that has run into this or a similiar problem like this...  HELP !!!!
    Any feedback / ideas would be greatly appreciated.

    Thank you very much for the reply :-)
    We have been fiddling with the platform on many levels yesterday, and one thing we did do was bump that value up from 1024 to 8192... This made a HUGE improvement in ensuring the platform now holds the live streaming connections. (up to 8000 per edge)
    I think for other future reference and to aid other people that might run into this problem in the future, its a good idea to increase this value.  From what we have seen, read and heard, that default value is fairly conservative, its suppose to grow when the load demands it, however, if you have a large scale of connections coming in at once from multiple locations, it can happen that it grows too quickly which can result in the application to be reloaded (which disconnects all users, i.e. all edge servers connected to this origin).
    Another option we were recommended to modify was the following :
    In adaptor.xml you currently have this line:
    <HostPort name="edge1" ctl_channel="localhost:19350" rtmfp="${ADAPTOR.HOSTPORT}">${ADAPTOR.HOSTPORT}</HostPort>
    You can set this to
                    <HostPort name="edge1" ctl_channel="localhost:19350" rtmfp=":80">:80</HostPort>
    <HostPort name="edge2" ctl_channel="localhost:19351" rtmfp=":1935">:1935</HostPort>
    This will create two edge processes for both ports 80 and 1935. Currently both ports are served from the same fmsedge process.
    Of course this is not a huge performance improvement, but should further distribute load over more processes which is a good thing. Especially when there are that many connections.
    This setting can be made on all machines (origin + edge)
    Hopefully this could help other people also running into the same problems we have seen ...

Maybe you are looking for

  • Thunderbird updated and closed all open tabs.

    I often keep an email tab open as a reminder until I act on it. Sometimes I will have 10 or so tabs open at the same time. Yesterday I left the house for several hours leaving my computer on. When I returned, both Thunderbird and Firefox were closed.

  • HP officejet Pro 8600 Not connecting right to my new Mac Pro Air. Looses signal.

    I recently bought a Mac Book Air. I have a wireless HP Officepro Jet 8600 that sometimes works for printing and a lot of times it does not get the signal. I am ready to throw my HP out the window. Had tech come in twice. Gets it and than it looses th

  • Assets Creation in New Company Code.

    Dear All, we have company code of GBRT as separate Entity. it had more that 8000 Assets. some of the operations were separated from GBRT & created a new Co Code as RBST, out of 8000 assets 3800 were pertaining to new co code. now what is the procedur

  • Color Conversions

    Google is running a tribute to Cezanne, with a wonderful example of his work. I copied it, opened PS, went to File>New, which created a canvas the same size as the image. Pasting it into that canvas, the colors were completely different than the imag

  • Simultaneous analog output

    I am using PCI-6052 with (LabVIEW) .Where two analog outputs are available ,DAC0 and DAC1.I want to simultanouly output the different waveforms on each Channel at the same time.Time is important. I tried it with two DAQ assistance vi's setting each c