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

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

  • 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

  • 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.

  • Just downloaded OS X Lion. Now, there's no curser bar to scroll up or down for any of the pages I access....if I use the keyboard arrows for up/down, there is a temporary scroll bar, however it disappears after a few moments. Help!!

    Just downloaded OS X Lion. Now, there's no curser bar to scroll up or down for any of the pages I access....if I use the keyboard arrows for up/down, there is a temporary scroll bar, however it disappears after a few moments. Help!!

    Go to System Preferences->General. There you can set how you wamt thescrool bars to behave.
    If you want to see the scrool bars all the time select Always

  • My weather app in iOS 8 stopped working.  Either there are no temperatures of other data, or every city is 86 degrees F.

    My weather app in iOS 8 stopped working.  Either there are no temperatures or other data, or every city is 86 degrees F.

    Hey Jjohnk83776,
    Thanks for the question. I understand that you are experiencing issues with the Weather application on your iPhone 6. Let’s see if we can troubleshoot this issue. First, try restarting the Weather app:
    Force an app to close in iOS - Apple Support
    http://support.apple.com/HT5137
    If the issue persists, try restarting your device:
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    http://support.apple.com/HT1430
    Thanks,
    Matt M.

  • HI there, I am having trouble updating my CS5 Master's Collection Suite for at least a month now. I keep gettin this message "There was an error downloading this update. Please quit now and try again later" every time and do not know how to fix it.

    I am having trouble updating my CS5 Master's Collection Suite for at least a month now. I keep getting this message "There was an error downloading this update. Please quit now and try again later" every time and do not know how to fix it.
    Any help will be highly appreciated.
    Thanks a lot in advance.
    Sincerely,
    Uvaldocj@@
    Here is a list of the products I am troubled with:
      Adobe After Effects CS5 10.0.2 Update
    There was an error downloading this update. Please quit and try again later.
      Adobe Bridge CS5 4.0.5 Update
    There was an error downloading this update. Please quit and try again later.
      Adobe Extension Manager CS5 5.0 Update
    There was an error downloading this update. Please quit and try again later.
      Adobe Illustrator CS5 15.0.2 Update
    There was an error downloading this update. Please quit and try again later.
      Adobe Pixel Bender Toolkit 2.5 Update
    There was an error downloading this update. Please quit and try again later.
      Adobe® InDesign® CS5 7.0.4 update
    There was an error downloading this update. Please quit and try again later.
      Dreamweaver CS5 11.0.4 Updater
    There was an error downloading this update. Please quit and try again later.
      Fireworks CS5 11.0.2 Update
    There was an error downloading this update. Please quit and try again later.
      Photoshop 12.0.4 update for Photoshop CS5
    There was an error downloading this update. Please quit and try again later.
      Photoshop Camera Raw 6.7 Update
    There was an error downloading this update. Please quit and try again later.

    I'm having the same issue. And Dreamweaver now crashes after just a few seconds.

  • When trying to purchase anything on iTunes I am getting an error message (there was a problem with the itunes store. Please try later -42408).  Why is this?

    When trying to purchase anything on itunes I am getting an error message.  (There was an error in the itunes store.  Please try later - 42408)   Why is this?

    poppypower wrote:
    When trying to purchase anything on itunes I am getting an error message.  ...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I just bought an iPhone 4s. Now the search iphone function is not working. When I swipe the screen to the left, the search box appears but when I type what I want to search for, there is no action. Please help.

    I just got an iphone 4s. Now the search iphone function is not working. When I swipe the start screen, the search box shows up. But when I type what I want to search, there is no action. Please help.

    Try this...
    You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... (But can take Longer...)
    Release the Buttons...
    Turn the Phone On...

  • Is there a way of finding out how many active hours you've worked on a Premiere project?

    If not, it'd be a very cool addition for Adobe to implement... so you know exactly how many hours a project is taking (and how much to charge clients etc.) Obviously we're all prone to leaving Premiere on and wandering away, so I guess it would need to be able to differentiate between active and non-active time...

    Is there a way of finding out how many active hours you've worked on a Premiere project?
    There are two things a client get's billed for, my time, and my computer's time.  If either one of us are working on a project, the client get's billed.  Even if Adobe spent (wasted?) time on adding such a feature, they'd never be able to include any time I've spent working on the project with PP closed, so this feature would have very, very, VERY limited usefulness.
    The method suggested by the images is still the best way.

  • Is there any way of exporting a clip (example 1 hour) into 4 seperate 15 min clips at the same time? Or does anyone have any ideas along the same lines to save time? Add my skype baconhousevidz if you can help or are unsure of what im asking

    Is there any way of exporting a clip (example 1 hour) into 4 seperate 15 min clips at the same time? Or does anyone have any ideas along the same lines to save time? Add my skype baconhousevidz if you can help or are unsure of what im asking
    thanks everyone

    BaconHouseVidz wrote:
    … at the same time…
    in hope to speed things up?
    no, no effect.

  • My ipod touch is charing very slowly there is no icon but it took me 24 hours to get a full charge and its only 5 mounts old

    my ipod touch 4g is charing very slowly there is no icon but it took me 24 hours to charge it so how

    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar                 

Maybe you are looking for

  • Why does my project keep quitting on it's own?

    Hello all; I have a important editing to do, but my Premiere project keeps quitting on it's own, I have no clue why. It never happened before, and the only thing that has changed is that I'm not on the same wifi and the same screen, I brought my Mac

  • How do I get email addresses to show up as John Doe rather than Doe John?

    When I start to enter a new address in the To: field I begin by typing the first name. This usually brings up suggestions from my address book in the First Name/ Last Name format. When I click on the name I want it appears in the Last Name/First Name

  • A repeating plug-in container issue

    I am trying to update Roboform and everything seems fine until I get to the Roboform Landing where it lists all of the fixes, and then an error message pops up that says: Can not load RoboForm add-on Please restart browser or reinstall RoboForm TypeE

  • Adobe Jensen Pro from CS2 to CS5

    In Indesign CS2 one of the fonts was Adobe Jensen Pro, which I liked. Now in CS5 it seems not to be one of the Adobe fonts provided by the software. Can one transfer the font Adobe Jensen Pro from CS2 (running in a Windows machine) to CS5 (running on

  • How can (parse) i use XML file with missing EndTag

    hi, i have an application which writes an "XML file". another application should read that XML file, build an DOM and access the nodes with xpath. my problem. if the first application is not finished there are tags missing. e.g. </xml>. but the secon