Times ten not scaling how to speed up.

Hello Everyone,
I am doing evaluation of times ten to use it as cache but it is not scaling in my test bed:
From the http://vimeo.com/28397753 demo it seems it can do 5 million transaction per minute by in my test bed which is 4 gb machine it is taking sweet 140 seconds to insert 100 K records almost 120 times slower!
I have only one table with a integer column and only one index on that column which is not unique.
TermSize: 1024m
PermSize: 2024m
We want a scallable solution that can go upto 250 Million records in a table (and we will have two such table other will be smaller) is it possible with times ten?
Our queries will generally requst 50K results and we will have 12 fields in this table numeric and integer that we are going to separately index.
Look up also on a one integer table are taking about 100 milliseconds.
I am using a TimesTenDataSource ds = new TimesTenDataSource();
String URL = "jdbc:timesten:direct:TT_1121";
I tried doing batch inserts of 25,100,500,100 rows per insert with not much improvement.
Is oracle times ten even fit for such a case?
thanks and regards,
sumit

You say that your machine has 4 GB RAM but you have allocated over 3 Gb to TimesTen. That's fine if there is pretyt much nothing else running o nthe machine but if you have otjer things (such as Oracle DB maybe?) running o nthe machine at the same tiem then you are likely running low on memory. Are you seeing significant page in and pageout acticity when the test runs? If so this will seriously impact performance.
Can you please provide:
1. A description of the overall hardware and software environment that you are using for the test.
2. The exact TimesTen version (output of ttVersion) command.
3. The DSN configuration (from sys.odbc.ini)
4. The actual table (or cache group) defintiion including any indexes.
5. Details of the Java test program. In particular; are you using parameterised INSERT statements? Are you preparing them just once and executing them many times? How often do you commit during the bulk load? etc.
Thanks,
Chris

