slow querying

Bug #583065 reported by Seif Lotfy
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Zeitgeist Framework
Invalid
High
Unassigned

Bug Description

My DB has exactly 416 subjects

*** events: 416 time: 0.541239023209
*** events: 1 time: 0.0319149494171 # querying mostused events where subject.uri is a specific uri
*** events: 2 time: 0.499359130859 # querying mostused events where subject.uri is one of 2 specific uris
*** events: 30 time: 10.8581418991 # querying mostused events where subject.uri is one of 30 specific uris
--------------------------------------------

I duplicated the queries again...

*** events: 416 time: 0.487861871719
*** events: 1 time: 0.0361568927765
*** events: 2 time: 0.499109983444
*** events: 30 time: 16.0003550053

What is happening in the background is that i query tracker for a string i get all matching uris and then query Zeitgeist

you can test with lp:~seif/sezen/sezen2/
You will need ZG trunk to test it

Related branches

Seif Lotfy (seif)
Changed in zeitgeist:
importance: Undecided → High
status: New → Confirmed
milestone: none → 0.3.4
Revision history for this message
Mikkel Kamstrup Erlandsen (kamstrup) wrote :

I really don't think this classifies as a valid bug report if I understand what you are saying correctly..? You complain that round tripping Client -> Tracker - > Client -> Zeitgeist -> Client is slow?

I think we can only care about the speed of pure Client <-> Zeitgeist interactions. Can you post a simple Python script that illustrates the problems in a purely ZG related scope? Or at the very least you need to profile each of these interactions so we can have an idea where the "bug" is...

Revision history for this message
Seif Lotfy (seif) wrote : Re: [Bug 583065] Re: slow querying

No no no i am just showing the Zeitgeist part :)
i am printing the zeitgeist time not tracker time.

On Thu, May 20, 2010 at 8:40 AM, Mikkel Kamstrup Erlandsen <
<email address hidden>> wrote:

> I really don't think this classifies as a valid bug report if I
> understand what you are saying correctly..? You complain that round
> tripping Client -> Tracker - > Client -> Zeitgeist -> Client is slow?
>
> I think we can only care about the speed of pure Client <-> Zeitgeist
> interactions. Can you post a simple Python script that illustrates the
> problems in a purely ZG related scope? Or at the very least you need to
> profile each of these interactions so we can have an idea where the
> "bug" is...
>
> --
> slow querying
> https://bugs.launchpad.net/bugs/583065
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Zeitgeist Framework: Confirmed
>
> Bug description:
> My DB has exactly 416 subjects
>
> *** events: 416 time: 0.541239023209
> *** events: 1 time: 0.0319149494171 # querying mostused
> events where subject.uri is a specific uri
> *** events: 2 time: 0.499359130859 # querying
> mostused events where subject.uri is one of 2 specific uris
> *** events: 30 time: 10.8581418991 # querying
> mostused events where subject.uri is one of 30 specific uris
> --------------------------------------------
>
> I duplicated the queries again...
>
> *** events: 416 time: 0.487861871719
> *** events: 1 time: 0.0361568927765
> *** events: 2 time: 0.499109983444
> *** events: 30 time: 16.0003550053
>
> What is happening in the background is that i query tracker for a string i
> get all matching uris and then query Zeitgeist
>
> you can test with lp:~seif/sezen/sezen2/
> You will need ZG trunk to test it
>
> To unsubscribe from this bug, go to:
> https://bugs.launchpad.net/zeitgeist/+bug/583065/+subscribe
>
>

--
This is me doing some advertisement for my blog http://seilo.geekyogre.com

Revision history for this message
Seif Lotfy (seif) wrote :

So basically the time resembles

Client -> Tracker - > Client (start timing) -> Zeitgeist -> Client (stop timing)

Revision history for this message
Mikkel Kamstrup Erlandsen (kamstrup) wrote :

So ok, what you are really complaining about is the speed of FindEvents/FindEventIds when you pass in a range of templates only with their event.ids set, or are we talking event.subjects[0].uri?

Revision history for this message
Seif Lotfy (seif) wrote :

let me post the code:

def search_zeitgeist(self, uris, search_callback, use_objs=True):

t = time.time()
 def _handle_find_events(events):
print "*** events:", len(events)," time: ", time.time() - t
search_callback(events)
 events = []
for uri in uris:
subject = Subject.new_for_values(uri=uri)
event = Event.new_for_values(subjects=[subject])
events.append(event)
self.zg.find_events_for_templates(events, _handle_find_events,
TimeRange.until_now(), num_events=0 , result_type=4)

you can see i am setting specific uris...

On Thu, May 20, 2010 at 11:42 AM, Mikkel Kamstrup Erlandsen <
<email address hidden>> wrote:

> So ok, what you are really complaining about is the speed of
> FindEvents/FindEventIds when you pass in a range of templates only with
> their event.ids set, or are we talking event.subjects[0].uri?
>
> --
> slow querying
> https://bugs.launchpad.net/bugs/583065
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Zeitgeist Framework: Confirmed
>
> Bug description:
> My DB has exactly 416 subjects
>
> *** events: 416 time: 0.541239023209
> *** events: 1 time: 0.0319149494171 # querying mostused
> events where subject.uri is a specific uri
> *** events: 2 time: 0.499359130859 # querying
> mostused events where subject.uri is one of 2 specific uris
> *** events: 30 time: 10.8581418991 # querying
> mostused events where subject.uri is one of 30 specific uris
> --------------------------------------------
>
> I duplicated the queries again...
>
> *** events: 416 time: 0.487861871719
> *** events: 1 time: 0.0361568927765
> *** events: 2 time: 0.499109983444
> *** events: 30 time: 16.0003550053
>
> What is happening in the background is that i query tracker for a string i
> get all matching uris and then query Zeitgeist
>
> you can test with lp:~seif/sezen/sezen2/
> You will need ZG trunk to test it
>
> To unsubscribe from this bug, go to:
> https://bugs.launchpad.net/zeitgeist/+bug/583065/+subscribe
>
>

--
This is me doing some advertisement for my blog http://seilo.geekyogre.com

Revision history for this message
Markus Korn (thekorn) wrote :

I think we agreed that this is most likely not an issue with zeitgeist, we also changed test/scalability-test.py trying to reproduce exactly this scenario, but the timings provided there are much lower than the timings provided here.
We agreed that this is most likely an issue in sezen's gtk event handling loop.

Changed in zeitgeist:
status: Confirmed → Invalid
Changed in zeitgeist:
milestone: 0.3.4 → 0.4.0
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.