Internal load balance ilb on ServiceConfiguration LoadBalancers

Hi everybody, I try to setup an internal load balancer using this configuration:
from cscfg:
<NetworkConfiguration>
 <VirtualNetworkSite name="WE" />
 <AddressAssignments>
  <InstanceAddress roleName="Role1">
   <Subnets>
    <Subnet name="WE_WWW" />
   </Subnets>
  </InstanceAddress>
  <InstanceAddress roleName="Role">
   <Subnets>
    <Subnet name="WE_SERVICE" />
   </Subnets>
  </InstanceAddress>
 </AddressAssignments>
 <LoadBalancers>
  <LoadBalancer name="WEB_ILB">
   <FrontendIPConfiguration type="private" subnet="WE_WWW" staticVirtualNetworkIPAddress="192.168.1.5" />
  </LoadBalancer>
  <LoadBalancer name="API_ILB">
   <FrontendIPConfiguration type="private" subnet="WE_SERVICE" staticVirtualNetworkIPAddress="192.168.2.5" />
  </LoadBalancer>
 </LoadBalancers>
</NetworkConfiguration>
from csdef:
<WebRole name="Role1" vmsize="Small">
 <Sites>
  <Site name="Web">
   <Bindings>
    <Binding name="httpIn" endpointName="httpIn" />
    <Binding name="httpsIn" endpointName="httpsIn" />
   </Bindings>
  </Site>
 </Sites>
 <Endpoints>
  <InputEndpoint name="httpIn" protocol="http" port="80" loadBalancer="WEBILB" />
  <InputEndpoint name="httpsIn" protocol="https" port="443" certificate="Valuta" />
 </Endpoints>
 <Imports>
  <Import moduleName="Diagnostics" />
  <Import moduleName="RemoteAccess" />
  <Import moduleName="RemoteForwarder" />
 </Imports>
 <Certificates>
  <Certificate name="Valuta" storeLocation="LocalMachine" storeName="CA" />
 </Certificates>
</WebRole>
<WebRole name="Role2" vmsize="Small">
 <Sites>
  <Site name="Web">
   <Bindings>
    <Binding name="httpIn" endpointName="httpIn" />
   </Bindings>
  </Site>
 </Sites>
 <Endpoints>
  <InputEndpoint name="httpIn" protocol="http" port="8080" loadBalancer="APIILB" />
 </Endpoints>
 <Imports>
  <Import moduleName="Diagnostics" />
  <Import moduleName="RemoteAccess" />
 </Imports>
</WebRole>
as you can see I have two webroles linked to a vnet:
Role1 has two input endpoint: https and http (the one I want to "internal" load balance)
Role2 has only an http input endpoint (again the one I want to "internal" load balance)
and I try to configure an internal loadbalancer (see here:
vs2013-update3)
When I try to deploy the package I receive this error:
Error: The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.  Http Status Code: BadRequest  OperationId:
874024071e88327f8cb73c16f15f3ac2
I'm sure it depends on the ilb configuration because when I remove it the deploy succeed...
Does anybody try something like this?
Thanks,
Simone

I've found a solution by myself with the help of a friend (Sandro Vecchiarelli): the "problem" is that I try to setup two load balancers in one cloud service. Trying with only one work correctly; the error probably is a schema validation and I
really don't know if the error is on "client" schema that allow me to configure more than one ILB (note the node name
LoadBalancers... its plural...) or online (the one on Azure).
By the way...at the moment use just one ILB per cloud service.
Hope this help.

