Repeated Full GC even though heap is empty

Hi,
These are the options specified to the VM. The box has 16gigs of memory on it.
XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintTenuringDistribution -XX:MaxPermSize=500m -XX:PermSize=500m -XX:MaxNewSize=4120m -XX:NewSize=4120m -Dcom.sun.xml.namespace.QName.useCompatibleSerialVersionUID=1.0 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8688 -Dcom.sun.management.jmxremote.authenticate=false
-server -verbosegc -Dsun.net.inetaddr.ttl=600 -Dsun.net.inetaddr.negative.ttl=1
our application is loads a lot of data into the server cache from a DB ( ~ 6.5 Gigs). I am seeing a lot of Full GC's happening even though none of the spaces are shown as full in the GC output. Below is the sample output that I have from the GC, and its outputted virtually all over the logs, including right after I start the server.
Can anyone recommend tweaking any settings that can help me avoid this?
Much appreciated.
[Full GC {Heap before gc invocations=786:
par new generation   total 4214784K, used 749836K [0x0000002a9c6f0000, 0x0000002b9def0000, 0x0000002b9def0000)
  eden space 4210688K,  17% used [0x0000002a9c6f0000, 0x0000002aca333278, 0x0000002b9d6f0000)
  from space 4096K,   0% used [0x0000002b9d6f0000, 0x0000002b9d6f0000, 0x0000002b9daf0000)
  to   space 4096K,   0% used [0x0000002b9daf0000, 0x0000002b9daf0000, 0x0000002b9def0000)
concurrent mark-sweep generation total 8167424K, used 116027K [0x0000002b9def0000, 0x0000002d906f0000, 0x0000002d906f0000)
concurrent-mark-sweep perm gen total 512000K, used 80871K [0x0000002d906f0000, 0x0000002dafaf0000, 0x0000002dafaf0000)
[CMS: 116027K->127094K(8167424K), 1.0926490 secs] 865864K->127094K(12382208K), [CMS Perm : 80871K->80871K(512000K)]Heap after gc invocations=787:
par new generation total 4214784K, used 0K [0x0000002a9c6f0000, 0x0000002b9def0000, 0x0000002b9def0000)
eden space 4210688K, 0% used [0x0000002a9c6f0000, 0x0000002a9c6f0000, 0x0000002b9d6f0000)
from space 4096K, 0% used [0x0000002b9d6f0000, 0x0000002b9d6f0000, 0x0000002b9daf0000)
to space 4096K, 0% used [0x0000002b9daf0000, 0x0000002b9daf0000, 0x0000002b9def0000)
concurrent mark-sweep generation total 8167424K, used 127094K [0x0000002b9def0000, 0x0000002d906f0000, 0x0000002d906f0000)
concurrent-mark-sweep perm gen total 512000K, used 80871K [0x0000002d906f0000, 0x0000002dafaf0000, 0x0000002dafaf0000)
, 1.0928710 secs]
[Full GC {Heap before gc invocations=787:
par new generation   total 4214784K, used 46964K [0x0000002a9c6f0000, 0x0000002b9def0000, 0x0000002b9def0000)
  eden space 4210688K,   1% used [0x0000002a9c6f0000, 0x0000002a9f4cd2a0, 0x0000002b9d6f0000)
  from space 4096K,   0% used [0x0000002b9d6f0000, 0x0000002b9d6f0000, 0x0000002b9daf0000)
  to   space 4096K,   0% used [0x0000002b9daf0000, 0x0000002b9daf0000, 0x0000002b9def0000)
concurrent mark-sweep generation total 8167424K, used 127094K [0x0000002b9def0000, 0x0000002d906f0000, 0x0000002d906f0000)
concurrent-mark-sweep perm gen total 512000K, used 80871K [0x0000002d906f0000, 0x0000002dafaf0000, 0x0000002dafaf0000)
[CMS: 127094K->127093K(8167424K), 0.8199480 secs] 174059K->127093K(12382208K), [CMS Perm : 80871K->80871K(512000K)]Heap after gc invocations=788:
par new generation total 4214784K, used 0K [0x0000002a9c6f0000, 0x0000002b9def0000, 0x0000002b9def0000)
eden space 4210688K, 0% used [0x0000002a9c6f0000, 0x0000002a9c6f0000, 0x0000002b9d6f0000)
from space 4096K, 0% used [0x0000002b9d6f0000, 0x0000002b9d6f0000, 0x0000002b9daf0000)
to space 4096K, 0% used [0x0000002b9daf0000, 0x0000002b9daf0000, 0x0000002b9def0000)
concurrent mark-sweep generation total 8167424K, used 127093K [0x0000002b9def0000, 0x0000002d906f0000, 0x0000002d906f0000)
concurrent-mark-sweep perm gen total 512000K, used 80871K [0x0000002d906f0000, 0x0000002dafaf0000, 0x0000002dafaf0000)
}

Someone is calling System.gc() for you. And ordinary CMS cycle looks like [GC [ParNew: 263K->107K(14784K), 0.0289244 secs] 263K->107K(63936K), 0.0292115 secs]
[GC [1 CMS-initial-mark: 0K(49152K)] 107K(63936K), 0.0047868 secs]
[CMS-concurrent-mark: 0.031/0.032 secs]
[CMS-concurrent-preclean: 0.002/0.002 secs]
[GC[YG occupancy: 107 K (14784 K)][Rescan (parallel) , 0.0004983 secs][weak refs processing, 0.0000093 secs] [1 CMS-remark: 0K(49152K)] 107K(63936K), 0.0065329 secs]
[CMS-concurrent-sweep: 0.000/0.000 secs]
[CMS-concurrent-reset: 0.002/0.002 secs]In contrast, you've shown what CMS prints out if someone calls System.gc(). An explicit call to System.gc() runs a serial (one-thread) stop-the-world mark-compact collector. Almost certainly not what you want if you are using the concurrent mark-sweep collector and tuning your heap to try to get short garbage collection pauses. The only good news is that your collections don't take that long.
You should track down whoever is calling System.gc() and tell them to stop. If you can't do that, there are two workarounds. If you are running JDK-1.6.0, you can use the -XX:+ExplicitGCInvokesConcurrent flag to have calls to System.gc() just start a regular CMS cycle. That will block the thread that calls System.gc() until the cycle is complete, but allow the other threads to run concurrently with the collection. The larger hammer is -XX:+DisableExplicitGC, which turns calls to System.gc() into a no-op. If someone thought they needed garbage collection to happen promptly (e.g., under the impression that they needed finalize() method to run, etc.), then using that flag will disappoint them.
Your log doesn't show how often these full collections are happening. If you add the -XX:+PrintGCTimeStamps flag you will be able to see when they happen, in seconds since the launch of the VM. That may help you coordinate these collections with actions in your program to identify actions that cause System.gc() calls.
For example, RMI uses full collections at regular intervals to implement their distributed garbage collection algorithm. In JDK-1.5.0 (and earlier) the default interval was once a minute. In JDK-1.6.0 (and later) the default interval has been changed to once an hour. You can change the RMI distributed garbage collection interval with the properties -Dsun.rmi.dgc.server.gcInterval= and -Dsun.rmi.dgc.client.gcInterval=. That's a third possible workaround.

Similar Messages

  • I have an iphone 3GS and suddenly am getting a "storage almost full message" even though I have 1.4 GB of free space. Now I cannot text.  How do I trouble shoot this?

    I have an iphone 3GS and suddenly am getting a "storage almost full message" even though I have 1.4 GB of free space. Now I cannot text.  How do I trouble shoot this? I recently upgraded to version 6.1.3 if that helps.

    When you sync using iTunes on your computer, do you see a lot of "Other" at the bottom of the iTunes Summary Page for your iPhone?  If you do, try a "Restore iPhone ...".  That should help.
    Hopefully that would do it for you.  If not, the next (more drastic) step would be to restore again as above, but choose "Restore as New" and then manually sync.  Omit any apps that might be suspcious in their space use (primarily Game Center apps).

  • I can't install app anymore on my ipad2 (ios 7) even though there is empty space?, I can't install app anymore on my ipad2 (ios 7) even though there is empty space?

    it's running ios 7.0.2 or something like that.  I can't install new apps anymore, updates work fine.  the 32gb real estate are only used for apps, I have no stored movies, photos, music.   So there is room.  There is also room on the screen itself.  I know there is max number of apps you can install right?  But even though I delete an existing app to replace with a new different one, it still won't install.  I reset, turned on/off, everything but no luck.  Please help. 

    Hook it up to the computer that you normally sync with and, if necessary, fire up iTunes.  Look at the usage chart at the bottom of any screen.  If it appears to be unreasonable, a "Restore" may be in order.  Go to the summary screen and follow the on-screen instructions.

  • ICloud Mail full even though I've emptied it...

    I received an email saying my icloud storage is almost full. So I went in and deleted pretty much everything. My iPod tells me that I have 36 MB in my iCloud mail - but I deleted it ALL!!!!! Both on my device an on iCloud.com. What is up with that? Is there somewhere else I have to go to delete mail? I really don't want to pay for more storage.

    You've turned on "Show Hidden Files". Launch terminal, copy or paste the following command, then hit enter:
    defaults write com.apple.finder AppleShowAllFiles -bool false
    Reboot your computer.

  • External Hard Drive says there is not enough space even though it is empty!

    Hi,
    I have just backed up all my data with Chronosync. I then selected all and put it in my trash, so my external hard drive would have enough space for a backup. But when I try to use Time Machine it says that the external hard drive still has all the data even when I put it in the trash. I do not want to empty the trash before I backup using Time Machine, just in case something happens. How do I get my external hard drive to show it is empty to Time Machine, so I can use it?
    Thanks
    Tim

    moving stuff to trash doesn't remove it from a drive. It puts it in a hidden .Trash folder on that drive. you have to empty trash to reclaim space. even easier would be to reformat the drive if you have a lot of stuff to erase.

  • Why do I get startup disk full error even though I have 2 gb free?

    My startup disk is getting full (I get error message) after 1 day of usage.
    In the finder, after a restart, it says I have 2.05 GB available.
    Then after working for a while (yes, I keep a few apps open - usually Entourage, Word, Firefox, iTunes -- but c'mon, I have 1 GB of RAM) I get an error that my startup disk is full.
    This is my Terminal Log after getting the error:
    Processes: 68 total, 2 running, 66 sleeping... 241 threads 16:52:11
    Load Avg: 0.92, 0.79, 0.71 CPU usage: 40.4% user, 8.4% sys, 51.1% idle
    SharedLibs: num = 204, resident = 38.2M code, 5.36M data, 10.5M LinkEdit
    MemRegions: num = 11633, resident = 436M + 11.8M private, 161M shared
    PhysMem: 237M wired, 448M active, 268M inactive, 954M used, 69.9M free
    VM: 11.3G + 138M 409448(1) pageins, 267438(0) pageouts
    This is my Terminal Log after startup:
    Processes: 59 total, 2 running, 57 sleeping... 165 threads 17:00:14
    Load Avg: 0.31, 0.11, 0.04 CPU usage: 0.0% user, 2.8% sys, 97.2% idle
    SharedLibs: num = 143, resident = 25.7M code, 4.27M data, 7.07M LinkEdit
    MemRegions: num = 4731, resident = 56.3M + 13.4M private, 81.0M shared
    PhysMem: 174M wired, 110M active, 139M inactive, 424M used, 599M free
    VM: 6.67G + 104M 21081(0) pageins, 0(0) pageouts
    Any suggestions?

    That isn't much hard drive space open. I have heard 10% should be free, so if you have an 80 GB drive you need 8 GB free; if you have 100, 10 free and so on. Even if the figure is 5% you are still too low.
    Your error message said you had 267438 pageouts to the disk which seems huge. That means your physical RAM can't keep up and is sending out data to the hard disk which is virtual memory, not real RAM memory. I don't know enough about it to say for sure but that seems like a recipe for this kind of trouble.

  • Continuous Full GC even though Old Generation is not filled up.

    Every few days we see continuous Full GC (more than 1000 FullGC's) and then the application comes to normal...the verbose GC log is as below .. when it is doing Full GC, the old generation is not filled up.. but what is prompting this Full Gc??
    Environment/Settings
    JDK 1.6
    Memory Settings -Xms256M -Xmx2048M -XX:MaxPermSize=512M
    Attaching to process ID 25118, please wait... Debugger attached successfully. Server compiler detected. JVM version is 14.3-b01
    using thread-local object allocation. Parallel GC with 8 thread(s)
    Heap Configuration:
    MinHeapFreeRatio = 40
    MaxHeapFreeRatio = 70
    MaxHeapSize = 2147483648 (2048.0MB)
    NewSize = 2686976 (2.5625MB)
    MaxNewSize = 17592186044415 MB
    OldSize = 5439488 (5.1875MB)
    NewRatio = 2
    SurvivorRatio = 8
    PermSize = 21757952 (20.75MB)
    MaxPermSize = 536870912 (512.0MB)
    Partial Verbose GC logs, when the continuous Full GC starts.
    =====================================
    404006.016: [GC [PSYoungGen: 242756K->10659K(249408K)] 609285K->378416K(825536K), 0.0244300 secs] [Times: user=0.09 sys=0.00, real=0.03 secs]
    404126.211: [GC [PSYoungGen: 239715K->11421K(250624K)] 607472K->379300K(826752K), 0.0314540 secs] [Times: user=0.08 sys=0.01, real=0.03 secs]
    404498.907: [GC [PSYoungGen: 241181K->15113K(250816K)] 609060K->383750K(826944K), 0.0567160 secs] [Times: user=0.11 sys=0.00, real=0.06 secs]
    404559.340: [GC [PSYoungGen: 81552K->9784K(250688K)] 450190K->378571K(826816K), 0.0255340 secs] [Times: user=0.08 sys=0.01, real=0.03 secs]
    404559.366: [Full GC (System) [PSYoungGen: 9784K->0K(250688K)] [PSOldGen: 368787K->225993K(576128K)] 378571K->225993K(826816K) [PSPermGen: 181648K->181648K(187968K)], 1.4180830 secs] [Times: user=1.42 sys=0.00, real=1.42 secs]
    404560.791: [GC [PSYoungGen: 1155K->64K(251072K)] 227148K->226057K(827200K), 0.0141730 secs] [Times: user=0.03 sys=0.02, real=0.01 secs]
    404560.806: [Full GC (System) [PSYoungGen: 64K->0K(251072K)] [PSOldGen: 225993K->202050K(576128K)] 226057K->202050K(827200K) [PSPermGen: 181648K->178996K(185216K)], 1.5066450 secs] [Times: user=1.50 sys=0.00, real=1.51 secs]
    404562.329: [GC [PSYoungGen: 1351K->272K(252032K)] 203401K->202322K(828160K), 0.0129750 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
    404562.342: [Full GC (System) [PSYoungGen: 272K->0K(252032K)] [PSOldGen: 202050K->202125K(576128K)] 202322K->202125K(828160K) [PSPermGen: 178996K->178996K(184512K)], 1.3184310 secs] [Times: user=1.32 sys=0.00, real=1.32 secs]
    404563.674: [GC [PSYoungGen: 1146K->128K(253312K)] 203271K->202253K(829440K), 0.0106520 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
    404563.685: [Full GC (System) [PSYoungGen: 128K->0K(253312K)] [PSOldGen: 202125K->202126K(576128K)] 202253K->202126K(829440K) [PSPermGen: 178997K->178997K(184000K)], 1.3197180 secs] [Times: user=1.32 sys=0.00, real=1.32 secs]
    404565.025: [GC [PSYoungGen: 1146K->64K(254976K)] 203272K->202190K(831104K), 0.0152030 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
    404565.041: [Full GC (System) [PSYoungGen: 64K->0K(254976K)] [PSOldGen: 202126K->202126K(576128K)] 202190K->202126K(831104K) [PSPermGen: 178997K->178997K(183296K)], 1.3072740 secs] [Times: user=1.31 sys=0.00, real=1.31 secs]
    404566.355: [GC [PSYoungGen: 1151K->160K(255360K)] 203278K->202286K(831488K), 0.0107640 secs] [Times: user=0.02 sys=0.02, real=0.01 secs]

    I would try Java 6 update 23 which has JVM build 19.0-b09
    A number of things can trigger more full GC than you need, such as a lack of survivor space.
    However, given it is come in bursts it could be something like running out of direct memory. e.g. when openning some new files or reconnecting via NIO to a server. When you run low on direct memory, the JVM triggers a Full GC as this is the only way to force these objects to be collected.
    RMI can also call full GCs, but I largely turn this off, so I don't have much experience with its performance quirks.

  • 'Disk full' message even though 14gb is shown as available by Finder

    I've started to receive a 'Disk full' message when every indication shows that I still have over 10GB of hard drive space available.  The bar at the bottom of the Finder window, the 'Get Info' screen, and Disk Inventory X all show that my space usage is about 10GB under the size of my available disk space.
    The problem is not limited to an error message - web browsers will also sometimes refuse to download now because of 'disk full' issues.  But if I try to copy files within Finder, it always works, up to the actual limit of the disk size.   This suggests that something is going on with file management where both MacOS and my web browsers see that there is no space, but Finder is able to manage around it when I try to copy files.  Is this a known issue?   Are there large temporary files which are not reflected in the available disk space indicators?
    I'm using an early 2011 MBP with 10.6.8, and the original 500gb hard drive.  I did just upgrade to 8GB of RAM but it's not clear if this is related or a coincidence.

    You are Confusing RAM = Memory.. with Disc Space = Hard Drive...
    ZeroZeroZeroOne wrote:
    I've started to receive a 'Disk full' message when every indication shows that I still have over 10GB of hard drive space available.  ...
    This is Not enough Free Space on your Hard Drive... You need at Least 10% or 25 GB (whichever is greater) for your Mac to Perform as expected...
    Time to Clear Up some Space on your Hard Drive before it Freezes and becomes unusable...
    See Here for starters...
    http://macmost.com/what-to-do-when-your-hard-drive-is-full.html

  • Od classic  all i'm getting on the display is a blank white screen, itunes recognizes it but is only displaying 127gb free even though it's empty and should be 148gb free

    after replacing both the logic board and hard drive on my ipod classic all i'm getting on the display is a blank white screen itunes recognizes it after a restore but is only displaying 127gb free instead of 148gb. the hard drive is a brand new 160gb the logic board came from a working 6th gen 120gb ipod classic

    Will,
    "I thought you bought the entire display and had two LVDS cables?"
    Right, but I mean I think the connector on the logic board might be detached/broken. When I tested the old display, I completely removed the new one, cables and all, and connected the old one with the original LVDS cable. So these symptoms are independent of the lcd/cables that I use.
    Yes that socket could be bad and this:
    Even the random distorted coloration on the cracked lcd was replaced by blank whiteness.
    would point to that problem. Did you try messing with that connector when it's powered up?
    I'm not sure I follow. By "completely black screen" I meant no backlight...
    Detached GPU a.k.a ball grid array ATi chip:
    -computer boots, with chime
    -distortions in color
    -flickering lines
    -cycling through red, green and blue
    -ultimately a blank screen (but still backlit?)
    I have an ATI 9200 GPU chip that failed in a way I call "black moving shadows"
    Detached U28 chip the Danes mounted a complaint about:
    -computer will not boot, no chime
    -loud constantly whirring fan
    Right that pin 15 I talked about. Relatively easy to solder back.
    -maybe will boot if clamped on left of trackpad, but with intermittent graphical distortions
    No there would be no graphic anomalies in this failure and clamping left of the track pad is a problem since that's where the hard drive is. The pressure should go on U28 as indicated in the Cory Arnold site better resolder pin 15.
    I guess I just want to get this all sorted out for posterity.
    OK. If you hit a wall you could send it up here and I'll take a look.
    Richard

  • TS3899 Mail usage, 570mb even though it's empty??

    Trying to save some space, have deleted all old messages and restarted, under usage, mail is biggest file : 570mb?? but nothing in there, any help to reduce it, thanks

    I attempted a reset, but to no avail. My last sentence basically means I only check my email on my Apple devices or from the Hotmail site. I don't use Outlook or any other program to check messages. I just wasn't sure if that would make a difference or not.

  • IPod seems to be full even though I emptied everything...

    Hi,
    I have deleted all the songs in my iPod Shuffle and deleted all the files in it as well. However it only gives 1.2 MB available space and I can not move anything to it anymore. This happened after I stuffed it with loads of files until it was full. I moved all of them to the trash (and it does not seem to have anymore data in it) but iPod still seems to be full. I tried to restore it to factory settings but my iPod software updater does not recognize my iPod, no matter how many times I tried to "reset" it as shown on the iPod support homepage. This is even though iTunes can see my iPod and I can access it on the finder as well. It is the updater software only that seem to be unable to see the iPod. (I tried all the versions from 1.3 to 2.0.1.)
    Please help...
    g3 laptop no-firewire   Mac OS X (10.2.x)  
    g3 laptop no-firewire   Mac OS X (10.2.x)  

    Thanks,
    Emptying the trash solved the problem of space.
    Now I am happily listening to my music again.
    The iPod Software Updater is still not seeing the iPod though.
    The version numbers I gave refered to the updater software.
    I will try it on another computer.
    Thanks again...
    pturk
    g3 laptop no-firewire   Mac OS X (10.2.x)  

  • "Startup Disk is Full" even though I have 3.5 GB free

    I just upgraded my RAM from 2 GB to 4 GB yesterday (2 x 2GB Kingston DDR2), and today I'm getting a message that my "startup disk is full," even though I have 3.5 GB of space on my hard drive.
    I've gotten this message in the past when I only have 100 or 50 MB left on my hard drive, but 3.5 GB of space seems like a lot of room to be getting the "startup disk is full" error.
    I know I'm supposed to have 10% of my hard drive free for optimal usage, but I'm wondering whether this error message is an indication that the RAM isn't working the way it's supposed to.
    Also, the other thing I noticed acting funny since the RAM got installed was shutdown problems. Today I had to hold down the power button to shut down, since doing it via the finder window was not working.
    Thanks in advance for any ideas and tips!
    Mark

    Hi Markus,
    The sleepimage file is from Safe Sleep. This saves the contents of RAM to the HD each time Mac is put to sleep in case of a "mishap" so that data would be saved. As you've discovered, it can take up a bit of HD space (as much RAM as you have installed). Thus, I've disabled Safe Sleep and trashed that file. Sleep is now faster too. If you care to do this, here are my directions:
    Safe Sleep: How to Disable
    Safe sleep copies the content of RAM onto the HD prior to sleep, so it can cause very slow go-to-sleep performance (slow), and sometimes additional issues.
    To disable Safe Sleep:
    Open Terminal.
    Copy and paste in the following two commands:
    sudo pmset -a hibernatemode 0


    sudo nvram "use-nvramrc?"=false


    Hit return.
    When Terminal is finished doing its thing, type in
    Exit
    hit return, and quit Terminal.
    If you do decide to disable Safe Sleep, there’s also a file you can get rid of to save some space on your HD (this file can be as large as the amount of RAM you have installed, probably 2-4GB for the average Mac).
    From the Finder (just click once anywhere on a bare Desktop area to make the correct menu bar appear).
    Click on the Go menu and select Go to Folder.
    Copy and paste or enter the following in the “Go to the Folder:” field.
    /var/vm
    Trash the file named “sleepimage.” (Do NOT trash the file named “swapfiles.”)
    Close the windows, empty the trash, and you should have faster sleeping and a bit more free HD space.

  • Account Sent To Collections Even Though The Final Bill Was Paid In Full, Twice

    Hello World,
    Yet another Verizon billing boondoggle.  My account was sent to collections this month, even though I paid the final bill amount in full, twice.  I have 2 confirmations from Verizon that they received my payment; they took the money out of my account twice, and then mysteriously redeposited the money back in several weeks after the payment, with no notification of why or attempt to contact me.
    Here's the synopsis:
    In August, I moved out of the apartment where I had the internet-only account (no TV or telephone line associated with it.)  I called to cancel and was informed that I'd get a final bill.  When the final bill arrived in September, I paid it on 9/14 via the online portal.  I received a lovely email payment confirmation and the money was deducted from my bank account.  Everything was hunky-dory.  
    Then, on 9/30/13, the payment is refunded to my checking account.  A bill dated 10/1/13 is mailed out, which I again pay, this time on 10/15/13.  I get another payment confirmation, and the money is deducted from my account.  Then, on 10/29/13, the payment is refunded to my checking account.
    I was all set to repeat the process for a 3rd month in a row, when instead of a Verizon bill, I get a collections letter from IC Collections dated 11/1/13.  Thanks Verizon!  As you don't know or care, I'm in the midst of getting a mortgage and you sending this bogus claim to collections has dinged my credit score - way to go!!!
    I tried contacting Verizon directly, but the phone system won't talk to me - because they've transferred my account to IC Collections.  The nice lady at the online chat, Katelyn, for with whom I waited 20 patient minutes to chat, was apologetic but couldn't help.  At the end, she told me it was a billing issue, and not her department - even though I was chatting with the Payment Arrangements / Final Billing portal!
    Well done, Verizon, you've successfully lost another customer.  My new place has super fast internet from a competitor.  I don't plan on dealing with your lousy service again.
    Adios! 

    Hi BillProblemo,
    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you. Please go to your profile page for the forum and look at the top of the middle column where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under "My Support Cases" you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.

  • When sending e-mail, a message says that the sent folder is full,-- even though it is not-- however the mail still gets sent. No problem sending mail to myself

    I am running Thunderbird version 33.1 Recently, when sending e-mail, I get an error message indicating that the sent folder is full and that I should empty or compress it to fix the problem-- so I emptied it-- problem remains. Also, there is no record of sending the e-mail in the sent folder, even though the mail has been sent. No such problems occur when I send mail to myself.
    Any suggestions ???

    If you deleted some of the messages you have done one half of the process. Deleting a message just marks it for deletion and hides it from view. You have to COMPACT the folder to actually delete the messages and free up the space.
    I agree that Thunderbird did a poor job naming this process because it is the subject of much misunderstanding.
    Read about compacting here.
    http://kb.mozillazine.org/Thunderbird_:_Tips_:_Compacting_Folders
    I suggest that you also read this article about maintaining your email system to help prevent problems.
    http://kb.mozillazine.org/Keep_it_working_-_Thunderbird

  • Being made to lose unlimited data, even though I am paying full price???

    I've been around and have been following the discussions/policies about those of us who have unlimited data and how we will lose unlimited data if we purchase a new device taking advantage of the discount pricing. I also know the workarounds of how to keep unlimited data but what I don't understand is this....
    I have 3 smartphones, all have unlimited data. 1 of the 3 phones is eligible for an upgrade, 2 of them are not.
    While signed into my account, I select the phone that is eligible for an upgrade and go into the ordering system. I select the new phone I want to buy and I have the option before adding the new phone to my cart to either: pay full price, or pay the discounted price. I chose the full price option (and this is the one-time full price, not the monthly payment plan option just to be clear) and then add the new phone to my cart. That's when I get a pop-up window that says my unlimited data plan is no longer available and that I would have to chose a new (capped) data plan. Without making any new choice in this pop-up window, I close the window.  I then click through the various pages of the ordering system getting up to the point of reviewing my cart. And at the review cart/review order page, I also see that the system automatically removed my unlimited data plan and slapped on a 2gb individual (not family share) data plan.
    So it would clearly seem that if an upgrade is available on a phone and even choosing to pay full price, and purposefully avoiding taking advantage of the upgrade price, the ordering system is all too eager to take that unlimited data plan away EVEN IF you chose the full price option, despite VZW's repeated statements that if you elect to pay the one-time full price you can keep your unlimited data plan. I tried seeking a clarification of this issue with an online chat representative through the chat button in the ordering process and the only solution from the chat rep was to just order the new phone and pay the full price on one of the 2 phones not currently eligible for an upgrade.
    So what's your response to this VZW? I would appreciate a policy statement to these issues and this situation.

    So I went back into the ordering system today and did the EXACT same steps I did previously by making sure I selected the one-time pay-in-full price, adding the new phone to my cart and walking the ordering system all the way up to the cart and guess what....oh low and behold.....now after posting this message, I am not getting the system prompt I was getting previously about not being able to keep my unlimited data plan (even though I was very precise in confirming my first attempt was at the one-time pay-in-full price the first time which prompted my first post).
    So I guess it was just cleaner and less publicly humiliating for VZW to quietly fix their ordering system then it was to acknowledge their ordering system was forcing customers off unlimited data even when the customer was trying to pay full price in one payment for a new phone despite the Company's very public and very on the record statements that customers choosing to pay the one-time pay-in-full price would be able to keep their unlimited plan.

Maybe you are looking for

  • Keynote and Audio Idiosynchysies on iPad when using AirPlay

    I have the latest version of Apple TV, iPad, and Keynote. We use it to project video via AirPlay on an Apple TV to projectors, and audio from the optical system of the apple TV to an external sound system. My problem is that when I play video files t

  • EXPORT - IMPORT in BACKGROUND JOB

    Hello ABAP Gurus, There are two programs I am using. In 1st Program I am Exporting the Data to the ABAP Memory and then after that scheduling the second program in background from 1st Program through 1 ) JOB_OPEN 2 ) SUBMIT 3 ) JOB_CLOSE Now I am try

  • Mirroring ipad to apple TV dosen't work

    Hi i downloaded all my IOS update , but when i try mirroring , i can see the bleu bar on top  of my ipad it blinks a few times then dissapear and on my TV i still see my apple TV menu. But i tried it at my friend and it works???? do you think it's my

  • Urgen I need help with a cursor

    this my cursor, I created it in a button trigger DECLARE ins_mue_id resultado_v.mue_id%TYPE; ins_pru_cod resultado_v.des_pru_codigo%TYPE; cursor res_cur IS select mue_id, des_pru_codigo from resultado_v where mue_id = :entrar_muestra.mue_mue_id; BEGI

  • Can,t delete or add tracks to i-pod

    Bought new tracks of i tunes in last couple of days and although they transfer to i pod and show as such(can play through laptop) when i remove the i pod they are nowhere to be seen on the i pod anywhere,and when i reconnect to i tunes they are nowhe