Similar Messages

  • IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI

    IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI
    <Personal Information Edited by Host>

    An iPhone originating from the UAE will never have FaceTime.
    (113483)

  • Response time with OneDrive login - how to speed up ?

    How to speed up response times with OneDrive for login ?
    Is it possible to cut off ads ?
    What else ?

    Speed of login is depending on your network connection speed and your ISP server configuration as well as your PC configuration. If you set Internet Explorer to keep temporary files (which is default setting for IE), you speed might be a bit faster.

  • When printing the fax confirmation; the date or time does not appear. how do i resolve this issue

    After I sent a fax I requested a confirmation report which did print off; the problem is that it did not print a valid date or time.  How do I resolve this issue

    Hi there,
    Could you provide the community with a little more information to help narrow troubleshooting? Things like your printer model and your operating system help out a lot.

  • HT1349 Seriel no DM*******FHW Apple I-pad Tablet, Purchased by me 2/2/12 from John Lewis, paid seperatly to have it set up in store, but now cannot access. Have typed in password several times but not sure how to enter it? Subsquently its now on extended

    Have purchased above from John Lewis Cheadle 02/02/12, including in purchase price was set up charges.
    Didnt appear a problem until this morning when attempting to 1st time use
    Simple but true, have attempted to enter password as instructed but where/how do I enter?
    After several attempts and failed it now is extending next attempts by 10 minutes, 15 minutes, and so on
    Simple explanation Im sure, please advise
    Thank you
    Terry Matthews
    <Serial Number Edited by Host>

    Your description of who you purchased your ipad from seems unnecessary to solve the problem you are having. The password is entered on the lock screen. After a certain number of unsuccessful tries (maybe 10?) you'll be locked out. You'll have to restore the iPad. Since it sounds like you havent really used it, this shouldn't be a problem. Do you know how to do this?

  • Network time will not set how can this be corrected

    Issues with network time how can a reset this so I can utilize my apple tv

    Dish will need to update their viewer. Contact Dish about their plans to update for compatibility to current Firefox versions. According to this, they only support through Firefox 6 --> http://www.dishnetwork.com/supportsection/sling-viewing-device
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Times ten not showing the column alias as column header in select query.

    Hi All,
    I am trying to execute following queries on TimesTen database 11.2.2.2.0.
    SELECT ROWNUMBER,
    floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24)
    || 'h '
    || mod(floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24*60),60)
    || 'm '
    || mod(floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24*60*60),60)
    || 's' TIME_DIFFERENCE
    FROM
    (SELECT ROW_NUMBER() OVER (ORDER BY USERIDENTITY DESC) ROWNUMBER,
    u.*
    FROM TBLMCORESESSIONS u
    WHERE 1=1
    ) B
    WHERE ROWNUMBER BETWEEN 1 AND 5
    and I am getting the follwing output.
    ROWNUMBER,
    < 1, 8h 52m 34s >
    < 2, 8h 54m 24s >
    < 3, 8h 54m 13s >
    < 4, 8h 55m 6s >
    < 5, 8h 54m 40s >
    The issue is I should get TIME_DIFFERENCE as column header but it is not showing TIME_DIFFERENCE as the column header & it is calculating the value just fine .
    & if same query I execute on oracle 11g database every thing works fine.
    please suggest me something that column header is must.
    or suggest me any other for query
    Edited by: hiaditya04 on Apr 24, 2012 11:05 AM

    Hi,
    It is similar to bug which is raised in Timesten 11.2.2.2.. BUG 13896607 - COLUMN NAME MISSING FROM A VIEW IN TIMESTEN 11.2.2.2 . If you have MOS access then you can view about this bug. The bug is going to be fix in the future release. The bug basically indicates that we are not displaying the column name properly when select list contains complex expressions. The column itself can be accessed and values are displayed correctly.
    Regarding your issue "column TIME_DIFFERENCE not found" , I would suggest you to access the column by position, not by name like below
    I believe you are trying to access your column like below
    resultset.getString(“TIME_DIFFERENCE”)
    Instead of this you can use : -- resultset.getString(2) ( this position should based on the position of the column you are using in the query)
    Hope this helps.
    Regards
    Rajesh

  • Why was there over ten thousand file in my "All My Files" on my new MBP. I'm very new at using ICloud. I don't understand syncing vs time vs time vs syncing! I simply have not idea how to manage my file now.

    Why is there over ten thousand file in my "All My Files" on my new MBP. I'm very new at using ICloud. I don't understand syncing vs time vs time vs syncing! I simply have not idea how to manage my files now. I read short comments & how to's in the support sections, but nothing I've read so far explains"best practices" or turning iCloud off to get a grip on managing files. I have 250gb fast storage on the MBP itself, and 200gb in the ICloud, one would thing that's enough. The files seem too be multiplying like rabbits. IPhoto's Faces has created hundereds of "somethings" not sure what. I am sure I am very frustrated! Please comment with kindness.

    gf raines wrote:
    Yes,I am confused. To say its just another drive is a "buzz statement".
    OK, for example. If I download a document, song, or photo from ICloud, as I understand, it goes to Download in Finder. If I want to move it to a local folder of my choice on the solid state drive in my new MBP, does a copy always stay in ICloud? How do you housekeep? I have always  used to a physical drive. What is different about the mind set.  I used ICloud to store the contents of my old MBP. Once I download all the files I need, should I turn off ICloud and manage the file locally? I don't like the automatic movement of files when I don't understand the locations.
    Nope, you don't understand it.
    If you download a song from the iTunes cloud storage (which is not iCloud) it goes into the iTunes music folder (generally to a subfolder therein)
    If you download a document from the iCloud drive it will go wherever you chose to put it.
    If you download a photo from the iCloud Photo library it will also go wherever you choose to put it.*
    If you move something you have not copied it, if you want to keep a copy on the iCloud drive and in a local folder, you would copy, not move it.
    There is no 'automatic' movement, you decide what to store on the iCloud drive (exactly like any other drive) and what to remove.
    The iCloud drive appears as a folder in Finder, you use it just like any other, copy/paste, save, delete etc.
    You can turn the iCloud drive off whenever you like, download the content to a local drive first.
    * Because the iCloud drive appears as a folder in Finder there is in fact no need to ever download anything to your Mac, everything on the drive is already on your Mac.

  • In Firefox can not see the Downloads window, in the jump in the boot to be seen - the download speed Downloaded much and now can not see how to fix it?

    in Firefox can not see the Downloads window, in the jump in the boot to be seen - the download speed
    Downloaded much and now can not see how to fix it?

    I hate the new downloads-in-a-tab scheme. This was an unnecessary change in my book (if it aint broke, don't "fix it").
    So in order to get it back, I performed the about:config browser.download.useToolkitUI change, but now all I get is a blank download window that pops up every time I download something.
    Is there something else that I need to do? I've checked the change and it was saved, but it didn't resolve my issue as much as it just caused me a new issue.

  • I have a new Macbook pro, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop.

    I have a new Macbookbook, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop. Also i am thinking once the video is done  the fan should be slowing down and getting quiet on its own.

    Your fan(s) will run at high speed (i.e., loudly) while video is playing, and you can't get around that.
    If your fans are not slowing down within 2-4 minutes after CPU- and/or GPU-intensive usage ends, and the application that was showing the video is still running, Quit that application. (In fact, if you're accustomed to Windows, you may not realize that simply closing a Mac application's window does not quit the application. You still need to use the Quit command in the application-name menu. There will always be a bright dot beside or below the application icon in your Dock for each application that is open.) Quit the ones you aren't using, and see whether that allows the fans to slow down without restarting the machine. If that doesn't do the trick, reset the SMC:
    http://support.apple.com/kb/HT3964?viewlocale=en_US&locale=en_US

  • How to close all active connections in Times ten database

    Hi,
    I am new to Times Ten database.
    Uisng ttsatus utility I am able to find our the active conenctions but not sure how to close this. I m using windows as OS
    Request your help in this regards
    Regards,
    Harmeet

    Is there a way to manually kill a lock from a transaction or roll back transaction etc.
    In oracle, we just kill the user session.
    I have an issue with read-only cache, stuck with the below lock.
    I end up in bouncing the dameon (!!@!@)
    stopping cachemanager took time.. but still this lock was active.
    ========================
    [ttadmin:lmmk672@MARTD] /psimofmmk2/TimesTen/palmttd1/bin > ttXactAdmin palmttd1
    2012-05-31 13:48:23.872
    /psimofmmk2/TimesTen/data/palmttd1/data/palmttd1
    TimesTen Release 11.2.2.2.0
    Outstanding locks
    PID Context TransID TransStatus Resource ResourceID Mode SqlCmdID Name
    Program File Name: timestensubd
    12743 0x2aafe00008c0 138.1298 Active Database 0x01312d0001312d00 IX 0
    Program File Name: timestenorad
    13824 0x2aaff8199410 12.83968 Active Database 0x01312d0001312d00 IX 0
    Command 21019064176 S 21019064176
    Table 1732240 W 21018623224 PALM_DBO.EXTRNL_AVAILABILITY_COMBD
    Row BMUFVUAAAAaAAAAJBu S 21018623224 SYS.TABLES
    Row BMUFVUAAAA3AAAAEhq Sn 21018623224 SYS.CACHE_GROUP
    Table 1732480 S 21018623224 PALM_DBO.T10_TEST
    Row BMUFVUAAAAaAAAAIBv S 21018623224 SYS.TABLES
    Row BMUFVUAAAA3AAAADhr Sn 21018623224 SYS.CACHE_GROUP
    Table 1732528 S 21018623224 PALM_DBO.EXCHANGE_TIME
    Row BMUFVUAAAAaAAAALBv S 21018623224 SYS.TABLES
    Row BMUFVUAAAA3AAAAEhr Sn 21018623224 SYS.CACHE_GROUP

  • Can not create user in Times Ten 7

    Hi All,
    I have installed Oracle Times Ten 7.0.4 in my machine. To connect to the databse I have used "connect RunDataCS_tt70_32;" which I found from the ODBC. (I even dont know whether this the correct way to connect or not). Now I have tried to create a user (" create user prashant identified by 'p1'; ") but the command failed saying "15007: Access control not enabled".
    Can anybody tell me how can I create a user in Times Ten.
    Thanks,
    Prashant

    To be able to create users and have access control applied you must install TimesTen with Access Control enabled (it is an optional feature). When you did your install you replied no (or took the default) to the question 'Do you want to enable Access Control?' (or you did not tick the relevant check box if you are using Windows).
    You can enable Access Control for your installation by running the command
    ttmodinstall -enableAccessControl
    you need to do this as the instance administrator user (the O/S user who installed the TimesTen instance).
    I would strongly advise that you read through the TimesTen QuickStart Guide and other tutorial on the TimesTen OTN site beofre trying to use TimesTen as it will save you a lot of time and many questions to this forum :-)
    Chris

  • How to speed up Windows 7's reaction time to my mouse click

    Hi.  We just got new computers at work.  They have approximately 4 gigs of RAM and have Window's 7 on them.  Prior to that we had abysmally old computers running Windows XP.  We have Microsoft Office 365 on them (Not sure how much
    that matters) and it is connected to both an older server and SharePoint.
    I'm positive that there isn't actually a problem with the computer or Windows 7 - it might be really basic harware, however it is brand new.  But everything lags.  Its extremely minor and no one else in the building notices it.  My co-workers
    all say the entire system is faster in every possible way.  However, I get the same problemwith other computers in the building, at least four others.  It lags just slightly when I click on anything, anywhere (Left and Right click).  Letters
    appear to lag behind my key presses, just enough for me to notice and no one else (I do wonder if this is caused by Microsoft Office, since it is so clunky).  I also think the mouse pointer moves slower than the pointers on XP.  Its difficult
    to tell though since I no longer have the old computer to compare. 
    This lag did not exist with the old computers.  My clicks were instantaneously carried out and the appearance of the letters I pressed was immediate.  It might be very minor, but it is driving me insane.  I can't watch the screen when I type
    because it makes me slightly nauseous.  And the click lag slows down my entire process.  I'm pretty sure it isn't actually a problem with Windows 7, I think the OS is just like this.  Is there a way to speed up the reaction time of the mouse
    click and keyboard button presses?
    Thank you for the taking the time.

    1. Use performance monitor for analysis. Without knowing processes that influence response it is hard to give any reasonable advice.
    2. In my experience computers with integrated video card are generally slower. (One such example sits on my desk. It is based on D2700 processor and chipset. 4GB RAM, usable 3.23GB. )
    3. There are several tweek procedures that may increase the response. Start with Win+Pause/Break -> Advances System Settings -> Advance -> Performance -> Performance Options and look here for optimal, disable autotuning, sometimes QoS, prefer
    IPv4 over IPv6 (if you still use IPv4, set bit 5), etc
    4. Perhaps Performance forum is better fit for your problem.
    Regards
    Milos

  • I have an event in my calendar that was sent by someone who does not work for the company anymore and I am reminded 2 times a week. How can I remove it?

    I have an event in my calendar that was sent by someone that does not work for the company anymore and I am reminded 2 times a week. How do I delete it?

    Tap on the event to open the event. Click the 'Edit' button in the event bubble, then press the 'Delete Event' button at the bottom of the Edit pop-up. It's a little different for events that come through Microsoft Exchange, you tap the event to bring up bubble and click the 'Details' button, and then press 'Decline' to remove the event.

  • Playback speed in Sample Editor window many, many times faster than track (at correct speed) in arrange area. How do I sync Sample Editor playback speed to correct speed/tempo in arrange area? Track is spoken word.

    Playback speed in Sample Editor window many, many times faster than track (at correct speed) in arrange area. How do I sync Sample Editor playback speed to correct speed/tempo in arrange area? Track is spoken word. Sample Editor playback sounds like Alvin on a meth binge. Spoken phrase is generated from Textspeech. Textspeech can export files as WAV files or MP3 files. Perhaps a clue?:   When exported Textspeech WAV file is dragged and dropped into track in arrange area of new project, it exhibits same supersonic speed. When Textspeech file is exported as MP3 file and dragged and dropped in arrange area track, it plays at correct speed.

    Thanks Erik,
    If nothing else, this huge list of updates and fixes, shows clearly that the Logic Dev team is working hard on fixing and improving LPX to a major degree.... and from the list of fixes done.. show they do read the bug reports submitted!
    As an aside....
    I recall how all the 'naysayers' prior to LPX (and in some cases, since...)  were proclaiming how Logic was dead, the team was being disbanded, we won't see any further development, the Dev team doesn't listen or care... and so on....... I wonder where those people are now?

