AppFabric - Windows Sever - ErrorCode ERRCA0017 :SubStatus ES0006 :There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable)

Hi All,
I have created a simple console application which will get the Cache from the cache server.
However i am getting the below error. my cache server is up and running. could any one help ?
ErrorCode<ERRCA0017>:SubStatus<ES0006>:There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also verify the following
conditions. Ensure that security permission has been granted for this client account, and check that the AppFabric Caching Service is allowed through the firewall on all cache hosts. Also the MaxBufferSize on the server must be greater than or equal to the
serialized object size sent from the client.)
Below is the code
static  DataCacheFactory _cacheFactory = Initialize();
static void Main(string[] args)
var cache = _cacheFactory.GetCache("Given the Cache name"); // getting an error here
var Key = "mykey";
var obj = cache[Key];
if (obj == null)
obj = "Sample";
cache.Add(Key, obj);
Console.WriteLine("Object added");
else
Console.WriteLine("Object was already in cache");
Console.ReadLine();
static DataCacheFactory Initialize()
var Config = new DataCacheFactoryConfiguration();
var Servers = new List<DataCacheServerEndpoint>();
Servers.Add(new DataCacheServerEndpoint("Given the cache host name", 22233));
Config.Servers = Servers;
var temp = new DataCacheFactory(Config);
return temp;
Navaneeth

Config.SecurityProperties = new DataCacheSecurity(DataCacheSecurityMode.None, DataCacheProtectionLevel.None);
After setting the above property it worked!
Navaneeth