Similar Messages

  • Using Azure internal load balancer (ILB) for Sql Reporting Services

    I am attempting to implement a scale-out SSRS deployment using the Azure ILB feature. I have created 2 Sql Reporting servers using the azure images and have created a ILB endpoint on both servers.  I am then attempting to access the servers via the
    ILB from my .Net web application.  I can access the report server from my browser and am prompted for credentials using forms authentication.  there is no issue accessing the reports from a browser however my web application cannot access the reports
    and returns a 500 error.  I have a hunch this is due to an authentication issue due to invalid kerberos proxy authentication.
    Does anyone have any information regarding the possible authentication mechanisms that are supported using Azure ILB?  

    Thanks for the response Swallow0417, but as I stated I already had configured this to work in a browser.  I should have mentioned that I already had set the machine key and altered the rsreportserver.config file as mentioned in
    https://msdn.microsoft.com/en-us/library/cc281307.aspx.
    It turns out this was due to the extended data validation that was introduced in SQL 2014. 
    This page led me to alter rsreportserver.config so that:
    <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
    <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>
    After restarting the report server service my application now can make the requests for the reports successfully.  I'll provide the other steps I took to hopefully help someone else in the future:
    1. Create 2 or more SQL servers in an Azure availability group on the same service in a Reports server scale out deployment.  The SSRS Service account must be a domain account or it will not work
    2. Create an Azure ILB using powershell and add the endpoints on your http(s) ports on the server in step 1. I also set the endpoint IdleTimeoutInMinutes to 30 on both endpoints as it seemed like there was some possible timeout issues. the endpoint MUST
    also have DirectServerReturn Set to $true 
    3. disable the loopbackcheck see method 2 here
    http://support.microsoft.com/kb/896861
    create a DWORD registry key value 1,
    DisableLoopbackCheck,
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
    4. Configure View state validation by setting an identical machine key on all servers behind the azure ILB
    5. Create a Host record in your AD DNS for the Azure ILB IP Address. 
    6. configure hostname
    and URLRoot in rsreportserver.config - see
    https://msdn.microsoft.com/en-us/library/cc281307.aspx
    Setting the hostname tag breaks the report manager url. It is only
    required to set the URLRoot tag. I do not think it is required in this configurtaion only for Windows
    NLB
    6. Configure the authentication method in rsreportserver.conig
      <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
      <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>

  • Geting IP address for Internal Load Balancer

    I've recently been experimenting with internal load balancing for VMs. I'm able to create and delete an internal load balancer (ILB) using the .NET wrapper for the API (https://github.com/Azure/azure-sdk-for-net).  What I cannot do though is actually
    get the internal address for it. Nor does it seem you can get it from the REST API (which, as far as I know, is what .NET wrapper wraps).   The only method I can see that claims to get the address is Powershell.
    Can anyone confirm if there is any way using the REST API or its .NET wrapper to obtain the internal address for the ILB?

    I have not looked into the .NET wrapper that you mentioned here, but according to this powershell script:
    http://msdn.microsoft.com/en-us/library/azure/dn690125.aspx
    $svc="<Cloud Service Name>"
    $ilb="<Name of your ILB instance>"
    $subnet="<Name of the subnet within your virtual network-optional>"
    $IP="<The IPv4 address to use on the subnet-optional>"
    Add-AzureInternalLoadBalancer -ServiceName $svc -InternalLoadBalancerName $ilb –SubnetName $subnet –StaticVNetIPAddress $IP
    IP address is optional, so maybe the wrapper hasn't implemented this, which is kind of undesirable. But maybe it allows you to specify the IP?
    Frank

  • Internal load balancer for ADFS, Web Application Proxy join problem

    Hello,
    we deployed 2 x ADFS (2012 R2) behind a internal Azure load balancer.
    In front are two WAP servers, which should be joined to the ADFS farm based on the internal load balancer IP.
    Unfortunately the WAPs fail to join and sometimes after 5 tries it works. The problem is (based on the event logs) that the ADFS Servers dont trust the WAP certificate.
    It seems, that during the join process the ADFS internal load balancer does not stick to one ADFS server. If we join the WAP directly (without the ILB) to one of the ADFS servers, everything works fine.
    As soon as we try to join via the ADFS internal load balancer IP, the abover occurs.
    Did anyone experience the same problems? How does the internal load balancer distribute the requests? Seems to be not sticky at all.
    Thanks for any Feedback,
    Thomas

    Thomas -
    This article talks (in detail) about a recently updated distribution mode - Source IP affinity.
    http://azure.microsoft.com/blog/2014/10/30/azure-load-balancer-new-distribution-mode/
    Hope this helps!
    /Arvind

  • Internal Load Balancer status - how to get it?

    Hello,
    is there any possibility to get the info, whats the status of the internal load balancer?
    We would need to know, if e.g. one endpoint for forwarding is recognized as down.
    Thanks,
    Thomas

    Hi Thomas,
    Based on my exprience, you can use
    Get-AzureInternalLoadBalancer cmdlet to get the internal load balancer configuration of a deployment. However, there is no other way to obatin the information of internal load balancer.
    I recommend you to submit your request in Azure feedback below:
    http://feedback.azure.com/forums/34192--general-feedback
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Internal Load Balancing

    I'm after a definitive answer as to whether you can do internal load balancing with Roles as its a highly desirable feature but also i've seen conflicting information on it. For instance the following Azure blog article suggests you can but I can't find
    any sign as to how you do it (assuming the assertion that you can is accurate).
    http://azure.microsoft.com/blog/2014/05/20/internal-load-balancing/
    So can it be done? If so how? If not then is it a forthcoming feature?

    Hi,
    As far as I know, we can use powershell to configure Internal Load Balancing at currently, please have a look at this article:
    http://msdn.microsoft.com/en-us/library/dn690125.aspx, if I misunderstand, please feel free to let me know.
    Regards

  • Lync Discover Internal Load Balance

    I have tried using DNS and hardware load balancing for the lyncdiscoverinternal A record,
    If I disable the NIC on one of my 2 front end servers in my pool that the client is connected to it gets signed out,
    the client does not then sign back in for about 2 minutes.
    Can someone explain why the client takes so long to try another server in the pool and re-try the signing to a different FE server as 2 minutes is too long...
    I have 2 servers in a pool called pool.domain.com and the srv record points to pool.domain.com
    I have 2 A records for pool.domain.com pointing to each FE server
    I also have a director pool, will pointing the pool.domain.com srv record for _sip to this pool improve failover speed?
    ***Don't forget to mark helpful or answer***

    i tried doing the full HLB method (using f5) and during testing it seems lync itself doesnt want to support that (which is why microsoft recommends DNS AND HLB i am betting).  What i saw in my testing was after the node you were on was "failed" the
    lync client went to its secondary via the list of servers it gets when it first connects, so instead of connecting to the VIP of the HLB, it connected directly to a front-end server that was listed as secondary for that user at that point.
    Doing the combination of HLB and DNS LB, the time it takes for the client to connect seemed to be much less (under 10 seconds in my tests).  I hate that i have to use both technologies, if they are going to force you to use HLB (for web servcies), they
    should let everything work via that method...

  • Internal Load Balancing problem?

    A end user opens a webpage to an internal web portal here. Then they click on a portion of the webpage that takes them to a timecard application
    (content L3_Rule5 in the content switch). And here is where the problem begins, you can have three people properly bring up the webpage without a problem but users number four and five will receive a "page cannot be displayed error", and then next thing you know no one can access the webpage. When this happens I request the IP address of the user having the problem, execute the command sh sticky-table l3-sticky ipaddress 136.180.33.150 255.255.255.255 for example and then execute sh service | grep 10 to find out what service/server the user is being direct to, and the problem is usually with one server. I have checked the Content Switch and it's not being overloaded memory wise and the 'loads' on the services are low also and I confirmed all service are "alive". What happens then is we either reload the server or the CSS (usually the server) and then the problem is fixed for the time being and then it creeps up back again within a week give or take a few days. Below is a copy of the config of the device, any advice, ideas, or info would be appreciated.
    Thanks,
    Jase

    It would seem that the config on the CSS is a bit confusing. It's confusing because some of the services that are in the content rule are using uri keepalives, icmp and even scripted keepalives. Now, even with that type of configuration, things should work fine from the CSS perspective. I want to also mention that some of the services have a "port" command configured. This is not a keepalive but actually a command to tell the CSS to PORT NAT. So if the client comes in on port 80 and happens to go to 69.149_HTTP via the content rule, the CSS will port nat the port 80 packet to port 8390.
    Can you take a closer look at this ? Maybe simplifying config config especially the services may help issolate the issue ?
    Regards
    Pete..

  • Could not retrieve Enterprise Global Template - Load balancer issue

    Hi,
    We have 4 Project Server 2010 servers. The 4 web servers are load balanced by networking team with sticky session configured.
    When we try to connect to the Project Server using MPP 2007 SP2, it fails saying 'Could not retrieve Enterprise Global template'. It works perfect when we point to a specific server by specifying the IP address for server name in the 'hosts'
    file.
    Earlier we observed some errors in the event viewer related to the SharePoint's internal load balancer for which restarted the 'Project Server Application' on each web server and it got fixed.
    Now, the only entries that we see related to load balancer are as mentioned below as Information (not errors).
    SharePoint Web Services Round Robin Service Load Balancer Event: Initialization
    Process Name: w3wp
    Process ID: 15080
    AppDomain Name: /LM/W3SVC/539065287/ROOT-1-130462463500778047
    AppDomain ID: 2
    Service Application Uri: urn:schemas-microsoft-com:sharepoint:service:ae7c7ee5c09b4e8198bdbb1ecb8c1c1b#authority=urn:uuid:9f626d347784423eb14bde4a1f4d13fc&authority=https://lonms12546:32844/Topology/topology.svc
    Active Endpoints: 4
    Failed Endpoints:0
    Endpoint List:
    http://lonxxx2532:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2545:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2546:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2566:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    Could the issue be due to network load balancer?
    Could the issue be due to Sticky session configuration on the load balancer.?
    How can we get to the root cause of the issue?
    Which logging category should we set to 'Verbose' that can give us some hint.
    Update: We tried to capture the requests through fiddler and observed that when fiddler is running on the client computer then the connection works perfectly fine even through the load balancer. Probably fiddler is reformatting the SOAP
    envelop of the web service requests the way it should before sending the request to the server.
    If we do not run fiddler and run some other similar tool (like Charles) then it again gives the issue and the request stucks at /PWA/_vti_bin/psi/winproj.asmx
    We ran Wireshark on the servers and found the following for that web service call:
    [TCP Previous segment not captured] Continuation or non-HTTP traffic.
    Please let me know if someone could provide any hint what can be done next.
    Regards, Amit Gupta

    There are several ways to configure your load balancer.   I would suggest that you work with the network engineer, the load balancer vendor and your project administrator to resolve this issue. 
    Basically you need URL to be resolved correctly.  Also, I don't believe PS2007 did a good job handling load balancing, so you may need to bring someone in good with IIS and see they can tweek IIS to manage the cache better.
    As I go back and look at your analysis, I think you should probably look at upgrading to Project Server 2013.  They made some improvement in load balancing and the management of distributive cache.
    I assume you have 4 WFE because you have thousands of project users.  Roughly how many  you have?  Over 1000, over 5000
    Have you tried to see if using two load balancing work?  How about just one front end.  I often see companies scaling SharePoint and Project server to extremes. 
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • CSS load balancing in both directions.

    Hi all,
    my questions are
    -if it is possible divide (virtualize) one physical CSS to separate ones?
    and than
    -if it is possible use one virtual CSS for loadbalancing in one direction and other CSS use for loadbalancing in opposite direction?
    BR
    gg

    It sounds like you need to implement a group rule using 'add service service_name'.
    ie.
    service web1
    ip address 192.168.1.1
    port 80
    active
    service web2
    ip address 192.168.1.2
    port 80
    active
    owner vip
    content web_servers
    vip address 192.168.1.100
    port 80
    protocol tcp
    add service web1
    add service web2
    active
    group web_servers
    vip address 192.168.1.100
    add service web1
    add service web2
    active
    What this should do is NAT any request *initiated* from web1 or web2 to the IP address specified in the group rule. In this case it is 192.168.1.100, the same as the content rule. This is fine, or you can use a different IP. I'm using RFC1918 addresses in this example, as 192.168.1.100 would be natted to some public IP on the firewall in front of the CSS.
    If you wanted to do internal load balancing, or load balance to a service *NOT* within your environment (ie. 3rd party data center), you would simply change 'add service' to 'add destination service' in the group rule.
    James

  • UAG External Load Balancing and ISATAP

    Hi Experts,
    I am deploying a UAG Array to be used for Direct Access. The Array will consist of two servers and use an F5 External Load Balancer. In addition and in similarity
    to 90% of the other corporate intranets out there, the internal network is IPv4 with no IPv6 transition technologies deployed. The article
    http://blogs.technet.com/b/edgeaccessblog/archive/2010/05/17/configuring-an-external-load-balanced-uag-directaccess-array-for-an-ipv4-only-network.aspx
    isgreat but to my mind has no information to support ‘Manage Out’ and throws up a number of questions: (Note that I want to enable ‘Manage Out’ capability and as far as I am aware that is achieved by using ISATAP)
    The article describes that you have to generate and configure your own IPv6 address for the internal interface when using an external load balancer. Does anyone know why? Why not let UAG assign
    the addresses as per the default?
    UAG by default configures itself as an ISATAP router when there is no IPv6 infrastructure deployed on the internal network
    to facilitate ‘manage out’. This still applies when using Windows NLB. Why does this no longer apply when using an external load balancer? I.e. Why does UAG no longer configure itself as a ISATAP router?
    In relation to question 2; you therefore need to move your ISATAP router to a different device (http://technet.microsoft.com/en-us/library/ee690463.aspx),
    in doing so how do you configure the ISATAP environment to traverse the UAG servers without some sort of load balancing on the internal interfaces? I’m assuming that you can only tell the ISATAP router to use the one default gateway i.e. either one UAG server
    or the other. This means that you would have all your outbound internally initiated traffic going via one server only – not very good for performance or fault tolerance.
    In relation to question 3; I thought therefore that NLB could be used on the internal interface to solve the above problem, except that I have read that you can’t mix and match external load
    balancing and NLB even though they are on separate networks due to bidirectional affinity. What does this actually mean and why does this not occur when load balancing is mixed in this manor?
    Therefore when you wish to use external load balancers, do you:
    A) Except the fact that you can’t use UAG as a ISATAP router and you do indeed need two devices
    and deploy it as described here (http://technet.microsoft.com/en-us/library/ee690463.aspx)
    or
    B) Except the fact that that you can’t use UAG as a ISATAP router and any internal outbound
    traffic travels via the one UAG server only.
    Apologies for the long post, but I wanted to make sure that I get my thoughts down concisely so that it may help others who come up with the same questions
    J
    Thanks for your time everyone
    Gary

    I am also facing the same issue.  I have UAG1 and UAG2, which are in an array, and externally load balanced.  I've configured an external ISATAP router according to: 
    http://www.windowsnetworking.com/articles_tutorials/Configuring-ISATAP-Router-Windows-Server-2008-R2-Part2.html.  However, as mentioned by others, the ISATAP router has to have either UAG1 or UAG2 as the next hop for IP-HTTPS traffic.  As
    a result, communication between the DirectAccess client and management devices will only work if the client is tunneling through the same UAG server that the ISATAP router has as the next hop for the IP-HTTPS prefix.  From what I can tell, my configuration
    is supported, but I can't figure out how to have the ISATAP router determine which UAG server a client is tunneling through.  I thought about having two separate IP-HTTPS prefixes for each UAG server, but this would get overwritten when activating
    the DirectAccess configuration.  Maybe some type of internal load balancing?

  • Load balancing imbalance in ACE

    We are facing slowness an http application which is due to connection imbalance. This setup has one set of Load balancer and a proxy in DMZ where the connections gets terminated from the users and a load balancer inside LAN which load balances between the end point servers. All user connections terminate on the DMZ load balancer / proxy and proxy connects back to the internal load balancer VIP. (By collating a number of connections to very few - default proxy behavior) . Internal load balancer VIP does load balancing based on the number of connections in a least loaded manner and this load balancer doesn’t see how many sessions are beneath each connections and it distributes each connection to server underneath. Thus if one connection has around 100 sessions, another may have only a few and each of this gets forwarded to the end server causing the imbalance.
    Is there a way that this imbalance can be tackled in this setup.
    Users --> Proxy ---> Load balancer (Cisco ACE) --> Server 1
                                                                                                    Server 2
                                                                                                    Server 3
    Least Connections predictor
    HTTP Cookie insert sticky

    Hi,
    Persistance rebalance should solve the issue for you.
    The persistent-rebalance function is required if you have proxy users and the proxy shares one TCP connection between multiple users.
    With this behavior, inside a single connection you will see different cookies. Therefore, for each cookie, ACE needs to first detect the new cookie and then loadbalance to the appropriate server.
    this is from the admin Guide :
    The following example specifies the parameter-map type http command to enable HTTP persistence after it has been disabled:
    host1/Admin(config)# parameter-map type http http_parameter_map
    Host1/Admin(config-parammap-http)# persistence-rebalance
    Please refer the following link for more info :
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/ace/vA4_2_0/configuration/slb/guide/classlb.html#wp1062907
    hope that helps,
    Ajay Kumar

  • How to load balance everything

    Edit:
    More up to date list is available on the wiki:
    http://wiki.oracle.com/page/WCI+Load+Balancing
    Its hard to find information related to deployment anymore, as there is no deployment guide for 10gR3 and a lot of information is scattered around in outdated blog posts. I'd like to keep a list of how to design every component for HA. I don't doubt that there are a lot of errors and things that need filled in so please reply with your additions and corrections.
    h3. Types of load balancing referenced:
    h4. external
    refers to a hardware or software based load balancing handled outside Webcenter software
    h4. MPPE
    the 'massively parallel portlet engine' is the portal's ability to internally load balance web services that are configured with round robin DNS
    h4. cold failover
    I might have the terminology wrong, but I'm referring to when you have another instance of the product installed but disabled. The instance can be turned on in the event of an ourage of the primary component, but it is not automatically available.
    h1. Portal
    Load balanced with an external load balancer (sticky session enabled)
    h3. References:
    http://edocs.bea.com/alui/deployment/docs604/networking/c_loadbalancing.html
    h1. API
    h1. Publisher
    Publisher is able to be load balanced by breaking it up into components: publisher admin, publisher redirect, published content
    h2. Publisher admin
    Cannot be load balanced, use cold failover
    h2. Publisher redirector
    MPPE (or external?)
    h2. Published content
    external
    h3. References:
    http://fsanglier.blogspot.com/2008/02/alui-publisher-increase-performance.html
    h1. Collaboration
    External / MPPE (with collab internal clustering)
    (Although i'm currently having issues wtih this and someone reported that you can do without the collab internal clustering)
    h3. Collab's API
    When using the IDK to connect to collab, custom applications bypass the MPPE and communicate directly to the collab host, losing the benefit of the MPPE. In order to load balance in this situation, the collab host must use external load balancing. (is this true?)
    h3. "Search" service (the collab one) (only applies to 4.5 or newer)
    Install on same servers as collab?
    http://download.oracle.com/docs/cd/E13158_01/alui/collaboration/docs103/install/install.htm#i1138897
    h3. References:
    http://edocs.bea.com/alui/deployment/docs604/networking/c_loadbalancing.html
    recent collab outage related questions
    h1. Document Repository
    External
    h1. (AD/LDAP) Identity Web Services
    MPPE to the Web Services
    External between Web Services and AD /LDAP servers (or use HOSTS files to point each ADAWS server to a differnet AD server?)
    h1. Search
    (grid search: 6.1 or newer)The portal can load balance search requests internally. Each search node has knowledge of other nodes, so only 1 node needs to be reported to the portal. When the portal starts up, the 1 search node that is registered with the portal MUST be available.
    h1. Analytics
    Analytics UI
    (i'm not sure? i'm guessing anything would work here because the admin UI is pretty much read only on the database)
    Analytics collector can be load balanced (as of 2.5)
    http://download-llnw.oracle.com/docs/cd/E13158_01/alui/analytics/docs103/installALI/quickstart.html#wp1063387
    h1. Automation
    Load balancing for reduncancy is not possible. However, the work can be split up Automation servers are assigned to different folders. Don't assign 2 automation servers to the same folder, as they can compete for jobs. (?)
    h1. Content Upload
    (mppe / external)?
    h1. ALUI Directory Service
    h1. Remote Portlet Service
    ? (i'm gussing MPPE)
    h1. Notification
    ? no idea
    h1. What else am i missing?
    Edited by: Joel Collins on Apr 27, 2009 6:52 AM

    Here are few bits of info:
    For load balancing for Analytics, that isn't officially supported yet for the UI and Administration components. It might work with sticky sessions from portal-to-analytics but that doesn't get you much. Improving the options there would be a good enhancement request.
    For the collector, I think there are two important things to remember. Use broadcast mode. I've never actually seen it in unicast mode, but broadcast definitely works. Also, remember that this is all managed by Portal and Analytics - you don't use your own load balancer between Portal instances and the Analytics Collector instances.
    Finally, ALUI Directory is not certified to be load balanced yet. On a separate note, ALUI Directory has a socket leak on Windows due to a bug in the version of Jrockit that ships with it. Upgrading the embedded application server for the ALUI/WCI installation to jrockit-R27.5.0-jdk1.5.0_14 will resolve it.

  • Why do I have to overide internal Lyncpool FQDN when using hardware load balancing

    Hi!
    As the title says, why do I need to override the FQDN when using HLB? Why can't I just change the DNS entry of lyncpool01.domain.com to point to the HLB?
    Thanks!

    You'd want to override it because there are non-HTTP/HTTPS ports involved that are better load balanced using DNS. 
    http://social.technet.microsoft.com/wiki/contents/articles/22988.demystify-hlb-and-dns-load-balancing-lync-2013-topology-with-high-availability-pools-dns-lb-vs-hlb.aspx 
    http://technet.microsoft.com/en-us/library/gg615011.aspx
    If you want to use HLB for all internal ports, then you wouldn't necessarily need to override this. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Internal end points load balancing

    I have a cloud service with a web role of 4 instances, having 2 internal end points. I found that for internal end points azure load balancing is not supported. My question here is how to configure my own load balancer for my web role instances and
    if scale up happens based on CPU utilization can those scales instances included in my own load balancer. is auto scaling can be detected by my own load balancer.

    What do you mean by 'your own load balancer' ? are you pointing to the Azure traffic manager?
    If you have configured the auto scaling on your cloud service and if it is kicked in, azure load balancer will consider newly added / deleted role instances automatically.
    Bhushan | http://www.passionatetechie.blogspot.com | http://twitter.com/BhushanGawale

Maybe you are looking for

  • Parental controls for internet access

    I would like to be able use my macbook pro to manage our 4 children's access to the internet. Most importantly times of access but also some internet policing. We have an airport extreme base station and airport express. The children all have iPads o

  • Oracle 11g Active Data Guard help ?

    Hi Friends, I successfully setup an Active data guard environment(11g). But, I dont know when the PROD database is highly utilize , its read only tasks like reporting and backup are doing in STANDBY. How can I know which db (prod or stand by) is used

  • Things just work better in 10.6.6

    I have been playing with both Lion and SL 10.6.6 for some time now and have come to the conclusion things just work better in 10.6.6 and I can prove it. (well at least to me) I now have iCloud working for iCal and Mail and Notes in 10.6.6. This actua

  • An imbedded URL in email Windows Mail will not open web page in Firefox?

    Using Vista Home Basic & Firefox 19.0

  • Are all programs / configuration settings restored from a Time Machine backup?

    The hardrive in my late 2006 Macbook 2.0ghz laptop has finally kicked the bucket.  I confirmed this with an Apple Genius at my local Apple store after she plugged in an external drive and running disk utility to run a diagnostic. However, I forgot to