Maybe you are looking for

  • The Treeview navigation seems to have broken my intranet .

    Hmmmmmmm  sometimes issues with SharePoint are like buses - earlier I found that could not open any word documents until installed Office 2010 SP2 32-bit but that is not why I am here :-( . I am developing a new intranet for a client and am testing o

  • Replacing A CD Driver With A Superdrive

    I bought a used Powermac G4 for my mother-in-law. It reads CDs, but I want her to be able to burn her own CDs/DVDs, or read my CDs/DVDs, so I want to replace the current drive with a superdrive. Can anyone recommend any particular (internal) brand/mo

  • Problem when open Integration Directory

    Hi :     when I want to open Integration Directory, there is a message saying " You need to install   Javau2122 WebStart 1.4.2.   ", however I have installed j2sdk-1_4_2_12-windows-i586-p.exe which is the edition of j2sdk 1.4.2 . I am really confused

  • NaN when running, but not when debugging

    Hello out there, I am creating a JSP application with JDeveloper, and when I run the application the first time, it works without problems... but when I submit the values again to recalculate, the results of some operations that I'm doing are display

  • Database Configuration utility - huray? :-/

    Hello (again, sigh), I am installing PeopleSoft FCM 9.1 and yes, having no experience with installing PeopleSoft I decided to use the Database Configuration utility, using the article provided by Nicolas Gasparotto as a guide: http://gasparotto.blogs