9
votes
7answers
224 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), 1 …
0
votes
1answer
53 views
Missing ‘DomContentLoaded’ and ‘load’ time information in Firebug’s Net Panel.
Hello,
Firebug is awesome in reporting the relative time when an HTTP request was made with respect to the 'DomContentLoaded' and 'load' time. However, once the 'load' event occur …
11
votes
5answers
236 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 h …
0
votes
1answer
70 views
Performance optimisation - Postgres
I have been tasked with improving the performance of a slow running process which updates some data in a PostGres 8.3 database (running on Solaris, updates are driven by Perl 5.8 s …
6
votes
13answers
601 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 t …
0
votes
2answers
65 views
Does this SQL statement needs to be refactored?
SELECT DISTINCT group_id
, supplier_id
, supplier_name
, site_division_id
, site_division_name
FROM view_supplier_site
WHERE supplier_id IN (SELECT DI …
1
vote
5answers
122 views
How to automatically tune parameters of an algorithm?
Here's the setup:
I have an algorithm that can succeed or fail.
I want it to succeed with highest probability possible.
Probability of success depends on some parameters (and some …
6
votes
12answers
588 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 la …
5
votes
5answers
989 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 …
1
vote
2answers
83 views
Using filesort to sort by datetime column in MySQL
hello,
I have a table Cars with datetime (DATE) and bit (PUBLIC).
Now i would like to take rows ordered by DATE and with PUBLIC = 1 so i use:
select
c.*
from
Cars c
WHERE
…
0
votes
1answer
101 views
Poor clustered index seek performance?
I've got these two queries:
SELECT SELECT NamesRecord.NameID, NamesRecord.FulfillmentAddressID NameFulfillmentAddressID, ContractRecord.FulfillmentAddressID, ContractRecord.Billin …
0
votes
0answers
72 views
Is it possible to tune internal windows webdav client? (mini-redirector)
I recently compared Windows Vista internal Webdav client (mini-redirector) to WebDrive, because Vista seemed to be very slow.
I found that Windows Vista uses only 1 HTTP connectio …
3
votes
4answers
709 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 …
4
votes
4answers
374 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 G …
1
vote
1answer
92 views
What are the tuning parameters available for Oracle BPEL PM
Are there any tuning knobs that one can apply for Oracle BPEL Process Manager?