Similar Messages

  • Getting Exception - ErrorCode ERRCA0017 :SubStatus ES0007 :There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)

    I have used Azure managed Cache (Basic tier) in my Web App deployed on cloud service.
    Now I am getting exception. ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state) on Production environment.
    I know, this exception is occurred when memory usage reached more than 95%. 
    I want to handle this issue in code so please provide the right solution.
    My Clients are facing it... so please help me .
    Its very urgent.
    Server Error in '/' Application.
    ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)
    Description: An unhandled exception occurred during the execution of the current
    web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0007>:There
    is a temporary failure. Please retry later. (The request failed because the server is in throttled state)
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace
    below.
    Stack Trace: 
    [DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)]
       Microsoft.ApplicationServer.Caching.DataCache.ThrowException(ErrStatus errStatus, Guid trackingId, Exception responseException, Byte[][] payload, EndpointID destination) +551
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.ExecuteApi(IVelocityRequestPacket request, IMonitoringListener listener) +287
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.Upsert(VelocityPacketType type, String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[]
    tags, String region, IMonitoringListener listener) +357
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.Put(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener
    listener) +74
       Microsoft.ApplicationServer.Caching.DataCache.InternalPut(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener
    listener) +288
       Microsoft.ApplicationServer.Caching.<>c__DisplayClass2f.<Put>b__2e() +146
       Microsoft.ApplicationServer.Caching.DataCache.Put(String key, Object value, TimeSpan timeout) +263
       Microsoft.Web.DistributedCache.<>c__DisplayClass31`1.<PerformCacheOperation>b__30() +19
       Microsoft.Web.DistributedCache.DataCacheRetryWrapper.PerformCacheOperation(Action action) +208
       Microsoft.Web.DistributedCache.DataCacheForwarderBase.PerformCacheOperation(Func`1 func) +134
       Microsoft.Web.DistributedCache.DataCacheForwarderBase.Put(String key, Object value, TimeSpan timeout) +148
       Microsoft.Web.DistributedCache.BlobBasedSessionStoreProvider.SetAndReleaseItemExclusive(HttpContextBase context, String id, SessionStateStoreData item, Object lockId, Boolean newItem)
    +177
       System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs) +1021
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34009
    Thanks
    hema

    You should add retry logic in case of retriable exceptions. If the retries fail as well you should reset the DataCacheFactory as suggested in this link.
    http://blogs.msdn.com/b/cie/archive/2014/04/29/cache-retry-fails-what-next.aspx
    Thanks,
    Pallav

  • ErrorCode ERRCA0017 :SubStatus ES0001 :There is a temporary failure. Please retry later. Every Hour

    Hi, 
    I am facing this error every hour. It does not happen randomly but it triggers every hour precisely. 
    I have half a dozen services connecting to the cache and all of them would get this error at the same time every hour. 
    The cache is working properly expect this "downtime" every hour. 
    Any idea?
    Thanks

    You should add retry logic in case of retriable exceptions. If the retries fail as well you should reset the DataCacheFactory as suggested in this link.
    http://blogs.msdn.com/b/cie/archive/2014/04/29/cache-retry-fails-what-next.aspx
    Thanks,
    Pallav

  • Azure Cache ErrorCode ERRCA0017 :SubStatus ES0006

    Hello everyone.
    Im trying to access MS Azure Cache service and pretty often I get this error:
    Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0006>:There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also verify the following conditions. Ensure that security permission has been granted for this client account, and check that the AppFabric Caching Service is allowed through the firewall on all cache hosts. Also the MaxBufferSize on the server must be greater than or equal to the serialized object size sent from the client.). Additional Information : The client was trying to communicate with the server: net.tcp://remoto.cache.windows.net: line 23233.       at Microsoft.ApplicationServer.Caching.DataCache.ThrowException(ErrStatus errStatus, Guid trackingId, Exception responseException, Byte[][] payload, EndpointID destination)       at Microsoft.ApplicationServer.Caching.SocketClientProtocol.Get(String key, ref DataCacheItemVersion version, ref TimeSpan timeout, ref ErrStatus err, String region, IMonitoringListener listener)       at Microsoft.ApplicationServer.Caching.DataCache.InternalGet(String key, ref DataCacheItemVersion version, String region, IMonitoringListener listener)       at Microsoft.ApplicationServer.Caching.DataCache.<>c__DisplayClass53.<Get>b__52()       at Infrastructure.Azure.Cache.AzureCacheServiceClient.<>c__DisplayClass6`1.<Get>b__5() in AzureCacheServiceClient.cs: line 88       at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction(Func`1 func)
    It happens when Im trying to access some object in cache like this:
    public T Get<T>(string key)
    return retryPolicy.ExecuteAction(() =>(T) (_cache.Get(key)));
    Here is my initialization code:
    var cacheFactory = new DataCacheFactory();_cache = cacheFactory.GetDefaultCache();
    var retryStrategy = new FixedInterval(15, TimeSpan.FromSeconds(2));
    _retryPolicy = new RetryPolicy<CustomCacheTransientErrorDetectionStrategy>(retryStrategy);
    And app.config:
    <configSections>
    <section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere" />     
    <section name="cacheDiagnostics" type="Microsoft.ApplicationServer.Caching.AzureCommon.DiagnosticsConfigurationSection, Microsoft.ApplicationServer.Caching.AzureCommon" allowLocation="true" allowDefinition="Everywhere" />
    </configSections>
    <dataCacheClients>
    <dataCacheClient channelOpenTimeout="1000" requestTimeout="45000" name="default">
    <autoDiscover isEnabled="true" identifier="[some.host.name]" />
    <securityProperties mode="Message" sslEnabled="true">
    <messageSecurity authorizationInfo="***" />
    </securityProperties>
    </dataCacheClient>
    </dataCacheClients>
    It happend at least three times already while the Azure Health Status (https://azure.microsoft.com/en-us/status/) said everything was fine at that time.
    As the exception message says - there are some 'temporary' failures on MS side still maybe I'm doing smth wrong in my code?

    Hi,
    This issue might be happed due to hitting the Windows Azure Cache limitation, where you can not add more than 8MB data at a time. The simple workaround for this issue is to split the object into smaller chunks, i.e  you can  serialize the object
    into smaller byte arrays and pass the arrays to cache as multiple objects.  I recommend you could refer to this blog:
    http://blogs.msdn.com/b/pkc/archive/2011/12/21/datacacheexception-errorcode-lt-errca0017-gt-substatus-lt-es0006-gt.aspx
    Any questions, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode ERRCA0017 :SubStatus ES0002 :

    Hello everyone!
    For a long time I've been using the shared cache feature without any trouble with a Windows Azure Website (using session cache).
    The last couple of days, I've been receiving a slew of errors: 
    Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0002>:
    It continues by saying this:
    There is a temporary failure. Please retry later. (The request did not find the primary.). 
    I really don't understand why this is happening now. It was working fine. And all my configuration settings in my web.config are correct.
    The URL is right, and my key is right.  What could be wrong?
    Thanks!
    -Eric
    Eric

    Hi,
    Did you update your azure SDK? Or encounter this issue without doing anything? From my research, I found an article,
    Please have a look at it:
    http://blogs.msdn.com/b/akshar/archive/2011/05/01/azure-appfabric-caching-errorcode-lt-errca0017-gt-substatus-lt-es0006-gt-what-to-do.aspx 
    Hope this helps
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Safari - Facebook: "There was a temporary error, please try again. Click to send again."

    Hi all,
    I have a macbook 15 (Late 2008) with 10.6.8 running + Safari 5.1.10 and I have experienced two problems with the Facebook chat:
    1. Often (but I would say almost always) the chat window is cut below and I cannot visualize the box where to type my messages.
    2. Today I have installed the FacebookVideoCalling_v1.6 to perform video calling, and what I am not able to send messages, but I always got the error: "There was a temporary error, please try again. Click to send again." Nevertheless, by following the suggestion to try later, does not solve the situation.
    Does anyone experienced the same problem?
    If it can be useful, I have some additional info. This the Java version I have:
    java version "1.6.0_65"
    Java(TM) SE Runtime Environment (build 1.6.0_65-b14-462-10M4609)
    Java HotSpot(TM) 64-Bit Server VM (build 20.65-b04-462, mixed mode)
    And here is what I got under the menu "Developers"  (the screenshot is in italian, but I guess it is easy to understand it. Some translation: Svluppo = Develop, Mostra = Show, Abilita = Enable, Disabilita = Disable)
    Any hint? Thanks!

    Hi Damian,
    You can follow the article: Creative Cloud Help | Download Error in Apps tab of Creative Cloud Desktop Application which will help you to get your issue fixed.
    Let us know if it still gives you any issues.
    Thanks,
    Ratandeep Arora

  • When setting up my emails on ICloud, a window says that there was a problem and please retry. Why? IOS 5.1.1

    When  I set the emails on ICloud, I have to get a new ICloud email address and as soon as I press on send (next), a window shows me that a problem occurred and I need to retry. My IOS is 5.1.1 and the system tells me it is still good enough for use with ICloud. The emails on ICloud are not down for service. What kind of problem can occur, why isn't it working?
    Robert

    Does the iPod work OK?
    Does it charge when connect to the computer?
    Does it appear in My Computer?
    Look at the dock connector on the iPod. Compare with the iPod that does work/connect.
    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1
    http://support.apple.com/kb/HT1353#iPod_touch_late2009
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • Error install software on Windows Sever 2012

    Hello!
    I'm using a VPS Cloud. used OS Windows Sever 2012.
    I can not install any
    software on it. Simple as firefox, error: Cloud not find...runtime or adobe flash player...ect.
    Please help me install.
    Thank you
    Regards
    Danny |

    So, if I understand correctly, you have cloud hosted servers (Server 2012) and you're trying to manage via ConfigMgr 2012 (install software etc).
    1. Are these servers part of your domain?
    2. What connectivity is there to the servers?
    3. Have you created a boundary for the servers and added to a boundary group?
    4. Have you successfully installed a ConfigMgr client and it is reporting correctly? 
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Windows 7 Home and Windows Sever 2012 Mulit-boot

    Hello i am currently running a windows 7 home premium just wondering if there's any way i can run my trial version of windows sever 2012 but keeping my windows 7 as well?
     

    Hi,
    Yes, for the Mulit-boot configuration, please take a look at the article below:
    Install more than one operating system (multiboot)
    Please note, we must install the older operating system first, and then install the more recent operating system. If you don't (for example, if you install Windows Vista on a computer already running Windows 7), you can render your system
    inoperable. This can happen because earlier versions of Windows don't recognize the startup files used in more recent versions of Windows and can overwrite them.
    If we installed the newer version fist, and then the older version, then we might try to configure the boot entries to make it work in mulit-boot. More information, please take a look at the link below:
    Adding Boot Entries
    Hope this may help
    Best regards
    Michael Shao
    TechNet Community Support

  • I can not upgrade to quicktime 7.7.3 for windows vista.  Error message says there is a problem with the program installer.  Any clue as to how to get around this.

    I can not download quicktime 7.7.3 for windows vista.  The error message says that there is a problem with the windows installer.  Any clues?

    The error message says that there is a problem with the windows installer.
    What's the precise text of the message, please? (There's a few different ones I can think of that you might be getting.)

  • Has Apple acknowledged the problem yet with itunes aborting preview of songs after about 10 seconds on windows 7 and if so is there an answer other than ipconfig?

    Has Apple acknowledged the problem yet with itunes aborting preview of songs after about 10 seconds on windows 7 and if so is there an answer other than ipconfig?  IPConfig /flushdns doesn't help at all.  Until they fix it I will be previewing and buying my songs thru Amazon.

    Doublechecking ... do you still get that if you update to iTunes 10.6.3.25 (just released today)?
    http://www.apple.com/itunes/download/

  • TS1538 I have an iPod Touch IOS 4.2.1 that Windows 7 home premium can't see.  Says there's a driver problem.  My other one with IOS 5.1.1 works on the same cable and computer. I don't know where to go.

    I have an iPod Touch with 4.2.1 that won't connect to my Windows 7 Home Premium laptop.  It gives a "USB Device Not Recognized" error when I plug it in to a USB port.  My wife's (newer) iPod Touch with IOS 5.1.1 works just fine with no errors.  I'm using the same port - I just moved the cable from one iPod to the other. I've tried the various different drivers using Update Drivers.  I let it search the internet and it says "The best driver software is already installed", but the device shows as "Unknown Device".  I did the browse my computer, unchecked the "Show compatible hardware", and selected Apple, Inc..  There were two Apple iPod USB Drivers.  One was 6.0.9999.53 and the other was 6.0.9999.61.  Neither of these works.  I'm thinking that the maybe I need to upgrade the iPod touch software version - but I don't know how to get to it.  Can this be loaded over WiFi?  Any other ideas?

    Does the iPod work OK?
    Does it charge when connect to the computer?
    Does it appear in My Computer?
    Look at the dock connector on the iPod. Compare with the iPod that does work/connect.
    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1
    http://support.apple.com/kb/HT1353#iPod_touch_late2009
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."

    Hello,
    I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."
    Please heLp.
    Thank you.

    Repair your Apple Sofyware update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install

  • When I download the new itunes (on my pc); going through the dowload process it stop me and a window pops up and it says: (there is a problem with this windows installer package. A program required for this install to complete could not be run.) Help

    when I download the new itunes (on my pc); going through the dowload process it stop me and a window pops up and it says: (there is a problem with this windows installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor.)
    I have tried several times to redownload and keep getting the same message. what am I doing wrong...

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I have Windows 7 and was wondering if there was a version of Firefox called "Nightly"? The File type of a Nightly.Ink. Also, every time I open "Nightly" now I g

    I have Windows 7 and was wondering if there was a version of Firefox called "Nightly"? The File type of a Nightly.Ink. Also, every time I open "Nightly" now I get a program update popup and it says "update.exe". Is this a part of Firefox "Nightly" or is it a virus? Please answer this so I can relax. My email is [email protected]

    There is a version of Firefox named Nightly, but most people do not have it installed. Currently:
    * Firefox 24 (released)
    * Beta (future Firefox 25, subject to some changes)
    * Aurora (future Firefox 26, subject to many changes)
    * Nightly (rapidly evolving future Firefox)
    I can't answer your detailed questions about Nightly, however, please make a backup of your profile before removing it, if you remove it, as some users have reported losing all their personal data when doing that.
    * [[Back up and restore information in Firefox profiles]]
    * [[Profiles - Where Firefox stores your bookmarks, passwords and other user data]]

Maybe you are looking for