Tagged Questions
The tuning tag has no wiki summary.
52
votes
13answers
128k views
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into "java.lang.OutOfMemoryError: Java heap space" error because I am not being conservative on ...
18
votes
6answers
57k views
Speed tradeoff of Java's -Xms and -Xmx options
Given these two commands
A:
$ java -Xms10G -Xmx10G myjavacode input.txt
B:
$ java -Xms5G -Xmx5G myjavacode input.txt
I have two questions:
Since command A reserves more memory with its ...
15
votes
5answers
8k views
Optimizing MySQL for ALTER TABLE of InnoDB
Sometime soon we will need to make schema changes to our production database. We need to minimize downtime for this effort, however, the ALTER TABLE statements are going to run for quite a while. Our ...
14
votes
5answers
2k views
Why does the Sun JVM continue to consume ever more RSS memory even when the heap, etc sizes are stable?
Over the past year I've made huge improvements in my application's Java heap usage--a solid 66% reduction. In pursuit of that, I've been monitoring various metrics, such as Java heap size, cpu, Java ...
13
votes
7answers
1k views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 10 gigabytes, 32 ...
11
votes
6answers
660 views
Python performance characteristics
I'm in the process of tuning a pet project of mine to improve its performance. I've already busted out the profiler to identify hotspots but I'm thinking understanding Pythons performance ...
11
votes
13answers
2k views
No indexes on small tables?
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." (Donald Knuth). My SQL tables are unlikely to contain more than a few thousand ...
10
votes
12answers
2k views
Java performance tips
I have a program I ported from C to Java. Both apps use quicksort to order some partitioned data (genomic coordinates).
The Java version runs fast, but I'd like to get it closer to the C version. I ...
9
votes
4answers
3k views
Can I (and do I ever want to) set the maximum heap size in .net?
Coming from a java background, one of the things I am used to is telling the JVM what the maximum heap size should be. If the running program tries to swallow more than is allowed, and the garbage ...
8
votes
3answers
415 views
JVM and GC tuning - theory for no Full GC
I have large scale application with two type of objects: long living (cache) and short living (request-process-response). Theoretically, with this type of application, I think it is possible to ...
8
votes
6answers
489 views
Please will you help tune a 7-table-join mysql count query where tables contain 30,000+ rows?
I have an sql query that counts the number of results for a complex query. The actual select query is very fast when limiting to 20 results, but the count version takes about 4.5 seconds on my current ...
8
votes
5answers
2k views
iPhone Development - Lessons in memory management
I need lessons in memory management. I have an application that uses multiple views (around 10), some of these are attached to tab controller. Problem is that I'm using images (many images that I load ...
7
votes
3answers
222 views
Full GC becoming very frequent
I've got a Java webapp running on one tomcat instance. During peak times the webapp serves around 30 pages per second and normally around 15.
My environment is:
O/S: SUSE Linux Enterprise Server 10 ...
7
votes
12answers
1k views
What is the fastest way to read 10 GB file from the disk?
We need to read and count different types of messages/run
some statistics on a 10 GB text file, e.g a FIX engine
log. We use Linux, 32-bit, 4 CPUs, Intel, coding in Perl but
the language doesn't ...
6
votes
4answers
84 views
MySQL query time grows exponentially when data in TEXT column grows linearly
We have a table that currently has a TEXT column and the length of the column averages at about 2,000 characters. We wanted to see what the performance of queries that select that column would be if ...
5
votes
3answers
66 views
Tuning MVC3 application that uses jquery?
I'm trying to tune up my MVC3 application that uses a lot of jquery libraries, including jqGrid.
I'd be interested to hear your best practices and performance tips and tricks if any. What you ...
5
votes
6answers
979 views
How to delete faster?
I have a DB table which consists of 2.5 billion records.
There are duplicates to the tune of 11 million.
Which is the fastest way to delete these 11 million records?
5
votes
5answers
15k views
Appropriate Tomcat 5.5 start-up parameters to tune JVM for extremely high demand, large heap web application?
We have recently migrated a large, high demand web application to Tomcat 5.5 from Tomcat 4 and have noticed some peculiar slowdown behavior that appears to be related to JVM pauses. In order to run ...
5
votes
2answers
12k views
Discover what process/query is using oracle temp tablespace
Oracle FAQ defines temp table space as follows:
Temporary tablespaces are used to
manage space for database sort
operations and for storing global
temporary tables. For example, if you
...
4
votes
1answer
107 views
Relationship between CURSOR_SHARING, Bind Variable Peeking and Histograms
I'm trying to make sure I have a good understanding regarding the relationship between CURSOR_SHARING, bind variables, bind variable peeking and histograms as most sources cover these topics is ...
4
votes
1answer
45 views
Will looking up a null-able column in oracle 9i suppress the column's index?
According to Oracle 9i performance tuning tips and techniques, using IS NULL or IS NOT NULL will suppress the index of the column - if there is an index on the column, and recommends making the column ...
4
votes
4answers
566 views
Specific MySQL bulk insertion performance tuning
I know this question has been asked over and over. However, this is a very specific question for a very specific scenario. Hopefully you will be able to help me.
I run a logging database, with about ...
4
votes
1answer
380 views
How can I lower the weak ref processing time during GC?
Currently I am facing the problem that my application is showing long GC times sporadically, but all these are only caused by weak reference processing. So the thread stopped time is always close to ...
4
votes
2answers
720 views
Parameter Tuning for Perceptron Learning Algorithm
I'm having sort of an issue trying to figure out how to tune the parameters for my perceptron algorithm so that it performs relatively well on unseen data.
I've implemented a verified working ...
4
votes
4answers
892 views
Why do discussions of “swappiness” act like information can only be in one place at a time?
I've been reading up on Linux's "swappiness" tuneable, which controls how aggressive the kernel is about swapping applications' memory to disk when they're not being used. If you Google the term, you ...
3
votes
7answers
126 views
How do I increase the speed of this data analysis?
I need to optimize how I analyze a rather large data set, and I'm unsure of what the next steps are. I have done a fair bit of MySQL configuration tuning.
I have this InnoDB table:
...
3
votes
5answers
50 views
Where to index correctly in MySQL tables?
I'm having a few queries similar to this:
SELECT *
FROM users
WHERE cat = X
AND cat2 = X
AND title LIKE %X%
AND content LIKE %X%
AND email LIKE %X%
AND box LIKE %X%
AND address LIKE %X%
...
3
votes
2answers
672 views
How to debug and tune the memory settings of my jenkins maven build
I have a CI System setup based on Jenkins on a Windows 2003 server box (8cores, 16GB 8 of which are on 'standby' according to the Resource Monitor).
There are two main jobs configured, both based on ...
3
votes
1answer
195 views
Indexing using Database Engine tuning advisor
We got a requirement to index a database. We planned to use db engine tuning advisor to get index recommendations. When we analyse the script using database tuning advisor we got both index ...
3
votes
3answers
125 views
SQL tuning issue
I have a query:
select count(1) CNT
from file_load_params a
where a.doc_type = (select b.doc_type
from file_load_header b
where b.indicator = 'XELFASI')
order ...
3
votes
5answers
147 views
Selecting data effectively sql
I have a very large table with over 1000 records and 200 columns. When I try to retreive records matching some criteria in the WHERE clause using SELECT statement it takes a lot of time. But most of ...
3
votes
3answers
124 views
Need help in tuning a sql-query
i need some help to boost this SQL-Statement. The execution time is around 125ms.
During the runtime of my program this sql (better: equally structured sqls for different tables)
will be called ...
3
votes
2answers
276 views
Temporary intermediate table
In our project to generate massive reports in oracle we use some permanent table to hold intermediate results. For example to generate one report we run few queries and populate the table, at the ...
3
votes
1answer
566 views
Auto-tuning tools for Postgres?
I am looking for tools to auto-tuning for postgresql database. Do you know any tools for postgres like DB2 Design Advisor in DB2, Database Tuning Advisor in Microsoft SQL Server or SQL Access ...
3
votes
1answer
738 views
Tokyo Cabinet Tuning Parameters
I have been trying to find a better Tokyo Cabinet (or Tokyo Tyrant) configuration for my application, but I don't know exactly how. I know what some parameters mean but I want to have a fine tuning ...
3
votes
4answers
469 views
Ok to rely on SQL Server tuning advisor for generating Indexes?
I've been having it analyze my queries and pushing the recommendations for some time now. Are there any potential pitfalls with doing this? Would I be better of creating my own indexes by hand?
3
votes
5answers
92 views
Measure number of events fired?
I am doing some tuning in a very large application. Is there a way to measure number of events fired in an application? For example using something in System.Diagnostics?
Adding code inside events is ...
3
votes
4answers
3k views
sql statistics io scan count explanation
Simple question, but I haven't found a good explanation on google. When using Set Statistics IO ON, the logical reads and scan count is provided in the message window of management studio. If I have:
...
2
votes
2answers
248 views
Oracle Scalar function in select vs table valued function join
I have have a query that is performing poorly. One aspect of the query is the use of a cross join on a table-valued function, in all honestly I was mimicking my TSQL behaviors of using CROSS APPLY on ...
2
votes
2answers
252 views
Analyze the “runnable” thread dump under high load server side
The thread dump from a java based application is easy to get but hard to analyze!
There is something interesting we can see from the thread dump.
Suppose we are in a heavily load java web app. And I ...
2
votes
3answers
582 views
same SQL but different explain plan
I am running same SQL (below), at 2 different environments with same index set and table size.
But they gave me 2 different explain plans (attached)
uses a Merge Join Cartesian -- very slow
uses PX ...
2
votes
2answers
2k views
Tuning Nginx/CentOS for server lots of static content
I have a linux machine 64bit (centos5.5), 2.83GHz Q9550, 6gb ram and a single SATA 500gb drive.
From this machine I only serve thumbnails, most around 10kb in size and at this point there are about 7 ...
2
votes
1answer
693 views
nginx-tornado-django request timeout
We are using nginx-tornado-django to provide web services. That is, no web page frontend. The nginx server serves as a load-balancer. The server has 8 cores, so we launched 8 tornado-django processes ...
2
votes
2answers
501 views
Range partition skip check
We have large amount of data partitioned on year value using range partition in oracle. We have used range partition but each partition contains data only for one year. When we write a query targeting ...
2
votes
3answers
394 views
Slow rendering of pages due to User Controls
How would you troubleshoot a page that is rendering slowly in ASP.NET?
This issue is happening on only specific pages with a few user controls. Other pages work fine. Tracing has clarified that the ...
2
votes
2answers
758 views
Postgres Tuning and scaling
We have currently a Postgres database with a 100 of tables 20 of them with more than 5 000 000 rows, the master DB server runs on Debian 32MB RAM 8 Processors.
Additionaly to the master DB we have a ...
2
votes
2answers
460 views
Oracle tuning / analyze tables
What are the means to schedule automatic "analyze tables". Is it possible to request an automatic "analyze tables" when a lot of data change througt insert and deletes? What are the means to ...
2
votes
1answer
2k views
Poor clustered index seek performance?
I've got these two queries:
SELECT SELECT NamesRecord.NameID, NamesRecord.FulfillmentAddressID NameFulfillmentAddressID, ContractRecord.FulfillmentAddressID, ContractRecord.BillingAddressId
FROM ...
2
votes
1answer
70 views
How to change the set of characters that are considered word characters in Mysql (Without recompiling)?
I run a Mysql 5.0.26 (Myisam tables). To improve the search results, I am doing some fine tuning. I have noticed that the characters considered as word characters do not match the constraints of ...
2
votes
3answers
4k views
Oracle performance using functions in where clause
Hi
In a stored procedure (which has a date parameter named 'paramDate' ) I have a query like this one
select id, name
from customer
where period_aded = to_char(paramDate,'mm/yyyy')
will Oracle ...