SageTV Community  

Go Back   SageTV Community > SageTV Products > SageTV EPG Service
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV EPG Service Discussion related to the SageTV EPG Service used within SageTV. Questions about service area coverage, channel lineups, EPG listings, XMLTV, or anything else related to the service or programming guide data for SageTV should be posted here.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-04-2017, 03:39 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
EPG data not updating future information

EPG data is missing starting next Thursday the 12th. Channel data deteriorates during the day. Some channels show No Data early in the day and by the end of the day all channels show No Data. System Status shows the EPG update as always the current time and the next update is always 0.

I have been using Sage V9 since April and the Schedules Direct EPG data since June. Everything has been smooth until now.

Thanks,
Steve
Reply With Quote
  #2  
Old 10-04-2017, 03:45 PM
NetworkGuy NetworkGuy is offline
Sage Fanatic
 
Join Date: Dec 2009
Location: Central NJ
Posts: 869
What SD lineup are you using?
__________________
Hardware: Intel Core i5-3330 CPU; 8GB (2 x 4GB); 2-4TB WD Blue SATA 6.0Gb/s HDD; Windows 7
Servers: ChannelsDVR, Plex, AnyStream, PlayOn,
Tuner: HDHomeRun Connect Quatro
Tuner: HDHomeRun Connect Duo
Sources: OTA, Sling Blue, Prime, Disney+,
Clients: ShieldTV (2), Fire TV Stick 4K (4)
Reply With Quote
  #3  
Old 10-04-2017, 03:56 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
I'm using Local Over the Air Broadcast for zip 75007 (Dallas, TX area).
Reply With Quote
  #4  
Old 10-05-2017, 01:04 AM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
The issue definitely revolves around System Status always showing the EPG update as the current time, and the next update is always 0.

I tried using Sage's repair function, but no change. I also deleted a tuner and used the configuration wizard to add the source back in. Still no change.

Help!

Steve
Reply With Quote
  #5  
Old 10-05-2017, 08:52 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Post your sagetv_0.txt file or look in it for 'EPG' messages.

Last edited by wnjj; 10-05-2017 at 03:11 PM.
Reply With Quote
  #6  
Old 10-05-2017, 09:59 AM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
I've attached the sagetv_0 file. I looked through it and found an EPG error with no explanation of what the error is. Any help would be greatly appreciated.

Thanks,
Steve
Attached Files
File Type: zip sagetv_0.zip (80.2 KB, 142 views)
Reply With Quote
  #7  
Old 10-05-2017, 10:11 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
There's a null pointer exception crashing in the EPG update. I see you're running an older version of V9. There have been fixes for those nulls in the EPG code since. Update to the latest version.

I think you're hitting one of the bugs fixed in 9.1.4 here: https://github.com/google/sagetv/blo...r/CHANGELOG.md

Last edited by wnjj; 10-05-2017 at 10:15 AM.
Reply With Quote
  #8  
Old 10-05-2017, 10:51 AM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
Thank you for the information. I updated Sage to v9.1.7. No change. I've attached the latest sagetv_0 file.

I see after the null exception there are several lines that reference Java. Could Java have taken a hit and needs to be reinstalled?

Steve
Attached Files
File Type: zip sagetv_0 (2).zip (75.6 KB, 144 views)

Last edited by SteveP; 10-05-2017 at 11:12 AM.
Reply With Quote
  #9  
Old 10-05-2017, 11:46 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by SteveP View Post
Thank you for the information. I updated Sage to v9.1.7. No change. I've attached the latest sagetv_0 file.

I see after the null exception there are several lines that reference Java. Could Java have taken a hit and needs to be reinstalled?

Steve
Looks like there's another bug in the SDEPG code where a null isn't being checked. I don't know why it's null. That's something EnterNoEscape will have to look in to.

The getStationID() function call is invalid because the station instance is null.

In SDRipper.java:

Code:
        for (int i = 0; i < numChans; i++)
        {
          SDStation station = map.getStations()[i];

          int stationID = station.getStationID();
Code:
Thu 10/5 11:30:11.347 [EPG@d13ca8] SDEPG got 103 channels
Thu 10/5 11:30:11.376 [EPG@d13ca8] SDEPG Exception thrown: null
Thu 10/5 11:30:11.376 [EPG@d13ca8] java.lang.NullPointerException
Thu 10/5 11:30:11.376 [EPG@d13ca8] 	at sage.epg.sd.SDRipper.extractGuide(SDRipper.java:1364)

Last edited by wnjj; 10-05-2017 at 11:57 AM.
Reply With Quote
  #10  
Old 10-05-2017, 12:41 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
Is there a way I should report this bug so it is looked into?

Steve
Reply With Quote
  #11  
Old 10-05-2017, 03:15 PM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by SteveP View Post
Is there a way I should report this bug so it is looked into?

Steve
You can post issues on github (https://github.com/google/sagetv/issues) but you need to make an account.

EnterNoEscape usually watches these forums but I can PM him in case he hasn't seen this yet.
Reply With Quote
  #12  
Old 10-06-2017, 12:14 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
wnjj, I sent EnterNoEscape a pm yesterday, and I just posted the issue on Github.

Thanks for your help,
Steve
Reply With Quote
  #13  
Old 10-06-2017, 12:48 PM
EnterNoEscape's Avatar
EnterNoEscape EnterNoEscape is offline
SageTVaholic
 
Join Date: Jun 2010
Location: Harrisburg, PA
Posts: 2,657
This looks like it might be more of an issue with the JSON returned by Schedules Direct. I posted on GitHub what I need to correctly determine the cause.
__________________
SageTV v9 Server: ASRock Z97 Extreme4, Intel i7-4790K @ 4.4Ghz, 32GB RAM, 6x 3TB 7200rpm HD, 2x 5TB 7200rpm HD, 2x 6TB 7200rpm HD, 4x 256GB SSD, 4x 500GB SSD, unRAID Pro 6.7.2 (Dual Parity + SSD Cache).
Capture: 1x Ceton InfiniTV 4 (ClearQAM), 2x Ceton InfiniTV 6, 1x BM1000-HDMI, 1x BM3500-HDMI.

Clients: 1x HD300 (Living Room), 1x HD200 (Master Bedroom).
Software: OpenDCT :: WMC Live TV Tuner :: Schedules Direct EPG
Reply With Quote
  #14  
Old 10-06-2017, 04:36 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
It seems like more users than me would be seeing this issue. Because of this, I thought maybe my system had a unique issue. I fully uninstalled Sage and then reinstalled it (V9.1.7). I reused the sage.property and wiz.bin files from before the uninstall. Same results in terms of getting a null response (I first deleted a tuner and re-added it so I could enter my sdepg user name and password).
Reply With Quote
  #15  
Old 10-06-2017, 04:51 PM
rkulagow's Avatar
rkulagow rkulagow is offline
Sage Advanced User
 
Join Date: Feb 2013
Posts: 157
Quote:
Originally Posted by EnterNoEscape View Post
This looks like it might be more of an issue with the JSON returned by Schedules Direct. I posted on GitHub what I need to correctly determine the cause.
I found the issue; it's on our side. The lineup is fixed. I need to add some additional error checking.
Reply With Quote
  #16  
Old 10-06-2017, 08:19 PM
SteveP SteveP is offline
Sage Advanced User
 
Join Date: Jun 2004
Location: Dallas
Posts: 135
Cool! Thank you very much for checking on this.

Steve
Reply With Quote
  #17  
Old 10-07-2017, 04:54 AM
EnterNoEscape's Avatar
EnterNoEscape EnterNoEscape is offline
SageTVaholic
 
Join Date: Jun 2010
Location: Harrisburg, PA
Posts: 2,657
Quote:
Originally Posted by rkulagow View Post
I found the issue; it's on our side. The lineup is fixed. I need to add some additional error checking.
Thank you for looking into this so fast.
__________________
SageTV v9 Server: ASRock Z97 Extreme4, Intel i7-4790K @ 4.4Ghz, 32GB RAM, 6x 3TB 7200rpm HD, 2x 5TB 7200rpm HD, 2x 6TB 7200rpm HD, 4x 256GB SSD, 4x 500GB SSD, unRAID Pro 6.7.2 (Dual Parity + SSD Cache).
Capture: 1x Ceton InfiniTV 4 (ClearQAM), 2x Ceton InfiniTV 6, 1x BM1000-HDMI, 1x BM3500-HDMI.

Clients: 1x HD300 (Living Room), 1x HD200 (Master Bedroom).
Software: OpenDCT :: WMC Live TV Tuner :: Schedules Direct EPG
Reply With Quote
  #18  
Old 10-14-2017, 10:27 AM
michaelh michaelh is offline
Sage User
 
Join Date: Mar 2016
Posts: 9
I'm running into the same problem. Apparently this began a few days ago for me since it was recording fine early in the week.

Is there any way we can get this fix ahead of the next release or somehow manually fix the epg?

Sat 10/14 10:59:30.432 [EPG@1ff4583] SDEPG got 83 channels
Sat 10/14 10:59:30.463 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] Creating the D3D device manager
Sat 10/14 10:59:30.463 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] Creating D3D Device
Sat 10/14 10:59:30.489 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] DX9Renderer NATIVE WARNING (non-FAILURE) line 589 hr=0x8876086a
Sat 10/14 10:59:30.489 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] DX9Renderer creation failed. Wait and then try again, it worked before...size 1920x1080
Sat 10/14 10:59:30.572 [EPG@1ff4583] SDEPG Exception thrown: null
Sat 10/14 10:59:30.599 [EPG@1ff4583] java.lang.NullPointerException
Sat 10/14 10:59:30.599 [EPG@1ff4583] at sage.epg.sd.SDRipper.extractGuide(SDRipper.java:1341)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at sage.EPGDataSource.expand(EPGDataSource.java:709)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at sage.EPG.run(EPG.java:783)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at java.lang.Thread.run(Unknown Source)
Sat 10/14 10:59:30.601 [EPG@1ff4583] ERROR Updating EPG Source Local Over the Air Broadcast - 75025 (sdepg)
Sat 10/14 10:59:30.628 [EPG@1ff4583] ErrorText:expand called on Local Over the Air Broadcast - 75025 (sdepg) at Sat 10/14 10:59:29.689 expandedUntil=Sat 10/14 9:57:19.468 scannedUntil=Sat 10/14 11:00:00.000
EPG Expanding Local Over the Air Broadcast - 75025 (sdepg) at Sat 10/14 10:59:29.738
Reply With Quote
  #19  
