[Zeitgeist] [Bug 722762] Re: zeitgeist-daemon using ~100% of CPU

2011-10-17 Thread Mikkel Kamstrup Erlandsen
Thanks for confirming this. We need something to go on before we can
proceed with this issue though. Here's what you can do to help:

First install the needed debugging packages:

  sudo apt-get install gdb python-dbg libxapian22-dbg

Then when you see the issue drop to a terminal:

  pgrep -f zeitgeist-daemon
  sudo gdb 2>&1 | tee zg-dump.txt
  attach THE_PID_FROM_THE_FIRST_COMMAND
  
  bt full
  quit

Then attach zg-dump.txt here

-- 
You received this bug notification because you are a member of Zeitgeist
Extensions, which is the registrant for Zeitgeist Extensions.
https://bugs.launchpad.net/bugs/722762

Title:
  zeitgeist-daemon using ~100% of CPU

Status in Zeitgeist Framework:
  Invalid
Status in Zeitgeist Extensions:
  Fix Released
Status in “zeitgeist” package in Ubuntu:
  Invalid
Status in “zeitgeist-extensions” package in Ubuntu:
  Fix Released

Bug description:
  I've tried restarting my computer, closing all applications, etc., but
  no matter what System Monitor tells me zeitgeist-daemon is using
  96-100% of the CPU on my i5 Sony Vaio laptop.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zeitgeist/+bug/722762/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 704576] Re: Please update the cheese dataprovider and get it merged upstream

2011-10-17 Thread Bug Watch Updater
** Changed in: cheese
   Status: Incomplete => Confirmed

** Changed in: cheese
   Importance: Medium => Wishlist

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/704576

Title:
  Please update the cheese dataprovider and get it merged upstream

Status in Cheese Camera Application:
  Confirmed
Status in Zeitgeist Data-Sources:
  Confirmed

Bug description:
  Some 5 months back Michal created a cheese plugin and submitted it on gnome 
bugzilla.
  As per Daniel, it needs to be fixed so that it can merged.

  
  The URL is https://bugzilla.gnome.org/show_bug.cgi?id=627311

  Assigning it to mhr3

To manage notifications about this bug go to:
https://bugs.launchpad.net/cheese/+bug/704576/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 722762] Re: zeitgeist-daemon using ~100% of CPU

2011-10-17 Thread Mingming Ren
I can confirm that this bug still exists.

ii  libzeitgeist-1.0-1  0.3.12-0ubuntu1 
 
ii  zeitgeist   0.8.2-1 

ii  zeitgeist-core  0.8.2-1 
   
ii  zeitgeist-datahub   0.7.0-0ubuntu4  
 
ii  zeitgeist-extension-fts 0.0.13-0ubuntu1

-- 
You received this bug notification because you are a member of Zeitgeist
Extensions, which is the registrant for Zeitgeist Extensions.
https://bugs.launchpad.net/bugs/722762

Title:
  zeitgeist-daemon using ~100% of CPU

Status in Zeitgeist Framework:
  Invalid
Status in Zeitgeist Extensions:
  Fix Released
Status in “zeitgeist” package in Ubuntu:
  Invalid
Status in “zeitgeist-extensions” package in Ubuntu:
  Fix Released

Bug description:
  I've tried restarting my computer, closing all applications, etc., but
  no matter what System Monitor tells me zeitgeist-daemon is using
  96-100% of the CPU on my i5 Sony Vaio laptop.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zeitgeist/+bug/722762/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Branch ~zeitgeist/zeitgeist/bluebird] Rev 317: A couple of fixes

2011-10-17 Thread noreply

revno: 317
committer: Michal Hruby 
branch nick: bb-fts
timestamp: Mon 2011-10-17 09:46:27 +0200
message:
  A couple of fixes
modified:
  configure.ac
  extensions/fts-python/sql.py
  src/datamodel.vala


--
lp:~zeitgeist/zeitgeist/bluebird
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird

Your team Zeitgeist Framework Team is subscribed to branch 
lp:~zeitgeist/zeitgeist/bluebird.
To unsubscribe from this branch go to 
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird/+edit-subscription
=== modified file 'configure.ac'
--- configure.ac	2011-10-12 13:40:58 +
+++ configure.ac	2011-10-17 07:46:27 +
@@ -25,11 +25,12 @@
 AC_SUBST(LDFLAGS)
 
 GLIB_REQUIRED=2.26.0
+SQLITE_REQUIRED=3.7
 
 BLUEBIRD_REQUIRED="glib-2.0 >= $GLIB_REQUIRED
gobject-2.0 >= $GLIB_REQUIRED
gio-unix-2.0 >= $GLIB_REQUIRED
-   sqlite3"
+   sqlite3 >= $SQLITE_REQUIRED"
 
 PKG_CHECK_MODULES(BLUEBIRD, [$BLUEBIRD_REQUIRED])
 AC_SUBST(BLUEBIRD_CFLAGS)

=== modified file 'extensions/fts-python/sql.py'
--- extensions/fts-python/sql.py	2011-10-10 14:07:42 +
+++ extensions/fts-python/sql.py	2011-10-17 07:46:27 +
@@ -209,7 +209,7 @@
 	# gains us a big speedup, for more information see http://www.sqlite.org/wal.html
 	# FIXME: Set journal_mode to WAL when teamdecision has been take.
 	# cursor.execute("PRAGMA journal_mode = WAL")
-	cursor.execute("PRAGMA journal_mode = DELETE")
+	# cursor.execute("PRAGMA journal_mode = DELETE")
 	# Seif: another result of the performance tweaks discussed in (LP: #639737)
 	# we decided to set locking_mode to EXCLUSIVE, from now on only
 	# one connection to the database is allowed to revert this setting set locking_mode to NORMAL.

=== modified file 'src/datamodel.vala'
--- src/datamodel.vala	2011-10-12 21:05:59 +
+++ src/datamodel.vala	2011-10-17 07:46:27 +
@@ -316,7 +316,7 @@
 
 VariantIter iter = event_variant.iterator ();
 
-assert (iter.n_children () == 3);
+assert (iter.n_children () >= 3);
 VariantIter event_array = iter.next_value ().iterator ();
 VariantIter subjects_array = iter.next_value ().iterator ();
 Variant payload_variant = iter.next_value ();
@@ -360,7 +360,7 @@
 var vb = new VariantBuilder (new VariantType ("("+Utils.SIG_EVENT+")"));
 
 vb.open (new VariantType ("as"));
-vb.add ("s", id.to_string ());
+vb.add ("s", id == 0 ? "" : id.to_string ());
 vb.add ("s", timestamp.to_string ());
 vb.add ("s", interpretation != null ? interpretation : "");
 vb.add ("s", manifestation != null ? manifestation : "");

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp