Tagged Questions
The fragmentation tag has no wiki summary.
34
votes
10answers
3k views
What is memory fragmentation?
I've heard the term "memory fragmentation" used a few times in the context of C++ dynamic memory allocation. I've found some questions about how to deal with memory fragmentation, but can't find a ...
32
votes
2answers
620 views
Does multithreading emphasize memory fragmentation?
Description
When allocating and deallocating randomly sized memory chunks with 4 or more threads using openmp's parallel for construct, the program seems to start leaking considerable amounts of ...
28
votes
2answers
1k views
What causes memory fragmentation in .NET
I am using Red Gates ANTS memory profiler to debug a memory leak. It keeps warning me that:
Memory Fragmentation may be causing
.NET to reserver too much free memory.
or
Memory ...
7
votes
6answers
1k views
Should I call GC.Collect immediately after using the large object heap to prevent fragmentation
My application does a good deal of binary serialization and compression of large objects. Uncompressed the serialized dataset is about 14 MB. Compressed it is arround 1.5 MB. I find that whenever I ...
7
votes
13answers
5k views
How to avoid heap fragmentation?
I'm currently working on a project for medical image processing, that needs a huge amount of memory. Is there anything I can do to avoid heap fragmentation and to speed up access of image data that ...
6
votes
5answers
132 views
Dealing with fragmentation in a memory pool?
Suppose I have a memory pool object with a constructor that takes a pointer to a large chunk of memory ptr and size N. If I do many random allocations and deallocations of various sizes I can get the ...
6
votes
1answer
110 views
MySQL Optimization 20 gig table
I have a 20 gig table that has a large amount of inserts and updates daily. This table is also frequently searched. I'd like to know if the MySQL indices can become fragmented and perhaps need to be ...
6
votes
3answers
462 views
How to prevent packet fragmentation for a HttpWebRequest
I am having a problem using HttpWebRequest against a HTTP daemon on an embedded device. The problem appears to be that there is enough of a delay between the http headers being written to the socket ...
6
votes
2answers
3k views
Mysql OPTIMIZE TABLE for all fragmented tables
Id like to run optimize on all currently framgmented tables. These tables should be those that have information_schema.DATA_FREE > 0.
Is it possible to optimize all tables with this property in one ...
5
votes
2answers
1k views
Benefits of “Don't Fragment” on TCP Packets?
One of our customers is having trouble submitting data from our application (on their PC) to a server (different geographical location). When sending packets under 1100 bytes everything works fine, ...
5
votes
4answers
321 views
How might one go about implementing a disk fragmenter?
I have a few ideas I would like to try out in the Disk Defragmentation Arena. I came to the conclusion that as a precursor to the implementation, it would be useful, to be able to put a disk into a ...
4
votes
2answers
2k views
Horizontal vs Vertical Fragmentation in Distributed Database Management Systems (DDBMS)
In the context in DDBMS, what is the difference between Vertical Fragmentation and Horizontal Fragmentation?
Is it such that the relation's extension is fragmented for vertical fragmentation and ...
4
votes
1answer
399 views
Has AAC+ support been fixed on all Android phones?
I'd like to switch from using MP3 encoded audio files to AAC+ for voice sound files stored inside an Android app. This will make the install size smaller.
A problem I encountered is that AAC+ ...
4
votes
6answers
245 views
How to avoid hard disc fragmentation?
I'm writing an application that will make millions of calculations and will store the results in a lot of files in the disc. Potentially I can have thousand of files, of different sizes, and store ...
4
votes
5answers
2k views
Reduce SQL Server table fragmentation without adding/dropping a clustered index?
I have a large database (90GB data, 70GB indexes) that's been slowly growing for the past year, and the growth/changes has caused a large amount of internal fragmentation not only of the indexes, but ...
4
votes
6answers
132 views
What is the golden rule for when to split code up into functions?
It's good to split code up into functions and classes for modularity / decoupling, but if you do it too much, you get really fragmented code which is also not good.
What is the golden rule for when ...
4
votes
5answers
275 views
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?
Many years ago, I was admonished to, whenever possible, release resources in reverse order to how they were allocated. That is:
block1 = malloc( ... );
block2 = malloc( ... );
... do stuff ...
...
3
votes
1answer
71 views
Measure (Android) heap fragmentation?
We have an app with lots of bitmaps in memory. It keeps failing with
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
errors. It's possible that we are genuinely using too much memory; ...
3
votes
2answers
156 views
Can I optimize my mercurial clone?
My mercurial clone has become incredibly slow, presumably due to on-disk fragmentation. Is there a way to optimize it?
The obvious way it to make a new clone, then copy my MQ, saved bundles, hgrc, ...
3
votes
1answer
469 views
How to search Lucene.NET without indicating “top n” hits limit?
There are several overloads of IndexSearcher.Search method in Lucene. Some of them require "top n hits" argument, some don't (these are obsolete and will be removed in Lucene.NET 3.0).
Those, which ...
3
votes
4answers
456 views
packet fragmentation for raw sockets
If I am using raw sockets to send a UDP packet of size 3000bytes, do I need to handle packet fragmentation myself in the code, or should the raw socket handle fragmentation similar to DGRAM socket?
3
votes
2answers
112 views
Effort due to Android fragmentation
With Android platform fragmentation, what changes in different OEM handset attributes force developers to port from one platform to another?
3
votes
3answers
329 views
How does disk de-fragmenting work?
I'd like to have a go at writing something which shows the state of a hard drive in terms of how fragmented it is. Maybe even has a go at de-fragmenting it.
But I've realised that I don't fully ...
3
votes
3answers
890 views
Portable way to detect heap fragmentation in c++ at runtime?
I'm writing a qt-based c++ application and i need to be able to detect memory fragmentation in order to check if the current system can actually sustain the memory load: the program load a big image ...
3
votes
1answer
5k views
Internal and external fragmentation
Can anyone please tell me the difference between internal and external fragmentation while allocation of disk space for files?
2
votes
3answers
34 views
25k Inserts Daily, 99% Fragmentation on Clustered GUID Index
I have a table that has a primary key as a clustered GUID field; I'm generating GUIDs using NEWSEQUENTIALID() instead of NEWID. Unfortunately, because this table sees ~25k-100k inserts per day, ...
2
votes
1answer
50 views
What is the most high-performance Linux filesystem for storing a lot of small files (HDD, not SSD)? [closed]
I have a directory tree that contains many small files, and a small number of larger files. The average size of a file is about 1 kilobyte. There are 210158 files and directories in the tree (this ...
2
votes
5answers
302 views
questions about memory pool
I need some clarifications for the concept & implementation on memory pool.
By memory pool on wiki, it says that
also called fixed-size-blocks allocation, ... ,
as those implementations ...
2
votes
3answers
288 views
Pre-allocate some memory in Large Object Heap memory
i am working on a C# application and this application is facing memory crunch, because many objects are getting memory allocation in the Large object Heap.
My C# application has to work on many ...
2
votes
3answers
62 views
Are lookups on IDENTITY columns faster if the address space is contiguous?
If I have a very large table with an IDENTITY column (bigint) and this table is subject to deletes, will the fragmentation of the address space (the available IDs) result in slower SELECTS?
...
2
votes
2answers
112 views
(SQL Server) Why GUID or other random value as high-order key will cause fragmentation?
I'm watching Paul S Randal's index fragmentation video at here. In the video, Paul said that GUID or other random values as high-order key will cause page splits which in turn will cause index ...
2
votes
3answers
654 views
Embedded Linux: Memory Fragmentation
In many embedded systems, memory fragmentation is a concern. Particularly, for software that runs for long periods of time (months, years, etc...). For many projects, the solution is to simply not use ...
2
votes
1answer
73 views
What changes are made in the mass storage API between Android 1.5 and Android 1.6
I wrote some code to save images on the SD Card a while back. Now I added the targetSDKVersion to my manifest and now my file saving code ceased to work.
I can reproduce it through removing the ...
2
votes
1answer
216 views
Memory fragmentation @ boost::asio?
I'm pretty much stuck with a question I never got an answer for, a question which addresses an extremely important issue; memory fragmentation at boost::asio.
Found nothing at the documentation nor ...
2
votes
3answers
298 views
Android Apps: What is the recommended targetSdk for broadest appeal?
I have an Android app that only needs internet access and would like to target API level 3 (1.5) to reach the broadest handset base. However, it appears that targeting API level 3 implicitly requires ...
2
votes
4answers
233 views
How to see fragmentation of a specific file?
Is there a tool that would show me for a specific file on disk, how fragmented it is? (How many seeks does physical disk need to make if I were to read that file in a linear fashion)
2
votes
1answer
164 views
Programatically determine a file's fragmentation status
Is it possible to determine a specific file's fragmentation status (that is, the amount of distinct fragments this file occupies)?
If so, how can this be done using .net?
The motivation is this: my ...
2
votes
1answer
433 views
Oracle table fragmentation
How do I fragment a table so that it is distributed over multiple oracle 9i servers.
2
votes
2answers
1k views
TCP/UDP and ethernet MTU Fragmentation
I've read various sites and tutorials online but I am still confused. If the message is bigger than IP MTU, then send() returns the byte sent. What happens to the rest of the message? Am I to call ...
2
votes
2answers
1k views
How frequently IP packets are fragmented at the source host?
I know that if IP payload > MTU then routers usually fragment the IP packet. Finally all the fragmented packets are assembled at the destination using the fields IP-ID, IP fragment offsets and ...
1
vote
0answers
20 views
Show different layouts in fragmentation
I have a problem that I want to load different layouts every time in a fragment when a list Item is clicked from different fragment. Means I have two fragments on a screen, first one is ListView and ...
1
vote
1answer
182 views
SQL Server: 12% index scan density and 50% fragmentation. How bad is “bad”?
How much fragmentation is bad? How low of scan density is too low?
How low does scan density is bad?
i have a table with the following index density and fragmentation levels:
Name ...
1
vote
1answer
96 views
Terminology for SD Card Status
We've developed an Android program that relies on access to a particular directory on the SD card. Our program detects whether the SD card is available to the phone, and displays an error message to ...
1
vote
2answers
625 views
“411 Length required”-response from Google Docs Api using Android API 10 and below
I am developing an application for Android devices, and one part of it is enabling downloading and uploading between the users Google Docs and the device storage. The problem that I have is I'm ...
1
vote
2answers
424 views
Where can I find IP fragmented Sample pcaps for WireShark?
Are there any sources where I can find different pcaps samples for IP fragmented data (WireShark compatible)?
1
vote
2answers
137 views
SQL Db index recommendation
I am trying to see if using a custom index for a specific type of data might reduce fragmentation in my database.
[Edit: we are using MS SQL Server 2008 R2]
I have an SQL database containing ...
1
vote
1answer
337 views
udp packet fragmentation for raw sockets
Follow-up of question packet fragmentation for raw sockets
If I have a raw socket implemented as such:
if ((sip_socket = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0)
{
cout << ...
1
vote
1answer
1k views
APC Fragmentation
I have APC with my Wordpress website
See my APC summary page here
http://www.animefushigi.com/apc.php
I notice I have a very high amount of fragments (over 10,000)
Is this a bad thing? Will it ...
1
vote
0answers
1k views
Zoom controls on emulator running Android 1.6 with QVGA
I'm testing my app on different AVD setups in the emulator and ran into problems with zoom controls in MapView on Android 1.6 using QVGA resolution only (lcd.density=120).
When tapping on the screen ...
1
vote
1answer
121 views
Will modifying any row data fragment my clustered index?
I now understand that a clustered index contains all of the row data, not just the index fields. I'm trying to understand the implications of this in regards to fragmentation.
Say we have a table ...