Colocation of client and key owner for writes

Hi,
In a distributed, replicated cache (1 backup copy) does the write to the backup owner for the key happen in parallel with the write to the primary owner? Or does the primary owner issue a synchronous update to the backup owner for the key? Other?
We are considering routing HTTP requests to the primary owner of a key to keep the primary update local and therefore only incur latency for the synchronous write to the backup owner. Would we see any benefit from doing this?
We do realize that primary owners can move with removal and/or addition of nodes and only see this as an optimization, not a requirement.
We are using Coherence version 3.3.
Thanks.

Bob,
>
>
I don't think you provided all relevantinformation
about this. What key and data are we speakingabout?
What would do the directing of the http request? The key and data are arbitrary, but it could be a set
of keys assigned to the same partition (using
Partition Affinity) that collectively represent a
session. The request would be directed by a network
device (e.g. F5).
What you outline here depends on and assumes a couple of things:
1. The load-balancer is aware of key ownership in a partitioned cache service and also does failover based on this. I am not sure if any hardware load-balancer is capable of doing that. Also, in that case the load-balancer would need an additional Coherence licence.
2. The load-balancer is able to translate or extract the key data from the HTTP request / its observations of the previous requests in the HTTP session. Again, I find it unlikely, but a little bit more doable.
3. As you say that the load-balancer directs the request to the specific node owning the key, that would mean that your Webapp nodes and only they would be the storage-enabled nodes for the data you refer on.
This (among others) means
- that you won't be able to bring down the JVM of the web containers without losing access to the cached data.
- your Coherence nodes has to be running inside the web container JVMs which possibly means additional licence costs (for other software in the web container) if the web container is not free
Even if there are such load-balancers (are there any?), are you sure you really want to do the things outlined above?
I think it is much more sensible to have a web container tier which has nothing to do with Coherence, and this way the load-balancer does not have to be Coherence-aware, and it allows you to be more flexible in the system architecture and the Coherence features you use, and not be constrained by what the load-balancer's Coherence features (if such a load-balancer exists at all) direct you to.
In a partitioned cache service (distributed ornear
cache) the write is always communicated to theowner
of the primary copy of the partition containingthe
relevant key, and that node communicates thechange
to all backups. This is done synchronously fromthe
client's viewpoint, meaning that this is allcarried
out before the put method call returns on the
client.From your reply, I believe we would be reducing
latency on our updates by routing the requests to the
node with the partitioned which owns the set of keys.It theoretically would, however I am not really sure that it is possible to do that from a load-balancer, and if it is worth doing that at all.
Are we really speaking about HTTP requests?
BR,
Robert

