EPICS Controls Argonne National Laboratory

Experimental Physics and
Industrial Control System

1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  <20162017  2018  2019  2020  2021  2022  2023  2024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  <20162017  2018  2019  2020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: PyEpics timeout behavior
From: "Guyotte, Greg S." <[email protected]>
To: "[email protected]" <[email protected]>
Date: Tue, 30 Aug 2016 14:43:21 +0000
I’m experiencing unexpected timeout behavior on PyEpics 3.2.4.

Using epics.PV, I experience double the expected timeout in all cases.
Using epics.caget(), the timeout value seems to be ignored and I
experience 5 seconds of delay when I ask for less than 5 seconds.  With
epics.caget(), if I ask for more than 5 seconds of timeout, it works as
expected.

Here is a simple Python test case to reproduce:

  import epics, time

  waittime = 2
  print "PyEpics %s test with timeout of %d seconds" %
(epics.__version__,waittime)

  print "Test 1: using epics.PV"
  time1 = time.time()
  p = epics.PV("idontexist", connection_timeout=waittime)
  time2 = time.time()
  print "  Time to create non-existent PV= ",time2-time1
  val = p.get(timeout=waittime, use_monitor=False)
  time3 = time.time()
  print "  Time to get non-existent PV= ",time3-time2

  print "" 

  print "Test 2: using epics.caget"
  time1 = time.time()
  val = epics.caget("idontexist", timeout=waittime, use_monitor=False)
  time2 = time.time()
  print "  Time to caget non-existent PV= ", time2-time1





Replies:
Re: [UNTRUSTED] PyEpics timeout behavior Kasemir, Kay
Re: PyEpics timeout behavior Matt Newville

Navigate by Date:
Prev: ipmiComm 3.0.2 Hinxx
Next: Re: [UNTRUSTED] PyEpics timeout behavior Kasemir, Kay
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  <20162017  2018  2019  2020  2021  2022  2023  2024 
Navigate by Thread:
Prev: ipmiComm 3.0.2 Hinxx
Next: Re: [UNTRUSTED] PyEpics timeout behavior Kasemir, Kay
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  <20162017  2018  2019  2020  2021  2022  2023  2024 
ANJ, 30 Aug 2016 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·