Continuous WebJob running but not processing

Greetings all,
I have an Azure WebJob that runs continuously. It detects a file uploaded to a specific folder on my website, and then transfers it to an azure storage container, which is also being listened to. When the container detects a new file, it does some basic
CSV parsing to upload data into a database. Part of this process inserts some basic processing details into the database as well. Files are uploaded into our file location once every 15 minutes. The files are typically less than a megabyte in size.
Last week we noticed that there hadn't been any updates into the database, but we could see files in our file location that hadn't been processed. I went into the management portal (the old one) and loaded up the output for my continuous webjob. The output
looked something like this:
File Detected: D:\home\site\wwwroot\import\gtt_17227_78031.8761
[03/02/2015 05:40:33 > 767b4c: INFO] .Executing: 'Program.Upload' because This was function was programmatically called via the host APIs.
[03/02/2015 05:40:35 > 767b4c: INFO] .Executing: 'Program.ProcessImportFile' because New blob input detected: importjobsdata/gtt_17227_78031.8761
[03/02/2015 05:55:33 > 767b4c: INFO] ....................................................................................................................................................................................................................................................................................................................................................................................................................................................File
Detected: D:\home\site\wwwroot\import\gtt_17227_78933.2151
[03/02/2015 05:55:35 > 767b4c: INFO] .Executing: 'Program.Upload' because This was function was programmatically called via the host APIs.
[03/02/2015 05:55:37 > 767b4c: INFO] .Executing: 'Program.ProcessImportFile' because New blob input detected: importjobsdata/gtt_17227_78933.2151
[03/02/2015 06:10:34 > 767b4c: INFO] .....................................................................................................................................................................................................................................................................................................................................................................................................................................................File
Detected: D:\home\site\wwwroot\import\gtt_17227_79834.7601
[03/02/2015 06:10:36 > 767b4c: INFO] Executing: 'Program.Upload' because This was function was programmatically called via the host APIs.
[03/02/2015 06:10:39 > 767b4c: INFO] .Executing: 'Program.ProcessImportFile' because New blob input detected: importjobsdata/gtt_17227_79834.7601
[03/02/2015 06:25:36 > 767b4c: INFO] .................................................................................................................................................................................................................................................................................................................................................................................................................................................File
Detected: D:\home\site\wwwroot\import\gtt_17227_80736.4539
[03/02/2015 06:25:38 > 767b4c: INFO] Executing: 'Program.Upload' because This was function was programmatically called via the host APIs.
[03/02/2015 06:25:40 > 767b4c: INFO] .Executing: 'Program.ProcessImportFile' because New blob input detected: importjobsdata/gtt_17227_80736.4539
[03/02/2015 06:40:37 > 767b4c: WARN] Reached maximum allowed output lines for this run, to see all of the job's logs you can enable website application diagnostics
[03/02/2015 10:20:11 > 767b4c: SYS INFO] WebJob is still running
Even though the webjob was still running, the files weren't being processed. I noticed the error message  about the output lines being reached, but this is a new message to me. We ran into this same problem about a month ago, and the log simply had
a bunch of ..... at the end, as we typically see.
Is there a way to diagnose this further? Is there a way to "auto trim" the output lines? I suspect I could convert the webjob to run on a schedule instead, but having a "instant import" whenever we get files from our third party system
has been quite handy.