Old 10-14-2017, 10:35 AM
jusjoken jusjoken is online now
SageTVaholic
 
Join Date: Dec 2005
Location: Strathmore, AB
Posts: 2,727
Quote:
Originally Posted by michaelh View Post
I'm running into the same problem. Apparently this began a few days ago for me since it was recording fine early in the week.

Is there any way we can get this fix ahead of the next release or somehow manually fix the epg?

Sat 10/14 10:59:30.432 [EPG@1ff4583] SDEPG got 83 channels
Sat 10/14 10:59:30.463 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] Creating the D3D device manager
Sat 10/14 10:59:30.463 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] Creating D3D Device
Sat 10/14 10:59:30.489 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] DX9Renderer NATIVE WARNING (non-FAILURE) line 589 hr=0x8876086a
Sat 10/14 10:59:30.489 [FinalRender-SAGETV_PROCESS_LOCAL_UI@950020] DX9Renderer creation failed. Wait and then try again, it worked before...size 1920x1080
Sat 10/14 10:59:30.572 [EPG@1ff4583] SDEPG Exception thrown: null
Sat 10/14 10:59:30.599 [EPG@1ff4583] java.lang.NullPointerException
Sat 10/14 10:59:30.599 [EPG@1ff4583] at sage.epg.sd.SDRipper.extractGuide(SDRipper.java:1341)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at sage.EPGDataSource.expand(EPGDataSource.java:709)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at sage.EPG.run(EPG.java:783)
Sat 10/14 10:59:30.600 [EPG@1ff4583] at java.lang.Thread.run(Unknown Source)
Sat 10/14 10:59:30.601 [EPG@1ff4583] ERROR Updating EPG Source Local Over the Air Broadcast - 75025 (sdepg)
Sat 10/14 10:59:30.628 [EPG@1ff4583] ErrorText:expand called on Local Over the Air Broadcast - 75025 (sdepg) at Sat 10/14 10:59:29.689 expandedUntil=Sat 10/14 9:57:19.468 scannedUntil=Sat 10/14 11:00:00.000
EPG Expanding Local Over the Air Broadcast - 75025 (sdepg) at Sat 10/14 10:59:29.738
Open a ticket on the SD site for your lineup and if its the same issue then they will fix your lineup.

k
__________________
If you wish to see what I am up to and support my efforts visit my Patreon page
Reply With Quote
  #20  
Old 10-14-2017, 12:26 PM
michaelh michaelh is offline
Sage User
 
Join Date: Mar 2016
Posts: 9
Thanks. They were able to fix my lineup. somehow.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
problem with program guide data updating sflamm SageTV EPG Service 4 02-19-2017 01:56 AM
Existing Program Information Not Updating on Some Channels ptzink SageTV EPG Service 6 10-29-2013 07:50 AM
(help a noob) No guide data and no "system information" shortyjacobs SageTV EPG Service 7 11-19-2008 08:01 PM
EPG Data only for only 8 hours into future olymatt SageTV EPG Service 3 11-15-2008 12:31 AM
Setup up future recording not presently in the 14 day tv data m1ketuck SageTV Software 9 04-04-2004 04:20 PM


All times are GMT -6. The time now is 03:57 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.