Similar Messages

  • Create a client and logical system for BW

    Hi all,
    Can anyone show me how to create a BW client?
         create a BW client and logical system for BW client.
         create sourcesystems for the other clients in BW.
    I have follow some documents
    B84: BI Connectivity
    B03: General Settings BI Integration
    But it's not working the data can't flow to BW server.

    hi,
    check out the following thread's. it will guide you
    Connection steps for SAP BW and R/3
    Info required  while  creating source system
    R/3 Source system creation error in BW 7.0
    regards
    harikrishna N

  • My Safari browser is not working well. Junk pages keep poping in and key pages for me appear intoxicated by alien pop ups preventing me navigate that page. Updated last Safari version and problem prevailed. Tried downloading Safari for Mac OS X Mavericks.

    My Safari browser is not working well. Junk pages keep popping up and key pages, for me, appear intoxicated by alien pop ups preventing me navigate that page.
    I updated to latest Safari version (7.0.4) but the problem persists.
    I tried downloading a new version of Safari for Mac OS X Mavericks but couldn't find it available.
    Thanks for your help.

    The pop ups are malware. It's not necessary to reinstall Safari.
    Help here ..
    The Safe Mac » Adware Removal Guide
    The Safe Mac » Genieo
    The Safe Mac » Mac Malware Guide
    Just so you are aware, on a Mac running Mavericks, the only way to reinstal Safari to to restore OS X using OS X Recovery

  • DT require Oracle9i client and Oracle Services for MTS software

    "Distributed Transactions require Oracle9i client and Oracle Services for Microsoft Transaction Server software."
    I get the error above when attempt to run a COM+ transaction accessing Oracle9i. I'd been checked the installation of Oracle9i and Oracle Services in the client computer and it is ok.
    I am using Windows Server 2003 and the database server is on another Windows Server 2003. The database is Oracle9i Enterprise Edition.
    At Stanford's web site (http://www.stanford.edu/dept/itss/docs/oracle/9i/win.920/a95496/ch1.htm#1079911) I found Oracle's documentation that explains this, but it didn't worked for me.
    Oracle Services is installed in both machines.
    The Oracle MTS Recovery Service is running.
    The COM+ component is registered.
    When I use the same component with SQL Server 2005 beta 2 it works fine. What else do I need to do?
    Thanks in advance.
    Caio Pereira

    Hi.
    I have the same problem, one which works and another which don't (almost though).
    I got most of it to work by taking the mtsservices registry entry from the server that works and put it on to the other after i have made the service in Oracle management console for mts.
    Now i can search, delete, change but not make a new entry into the database.
    And thats where i'm stuck now.
    Hope it helps a bit..
    Michael
    Greenland

  • Keep client and language information for login after timeout

    Hello experts,
    i'm using the url parameters sap-client and sap-language that the user can login without them. The parameters are filled on a mobile device and on different plants these parameters are different. When the user logout with the logout button the method server->logoff( ) will be called in the main controller. Then a logout view will be called that redirect the user to the login page and fill the parameters into the url again.
    My problem is when a session timeout occurs or the session will be closed manually the login screen appears again after the next request, but with the default client and language.
    I'm looking for a way to fill these parameters when a timeout occurs.
    Thanks and best regards,
    Tobias

    I found a working solution for my problem. With the following code in the do_init method of my main controller, the url will be renewed right after the login:
    DATA: lv_url   TYPE string,
          lv_tmp   TYPE string,
          lv_laiso TYPE t002-laiso.
    lv_url = me->co_controller_name.
    lv_tmp = sy-mandt.
    CALL METHOD cl_http_server=>append_field_url
      EXPORTING
        name  = 'sap-client' ##NO_TEXT
        value = lv_tmp
      CHANGING
        url   = lv_url.
    CALL FUNCTION 'CONVERT_SAP_LANG_TO_ISO_LANG'
      EXPORTING
        input  = sy-langu
      IMPORTING
        output = lv_laiso.
    TRANSLATE lv_laiso TO LOWER CASE.
    lv_tmp = lv_laiso.
    CALL METHOD cl_http_server=>append_field_url
      EXPORTING
        name  = 'sap-language' ##NO_TEXT
        value = lv_tmp
      CHANGING
        url   = lv_url.
    CALL METHOD me->response->redirect
      EXPORTING
        url = lv_url.
    CALL METHOD me->navigation->response_complete.

  • How to choose the characteristics and key figures for a cube

    Hi Gurus,
    To create a CO-PA cube, based on a DataSource, what chars and kfs should I select from std objects? I have the list of fields from the datasource, but how to interpret what infoobject/s are relevant for each io?

    To create a CO-PA cube, based on a DataSource, what chars and kfs should I select from std objects? I have the list of fields from the datasource, but how to interpret what infoobject/s are relevant for each io?
    Hi,
    For CO-PA since it is a generated DataSource, except for the common characteristics ( E.g. Company Code, Controlling Area ) where you get standard InfoObjects for all other Characteristics and Key Figures you end up creating custom or Z characteristics and key figures. This is unavoidable.
    Assigning points is the only way of saying thanks in SDN
    Thanks,
    Shan.

  • Oracle 817 client and MS driver for oracle

    Hello
    I had installed oracle 8.17 client on my machine.
    Suddenly, my datasource with "MS driver for oracle" seems not to be working.
    I uninstalled 8.17 and installed 8.16.
    No matter, what I do, I cannot get the datasource setup with "MS driver for oracle" work
    Anyone has similar experience
    -Aswath

    What error message are you seeing? I've never seen any conflict between the Oracle and Microsoft drivers.
    You could try downloading the latest version of the MDAC (Microsoft Data Access Components) from Microsoft <http://www.microsoft.com/data>. That will have the latest version of the Microsoft driver.
    I'm assuming that you have already tried deleting and re-creating your DSN. If you haven't, that would be a good first step.
    Justin

  • Problem in display of char. and key figure for yearly query

    Hello all,
    I got a query in which i have to do restriction on
    Calendar Day/Month in Rows under Material which is a Characteristics
    So it should be
                                                               PACKAGE QUANTITY
                                            JAN  FEB  MAR   APRIL.......DEC
    PACK1
    PACK2
    PACK3
    PACK4 for current year
    PACK4 for prior YEar
    Now the months display is not pre decided, it can be anything as per the input of user.
    So i have to restrict it on Calendar month for Material twice
    In current year , just introducing the Interval range variable
    In previous year, same restricition with offset -12
    Now the problem is while displaying it shows
                                           JAN'06 JAN'07  FEB'06 FEB'07  MAR'06 MAR'07........ 
    PACK1
    PACK2
    PACK3
    PACK4 for current year
    PACK4 for prior YEar
    Which is not desirable.
    I only want value for Jan in one column
    and for previous year and current year in different rows thats it.
    If i remove Calendar year/month from columns there is no way I CAN DISPLAY MONTHS .
    How to achieve this.
    Please suggest.

    Kartikey,
    Rusty's suggestion wont work - using two characteristics for year and month will have the same effect as the position you are in at the moment.
    ie..
    2007     Jan.07     Feb.07    Mar.07   Apr.07
    2006 -
    Jan 06  Feb 06  Mar 06
    If you have the posting period of 01 - 02 - 03  (just the period number only, no year) then your query will display
    2007-01-02-03-04
    2006-01-02-03-04
    Regards
    Gill

  • How can I create a black and white table for Write BMP File.vi?

    I just want to create a black and white array to create the picture in B'n W

    You can use this VI, which outputs an 8-bit Greyscale Color Table.
    Good luck,
    Jim
    Attachments:
    8-bit_Greyscale_Color_Table.vi ‏11 KB

  • How to check owner for one interface in production system?

    Hello All,
    Please tell me the transaction were i can check owner for one interface in production system.
    Client had created owner for one interface, so were can i check it.
    Thanks and Regards,
    Chinna

    Thanks for the reply,
    i dont want to check the developer name in IR /ID.
    in production system one interface is running and i got mail to check the  generic user and role for that interface.
    iam also bit confused on it
    If u have any idea let me know.
    Thanks and regards,
    chinna

  • SBO Client and Windows Vista in workgroup Licence error

    Hi!
    My customer runs B1 2004C. Network structure is workgroup. Client and server are in the same workgroup. XP users connect successfully, but new Vista user gets the licence error: "-2147024891 Access denied". DCOM and other customizations on the licence server are done like in SAP Notes. It doesn't help.
    I know Vista is not officially supported by 2004C B1, but i have several Vista users running SBO fine in domain structure. I think the trouble is in the workgroup.
    Thanks a lot!
    David.

    Hi David,
    some of the SAP Notes addressing DCOM access denied problem of 2004 releases.
    <b>Note 833798 - After Upgrade W2003 to SP1: Access denied -2147024891</b>
    Symptom
    After upgrading Windows 2003 server to SP1 you get the access denied error -2147024891
    Other terms
    license server, error -2147024891
    Reason and Prerequisites
    Upgrade to Windows 2003 server changes security settings
    Solution
    The problem is caused by SP1 for W2003 Server. You have to change the
    default configuration of the DCOM to enable clients to access license
    server again:
    1. go to "Start/run", type in "Dcomcnfg" and the Dcom configuration will open
    2. expand "Component Services"
    3. right click on "my computer", open "Properties"
    4. go to tab "Com Security"
    5. in "launch and activation permission" go to "edit limits" this
    button is new since SP1
    6. tick the boxes "remote launch" and "remote activation" for user
    "everyone"
    After that the clients can access the license server again, if all nescessary rights are give in the DCOM as well. When the changes described above did not take effect, please check this additionally:
    1. go to "Start/run", type in "Dcomcnfg" and the Dcom configuration will open
    2. expand "Component Services"
    3. Go to "SBOLicense", open "Properties" by right-clicking the mouse
    4. On register tab "Security" customize all permissions. Add all nescessary User accounts there. If you add i.e. User Group "Everyone" there, you will not have access right problems any longer, as every user belongs by default to this group.
    If that change does not take effect immediately, reboot the server.
    This note is permanently updated. If you have any comments or proposals tho improve it, please contact the SAP Business One Hotline and let us know.
    <b>Note 824976 - error -2147024891, access denied to license server</b>
    Symptom
    error -2147024891 when trying to connect with B1 client to license server on another computer The License mechanism needs a properly set up license server which is available over the network via DCOM interface to client computers. The necessary windows user rights must be assigned to client and server.
    Other terms
    Access denied, SAP Business One, License server
    Reason and Prerequisites
    Functionality description
    Solution
    1. Is the license server up and running?
    The B1 client on the license server computer should be started and logged into to ensure that there are no problems withs the license server itself. The B1 Server tools should be opened and the settings of the License Manager should be checked so that it is possible to connect by pressing the Connect button.
    2. Is the network connection between client and license server working?
    The server should be pinged via its IP-address for a response. Any firewalls should be disabled between client and license server for troubleshooting reasons as they can effectively block data packets which are needed for license mechanism. If a VPN is used between client and license server all ports should be available.
    3. Are necessary windows user rights in the domain given?
    We highly recommend to use B1 in a windows domain, as this is the only way to manage user accounts effectively. Domain user accounts have to be configured on the domain controller computer only. For troubleshooting reasons log in at the client with the windows domain administrator account, that should prevent the user from being blocked due to a lack windows user rights. According to our recommendations the users should be Power Users on the local computer.
    4. Are necessary windows user rights in a workgroup given?
    If the user is in a windows workgroup, the same user account should be configured with the same password on the license server and on each client computer as well. For troubleshooting reasons a local admin account should be configured on each of these computers. As account information is stored locally on each computer, username and password must be exactly the same on each of the machines. Login with this local administrator account. According to our recommendations the users should be Power Users on the local computer.
    5. Is DCOM installed and configured correctly?
    On the license server DCOM interface should to be installed and configured correctly. It is located under Control panel\administrative tools\ component service. Expand and in My Computer you will find DCOM Config\SBO License. Open its Properties and check configurations in Security tab. Add user accounts there, if needed.
    DCOM should be enabled on the Client machines and on the server(s). In the Component Services expand to My Computer and right click to open the Properties for My Computer. Go to the Default Properties tab and make sure that 'Enable Distributed COM on this computer' is ticked. If these settings are modifed a restart of the computer is needed for the changes to take effect.
    Br,
    Chris

  • STMS - Transport Routes - Multiple Clients and Systems

    Hi Guys
    We are setting up a ERP Landscape based in four systems
    AED - Gold Development (Most Development starts from here)
    AEC - Customer Development (101,102,103...)
    AEQ - Customer QA (401,402,403,...)
    AEP - QA Production  (701,702,703,...)
    Our main goal is to release transports from AED 100 to all clients in AEC (101,102,103...)
    CTC was already set up to 1, and all system share a same Trans Dir
    For this purpose I have created a transport Group /SOD_DEV/ and added AEC 101, 102 and new clients would be added
    Only customizing request should be replicated on each client, and workbench only for one client.
    Then, I need also all the transports from AEC go their respective client transport queue in AEQ and AEP
    Example:
    AEC 101 --> AEQ 401 --> AEP 701
    AEC 102 --> AEQ 402 --> AEP 702
    And in the future it should be able to expand to
    AEC 103 --> AEQ 403 --> AEP 703 and go on.
    My questions are:
    Should I create a Transport Group for Customizing and Transport Layer for Workbench? O can I use a single Tranport Layer for both Workbench/Customizing?
    How can i create a route from AEC so transports who got imported in 101 are automatically delivered to 401 and then 701?
    Thanks
    Martin

    Hi Yuksel, thanks for your input.
    We agree with a tranport Group between AED and AEC. Transport layer is ZAED.
    All developments made in AED, are distributed to Transport Group /SOD/ to all AEC clients (100,101,102...)
    Now comes the tricky part
    for example, all requests that were imported in AEC 101 should be delivered to AEQ 401 and then delivered to AEP 701 only
    That why I didn't put a transport group between AEC and AEQ, since it should be a dependency.
    Any transport that was imported on AEC should follow their respective route
    Workbench: AEC 100 --> AEQ 400 --> AEP 700 (Sytem-Wide Workbench requests)
    Client 1: AEC 101 --> AEQ 401 --> AEP 701 (Client-Dependent Customizing)
    Client 2 :AEC 102 --> AEQ 402 --> AEP 702  (Client-Dependent Customizing)
    And it wiil follow with
    Client 3 AEC 103 --> AEQ 403 --> AEP 703 (Client-Dependent Customizing)
    It created these delivery routes; as example for Client1:  AED101-AEQ401 and AEQ401-AEP701. Is that correct?
    See attached the screenshot for better reference, you are welcome to further suggestions
    Best
    Martin

  • Problems Oracle 9iDB and ASO Configuration  for Cybersafe

    Oracle 9iDB installation on Solaris with ASO option
    Objective
    My objective is to configure Oracle 9iDB, Release 9.0.1 ASO on Solaris for external authentication using Cybersafe ActiveTRUST, which is a Kerberos, based authentication product.
    Question
    Getting ORA-12641: Authentication Service failed to initialize when trying to connect to Oracle 9iDB using sqlplus from a Oracle 9i Client machine, when ASO is configured for Cybersafe authentication on both Oracle 9iDB and Oracle 9i client
    Can anyone help me setup Oracle 9iDB and Oracle 9i client for ASO using Cybersafe Authentication?
    Environment
    1. I have a Solaris box as my Oracle 9iDB server
    2. I have an NT Server as my Authentication server and Oracle 9i Client.
    Installation Procedure
    I installed as per the steps given in the doc, Oracle Advanced Security Administrators Guide, Release 9.0.1
    Authentication Server / Oracle Client setup (NT Server)
    I installed on the NT Server the following
    1. CyberSafe ActiveTRUST 4.0 Security Server on the NT Server, which acts as an Authentication server.
    2. CyberSafe ActiveTRUST 4.0 Security Client
    3. Cybersafe Application Security Toolkit (GSS runtime libraries) as needed by Oracle ASO setup procedures.
    4. Oracle 9i Client, custom installations with ASO option.
    Oracle 9iDB Server Setup (Solaris Server)
    I installed on the Solaris Server the following
    1. CyberSafe ActiveTRUST 4.0 Security Client
    2. Cybersafe Application Security Toolkit (GSS runtime libraries)
    3. Oracle 9iDB server, custom installation, with ASO option selected.
    Installation of all the above components is successful.
    Note: Installation of Oracle 9iDB server with ASO option never prompted me to choose a Authentication mechanism like Cybersafe, or Kerberos or Radius etc..,
    Note: Oracle 8.1.7 DB installation on NT actually prompted for Authentication mechanism selection.
    ASO Configuration:
    I configured ASO on the Oracle server and client side as mentioned in chapter 5 of Oracle Advanced Security Administrators Guide, Release 9.0.1
    I created an external user in Oracle, [email protected] as mentioned in http://download-uk.oracle.com/otndoc/oracle9i/901_doc/network.901/a90150/1004747
    I configured the NT server, Oracle 9i client for ASO using Net8 Assistant and I have the sqlnet.ora file.
    ASO Problems:
    Once I have configured both Oracle 9i client and 9iDB server for ASO, I am not able to log in to the database using sqlplus /@cybr.
    It returns with an error ORA-12641, saying Authentication Services Failed to Initialize.
    I could not get much help from questions posted on metalink on ORA-12641.
    It looks like Solaris 9iDB could not recognize cybersafe even though, Cybersafe is listed as one of the installed adapters, when I ran # $ORACLE_HOME/bin/adapters. From this, it looks like Cybersafe adapter is linked to ASO.
    Oracle Server is not able to initialize authentication services and call the authentication server at all.
    Can anyone help me setup Oracle 9iDB and Oracle 9i client for ASO using Cybersafe Authentication?

    The problem has been resolved after providing cn=orcladmin instead of orcladmin for the OID user admin user. Now the overall sso solution is working fine with ADF applications.
    Regards,
    S R Prasad

  • Can anyone recommend a client and proposal database?

    Can anyone recommend a client and proposal database for the iPad?

    As far as the clients, it should say at the bottom of a finder window how much space is available. If you're wanting to monitor a user's usage as an administrator it'll have it in Server Admin -> Server Settings -> System -> Quota.

  • GPO change, and clients went to MS for updates?

    I'm trying to prepare for a switch to SCCM 2012 SUP. Our existing WSUS infrastructure has been solid for years (native WSUS no SUP).
    I made a change to the GPO that is configuring where the WSUS servers are (the "specify intranet Microsoft update service location") by setting this to "not configured" but in the same policy adding a preference to look for the SCCM 2012
    client install, if it's NOT installed then manually write the two reg keys ("WUServer" and "WUStatusServer") with the correct server information.
    The idea is that once the clients get the SCCM 2012 policy they will stop looking at our old WSUS infrastructure and the SCCM (SUP) will take over the update management on the client.
    What I found was that even though this logic worked, meaning the reg keys would contain the proper WSUS server locations, after a gpupdate the machine would freak out and immediately go to Microsoft for updates! They ignored all the other settings, for example
    time to check in. A gpupdate immediately triggered the wuauclt to go to work getting updates from Microsoft - no /detectnow needed, it's going right now! Looking at the windowsupdate.log shows that the WSUS server was set to <NULL> even though the policy
    reg keys existed and are correct.
    To better test this I created a duplicate WSUS policy of the one that we've been using over 2 years and applied it to a machine that previously had the same policy settings I just created, and it had the same effect. The content of the policy deosn't seem
    to matter. If I removed policy "WSUS policy" and replaced it with "Copy of WSUS policy" (even if they have IDENTICAL settings, as in one is literally a gpedit make copy of the other) the machine would freak out and go to MS for updates
    until I did a GPupdate another 2 times... after which it would "settle down" and work the way the policy says to. Not only that, but these two policies now seem to be "known" by the client and changes made to them are OK, and do not force
    the MS updates.
    Is this by design? It feels like MS doesn't want to "risk" not knowing the wsus policy settings are and will default to get all it's updates right from MS if it "thinks" there is any problems (to protect from malware, virus, etc)?

    Thanks Jason, I actually just finished working with MS support on this late last week. There are a couple of things here:
    1. I learned that the GPO setting "Specify intranet Microsoft update service location"
    adds not only the two intranet wsus server reg entries but the additional reg key "UseWUServer" set to 1 under the AU reg path. This is required to use the reg keys that plug the server information. So I was troubleshooting my reg key logic
    to plug the servers, which worked, but was ignored. It appears that the WUA is looking to this key and triggering the checks for all things update exclusively on this key. If you don't
    specify
    this key when adding "manual" reg keys it will ignore all the GPO policy settings (time to check, how to install, etc), not just the server location settings.
    2. I also learned that this method is should not be implemented when migrating to SCCM 2012 from a native WSUS infrastructure. The MS recommended solution is to use a WMI filter on the entire WSUS policy checking for the existence of the SCCM 2012 client
    and NOT apply any policies if the 2012 client is installed. The way to check is to look for the file existence of c:\windows\ccm\ccmexec.exe (not version of this file).
    3. In my troubleshooting on this issue I also learned that the SCCM 2012 client (and possibly the 2007, but we don't use it) are actually using local machine policies to manage updates so it would make sense to NOT apply any domain level policies setting
    anything having to do with updates and instead let the 2012 client just handle the settings else you have domain policies "defeating" the local polices.

Maybe you are looking for

  • Cant add files to library without itunes crashing

    I removed all the tracks from my itunes library to readd them (adding new things was getting confusing) Now whenever i try to add the files to itunes the programme freezes and I have to force quit. I have 250gb of music to add and doing this a file a

  • BAPI to get all user lists

    Hi Experts, BAPI to get all user lists for input specific object, authorizations, profiles and values? Any useful answer will be rewarded with suitable points. Thanks, Rohan

  • SAPINST 4.7  with  MS SQL SERVER Error "Unable to stop server"

    I'm trying to install SAP 4.7 on - Windows 2003 Server _ host "tpt" - SQL Server 2000 SP3 _ new Instance "MYSAP". Collation is already set to "SQL_Latin1_General_CP850_BIN2". Sapinst ran well on all input data steps. Next it applied from steps "Creat

  • Table maintainance - testing environment

    hi guyz, Table Maintainance worked alright in development system , but in test system im getting the following error..... plz advise Create data processing function module Message no. SV023 Diagnosis You have called the function for editing view cont

  • IPod pauses after 2 minutes and 20 seconds.

    This started happening about an hour ago; after choosing a song and leaving my iPod alone for 2 minutes and 20 seconds, it pauses. It doesn't happen to podcasts though, and I assume that after that amount of time is when the clock face pops up. My iP