Okay, then my error might be related to something else then since that functionality should already be in place. I was able to dig into my blob logs around the time the error was reported and found this entry:
date,level,applicationName,instanceId,eventTickCount,eventId,pid,tid,message,activityId
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153031600,0,4272,141,,
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153031600,0,4272,26,Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.,
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153031600,0,4272,26,   at AzureTables.LiveTableCore.AzureTableWriteCorePartition.AzureTables.ITableCorePartitionWriter.AddObject(GenericEntity entity),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153187863,0,4272,26,"   at AzureTables.AzureTable.WriterState.WriteAsync(IDictionary`2 values, String partitionKey, String rowKey)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153187863,0,4272,26,"   at AzureTables.AzureTable.Write(String partitionKey, String rowKey, Object values)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153187863,0,4272,26,   at Microsoft.WindowsAzure.Jobs.ExecutionStatsAggregator.LogMru(ExecutionInstanceLogEntity log),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153344101,0,4272,26,   at Microsoft.WindowsAzure.Jobs.ExecutionStatsAggregator.InstanceContext.IndexRunningFunction(),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153344101,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.ExecutionBase.Work(FunctionInvokeRequest instance, FunctionExecutionContext context, Func`2 fpInvokeFunc, ExecutionInstanceLogEntity logItem,
IFunctionInstanceLoggerContext logItemContext)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153344101,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.ExecutionBase.Work(FunctionInvokeRequest instance, FunctionExecutionContext context, Func`2 fpInvokeFunc)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153500345,0,4272,26,   at Microsoft.WindowsAzure.Jobs.Internals.AntaresExecuteFunction.Work(ExecutionInstanceLogEntity logItem),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153500345,0,4272,26,   at Microsoft.WindowsAzure.Jobs.ExecuteFunctionBase.Execute(FunctionInvokeRequest instance),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153500345,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.Worker.OnNewBlob(FunctionDefinition func, CloudBlob blob)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153500345,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.Worker.MyInvoker.Microsoft.WindowsAzure.Jobs.ITriggerInvoke.OnNewBlob(CloudBlob blob, BlobTrigger trigger, CancellationToken token)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153667195,0,4272,26,   at Microsoft.WindowsAzure.Jobs.Listener.OnNewBlobWorker(CloudBlob blob),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153667195,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.Listener.InvokeTriggersForBlob(String accountName, String containerName, String blobName)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153667195,0,4272,26,   at Microsoft.WindowsAzure.Jobs.Worker.NewBlob(BlobWrittenMessage msg),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153667195,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.NotifyNewBlobViaInMemory.ProcessMessages(Action`1 fpOnNewBlob, CancellationToken token)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153823549,0,4272,26,   at Microsoft.WindowsAzure.Jobs.Worker.Poll(CancellationToken token),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153823549,0,4272,26,"   at Microsoft.WindowsAzure.Jobs.JobHost.RunAndBlock(CancellationToken token, Action pauseAction)",
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153979883,0,4272,114,   at Microsoft.WindowsAzure.Jobs.JobHost.RunAndBlock(CancellationToken token),
2015-02-28T09:20:15,Error,tracktrace,767b4c,635607120153979883,0,4272,114,   at dataimportwebjob.Program.Main() in c:\Projects\tracktrace\dataimportwebjob\Program.cs:line 36,
Does this make any sense to you? For reference, line 36 is my Host.RunAndBlock() command in my main method.

Similar Messages

  • I get this message box when I click on a link (in a document or email)"firefox is already running, but not reponding. To open a new window, you must first close the existing firefox process, or restart your system"

    if Firefox is already running and click on any link in Word, Excel, Outlook, etc. A message box pops up and I have to hit OK to close it.
    "firefox is already running, but not reponding. To open a new window, you must first close the existing firefox process, or restart your system"

    if Firefox is already running and click on any link in Word, Excel, Outlook, etc. A message box pops up and I have to hit OK to close it.
    "firefox is already running, but not reponding. To open a new window, you must first close the existing firefox process, or restart your system"

  • Firefox is already running but not responding,No process in task manager,Restart and uninstall not useful.Profile manager error

    So one day when I opened my mozilla firefox Ive got the "Firefox is already running but not responding.To open a new window,you must first close the existing firefox process,or restart your system."
    So I checked my task manager but there is no process,I then checked hours in the internet to find a solution.Yes,I also checked for solutions in this site.Then,I try uninstalling and restarting,it also didn't work,Next I also tried downloading profilemanager and tried to run it but as unlucky as I can be,it also didn't work. Please help :(

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Wont start. says is running but not responding. open taskmanager but no firefos under processes. restart computer and get same.

    when i click the firefox icon to open firefox it pops up a box that says that firefox is running but not responding. i open taskmager to close the firefox process but there is no firefox process listed. i restart my computer and get the same result. firefox appears to still be running but not responding even after a restart. i even tried a cold boot ad got the same results. performed a full virus scan and excep for some tracking cookies it came up negative. i deleated the firefox kernal and downloaded a new copy and installed it. got same problem.

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * https://support.mozilla.com/kb/Firefox+hangs

  • OID is up & running but "ldap"  process are not running

    Hi all,
    Oracle Internet Directory is up & running but LDAP processes ( Not Running ---- Process oidmon
    Not Running ---- Process oidldapd
    Not Running ---- Process oidrepld
    Not Running ---- Process odisrv) are not running.
    I am trying to configure SSO for reverse proxy server and ran the command ssocfg.sh https proxyServerName proxyServerPort
    and when i am trying to go for next step that is ldapmodify -D cn=orcladmin -w welcome1 -v -f setdasurl.ldif
    it is showing up cannot connect to LDAP server. and also when i am trying to acess SSO admin Server the redirection url is showing up with 404 page not found error.
    pls help me
    Thanks

    Do 'oidctl status' and check if the 'oidldapd' is up and running. If not, start 'oidmon' by executing the command 'oidmon start'.
    To start 'oidldapd', use 'oidctl' command.
    Eg: oidctl connect=<sid_name> server=oidldapd instance=<instance_num> start
    Sometimes, when you start 'oidmon', the 'oidldapd' process is also started. So, its a good idea to do 'oidctl status' after 'oidmon start'

  • I have the latest version but I am continually told that Firefox is running but not responding and that I need to close Firefox or restart my computer to clear the problem. Why is this happening?

    I have the latest version but I am continually told that Firefox is running but not responding and that I need to close Firefox or restart my computer to clear the problem. Why is this happening?

    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs
    See also:
    * http://kb.mozillazine.org/Profile_in_use
    * https://support.mozilla.com/kb/Firefox+is+already+running+but+is+not+responding

  • Once I turn off the browser and then try to use it later, I get a message saying its already running but not responding. tells me to close it which I cant do since its already closed. Forces me to restart my computer

    Each time I start, use and close Firefox, when I try to use it the 2nd time, I get a message saying its already running but not responding. It Isn't. I have to restart my computer everytime I want to use Firefox.
    == This happened ==
    Every time Firefox opened
    == I downloaded the new version ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; GTB6.4; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: '''[http://kb.mozillazine.org/Kill_application Kill Application]'''
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    '''[[Firefox hangs]]'''
    '''[http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit (Mozillazine article)]'''
    '''[[Firefox is already running but is not responding]]'''
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox SafeMode is a diagnostic mode that disables extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes before starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your extensions and then try to find which is causing it by enabling one at a time until the problem reappears. You have to close and restart Firefox after each change via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.

  • I can't open firefox the running but not responding window opens and says to close the existing window. I can't do that shutting down the computer doesn't do anything to help. I've done all the suggestions here. I've uninstalled and reinstalled firefox

    Firefox will not open. I get the firefox is already running but not responding window... I have tried rebooting with no help. I have tried to end the process via cntrl+shift+esc and nothing firefox is listed to end. I have tried find the app data via the run icon in the start up window, I have no run icon on this system (Acer with windows vista(?)
    == This happened ==
    Every time Firefox opened
    == The computer was hard shut down and did a improper shut down scan when it was restarted ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    I am having a similar problem. Running Xp.
    Latest revision of firefox.
    After using firefox for a while if I exit, parent.lock is locked and i have to reboot to reload firefox.
    I have killed all firefox applications from task manager (usually there are none). and I have tried 3 different "file unlock" programs including unlocker to no avail.
    I also recently installed a program that shows -all- open files, and parent.lock is not listed, and thus not closable/unlockable from there.

  • V6.01, Windows 7, click on icon, "firefox is already running but not responding" Task manager doesn't know about it. I can't quit it or get it to load. Brand new install. What to do?

    Brand new Lenovo computer, Windows 7 Home. New install of Firefox 6.0.1, set as default browser, don't launch when I click done. Icon appears in tray. I click the icon, and a message says "firefox is running but not responding. To open a new window, you must first close the existing process, or reboot". It's not obviously running. I can't find a way to make it quit. Task manager doesn't list it as a current application. Uninstall using the control panel uninstall function and then reinstalling gives the same message. Rebooting doesn't fix the problem and gives the same message. Firefox had been working until I tried to update my bookmarks.

    No can do. I can delete the current profile and install Firefox, which should create a new blank profile. The message still says "Firefox is already running." I can place my old profile in the proper folder, and Firefox will still be already running. I can't actually use Firefox, because even though the message says it is running, there is nothing on the screen I can access.
    After uninstalling Firefox, deleting the two items left in the Programs folder, and deleting the profile again, it still didn't work. I then got frisky and from the Roaming folder I deleted the Mozilla folder which contains the Firefox folder which contains the now empty Profiles folder. That worked, and a new set of folders with a new blank profile were created. So apparently it was the empty folders that never got deleted that were causing the issue.
    Thanks for your suggestion. It got me thinking.

  • Firefox 29.0.1 on Windows 7 (64-bit): ALWAYS get "Firefox is already running but not responding..." error and need Task Manager to close/restart Firefox.

    I run Firefox 29.0.1 on Windows 7 (64 bit) and I get the "Firefox is already running but not responding. In order to open the program you must close the existing window." error. EVERY TIME I try to start Firefox. The posted solution works to start the program, but it is not a permanent solution. I go through the Task Manager and end the old Firefox process, then I can open a new window. While working, I can open multiple tabs and multiple windows, everything seems to (usually) work the way it should. Then after I completely exit Firefox, in order to open the program again I need to fix the SAME error again. Every time. It doesn't seem to hurt anything really, but it is quite annoying.
    I used to get this same error on some of the older Firefox versions but it was only once in a while. With the new 29.0.1 it is literally EVERY TIME I TRY TO RUN FIREFOX!!!!
    So, down to the big question: is there a permanent fix for this yet? Or will there be one included in the next version update? Or am I going to have to go back to Internet Explorer? I know I am not alone in this experience; i've seen several other users posting similar questions but none of them received satisfactory answers. So what's the story here, team Firefox?

    '''https://support.mozilla.org/questions/997866?esab=a&s=&r=1&as=s'''.<BR>
    This is not a cure but will make it easier if Firefox locks up.

  • On switching on, a message says 'Firefox is already running but not responding...........' then tells me to close it and restart but how can I close it when the page isn't yet displayed?

    When I switch on my computer I get the desktop then I try to click on Mozilla Firefox but get the message, 'Firefox is already running but not responding. To open a new window you must first close the existing Firefox process or resart your system.' I looked up how to close but I need to click on 'file' then 'exit'. How can I do that when I can't see the page yet? IE is working fine.

    See also [[Firefox is already running but is not responding]]

  • "Firefox is already running but not responding" - have tried all the usual solutions.

    The message I'm getting is the standard: "Firefox is already running, but is not responding." I'm using a PC with Windows 7.
    I've tried:
    - Opening task manager and manually ending the process. This didn't work because the process is not listed in applications, processes, or services.
    - Deleting the parent/lock file. This didn't work because the file is not in any of the firefox folders. I've checked APPDATA/Local/Firefox as well as APPDATA/Roaming/Firefox, and the original install folder just to be thorough. It's not a hidden file either - I have those set to display.
    - Creating a new profile and importing settings from the old one. I can't import settings because the old profile is still running.
    - Restarting before and after each of these potential solutions, including restarting in safe mode, shutting off the computer and waiting a bit before restarting, etc.
    All I really want back are my bookmarks, which I've spent quite a while creating. Unfortunately, there is no file I can find for the default profile that has the bookmarks stored. When I created a new profile, a folder appeared with its name in the APPDATA/Roaming/Firefox folder, with all of the bookmarks, etc. There is no such folder for the default profile though - which is the one I want. I've even tried switching to Chrome and importing bookmarks, but that doesn't work because the bookmarks can't be imported while Firefox is still running.

    Does a new profile work?<br />
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    If there is no profile present then you also get that error about "Firefox is already running but not responding"
    If you uninstalled Firefox at any time in the past and removed your personal data or deleted that profile folder yourself then you no longer have a profile to start with or restore files from.
    See:
    * http://kb.mozillazine.org/Recovering_a_missing_profile
    * http://kb.mozillazine.org/Profile_in_use

  • It always says:Firefox is already running but not responding; what can i do to fix this problem; it has only started after having downloaded the latest verion.

    I downloaded the latest version of firefox and the problem has started; it aways says: "Firefox is already running, but not responding. To open a new window you must first close the existing Firefox process or restart your system; I have to do this about 3 times for the internet to come on again; what can I do, short of calling a technician??

    Please read this article: [[Firefox is already running but is not responding]]

  • Firefox is already running, but not responding to open a new window

    I closed the only opened Firefox process that was running. Then clicked the Fox to start Firefox again. I received a message: Firefox is already running, but not responding, to open a new window. You must close the existing Firefox process, or restart your system. This is a stupid message since there is no Firefox in process.
    == This happened ==
    Not sure how often

    Hello Lara.
    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • Firefox stops loading new pages, displays "Loading". When I close it it goes. But when I restart it gives me "Another version is running, but not responding. This requires a power cycle reboot.

    Version 3.6.18. Running on Windows XP Pro. (kept current)
    This happens on a variety of pages. I get the little Loading thing in the tab, with the circle moving. So I X out (to exit Firefox). When I go to restart I get the error message "Another version of FireFox is running, but not responding". I give Windows the "three finger salute", and go to Task Manager, and do not see any reference to Firefox, and the Performance, and Processes seem OK. But it never seems to close the earlier Firefox, and won't let me open a new one. Any suggestions? Super Thanks for your help!

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

Maybe you are looking for

  • Outputting System User Name in Ad Hoc Query (S_PH0_48000513)

    I am trying to create an HR Ad Hoc Query and one of the fields that I am trying to output is System User Name from infotype 0105 Communications.  If I choose this field and do not choose the Communication Type, I get two records per employee - one re

  • Oracle 9i OCA done ..wat next??

    hi all i had recently completed Oracle 9i OCP training in one of Oracle 9i training partners and also completed OCA (SQL (007) and Funda I (031)). I am currently searching for a job as a Jr. Oracle DBA somewhere in Mumbai or any part of India Could y

  • [Abandoned] device-mapper/dm-crypt/luks without initramfs

    Hi everyone, i attempted to compile a custom kernel to reduce the my EEE 1000H's boot time by compiling everything i need statically, which seems to work well, except one thing: Accessing my encrypted root partition. I created it by following the wik

  • Trace in the listener.log

    Hello, Can we monitor failed connctions (ORA-01017: invalid username/password; logon denied) to trace the listener.log Does exist an option to do that ? Thanks for your answer Fabrice

  • Why does this compile?

    class Popcorn{      public void pop(){           System.out.println("popcorn"); class Food{      Popcorn p = new Popcorn{           public void sizzle(){                System.out.println("anonymous sizzling popcorn");           public void pop(){