[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-frameworks-devel
Subject:    Re: Scrap Baloo Thread Feedback
From:       Boudhayan Gupta <bgupta () kde ! org>
Date:       2016-10-17 3:27:00
Message-ID: CAKDS=N=zxdcaBLz4W6WWFPEVq8efjdjLe4=P=wqJ9rOqhj7c1A () mail ! gmail ! com
[Download RAW message or body]

Hi,

Unfortunately I've been hit my multiple pretty severe health scares in the
last month, and have no idea when I'm going to be at 100% again.

For the time being I'd rather not hold up any development, so don't hold
back anything on my account.

-- Boudhayan

On 16 October 2016 at 17:46, Christoph Cullmann <cullmann@absint.com> wrote:

> Hi,
>
> (evil top posting)
>
> given the silence, I assume any interest in baloo has stopped once more,
> or?
> Or are there any plans how to fixup the current situation?
>
> Greetings
> Christoph
>
> ----- Am 7. Okt 2016 um 20:08 schrieb cullmann cullmann@absint.com:
>
> > Hi,
> >
> >> Hey
> >>
> >> On Fri, Oct 7, 2016 at 6:34 PM, Christoph Cullmann <cullmann@absint.com>
> wrote:
> >>> Hi,
> >>>
> >>>> On Fri, Oct 7, 2016 at 5:58 PM, Christoph Cullmann <
> cullmann@absint.com> wrote:
> >>>>>
> >>>
> >>> 1) No handling of DB errors beside asserting
> >>> 2) No handling of errors in the extractors (e.g. see the fixes I did,
> all
> >>> extractors will need more of that)
> >>> 3) No handling of NFS/large inodes/inconsistencies => crash
> >>>
> >>> In the end, in my opinion, you can rewrite close to all parts dealing
> with the
> >>> DB or
> >>> any other thing internally. If ever any thing gots inconsistent, ATM
> you are
> >>> doomed, forever,
> >>> if not by luck my new startup code deletes the index, then you live
> again until
> >>> it is reindexed.
> >>>
> >>>>
> >>> I am not sure, I am all for removing complete indexing and use a other
> indexer
> >>> like tracker to exactly avoid the excurse into DB world and how to
> handle it
> >>> in a safe way with close to zero person manpower.
> >>>
> >>
> >> It's avoiding the problem and hoping for the best, without any
> experiments.
> > That is not true.
> >
> > I did experiments and search works with tracker, but yes, a problem is
> tagging,+
> > which ATM doesn't work. Nor do I say that is a ready solution now, just a
> > possibility
> > to avoid having to maintain low level code with at most 1 person (how it
> looks
> > ATM).
> >
> > And I don't propose to go that road now, but ATM I see nobody doing any
> other
> > experiments.
> >
> > Besides, tracker is constantly maintained and used since >> 5 years:
> >
> > https://github.com/GNOME/tracker/graphs/contributors
> >
> >>
> >>>
> >>> => That is good that we agree, but I find it very astonishing that we
> use baloo
> >>> in its
> >>> current state more or less mandatory on all that systems were it by
> design will
> >>> fail.
> >>>
> >>> (and it fails if you read the bugs)
> >>>
> >>
> >> There is a certain amount of failure, but it's not "by-design". But
> >> maybe I'm not seeing things clearly.
> > You yourself stated that neither 32-bit issues nor NFS nor > 32-bit
> inodes have
> > any
> > error handling. And that seems to have been known even during design and
> still
> > we have this now as a framework per default used by any Plasma
> installation on
> > systems exactly featuring that without error checking.
> >
> >>
> >>>>
> >>>>>>
> >>>>>> How about requirements such as resource consumption, ease of
> >>>>>> integration, search speed are taken into consideration? Come on
> guys.
> >>>>>> We're engineers over here.
> >>
> >>>>> What is the argument here? If you take a look at bugs.kde.org, you
> see that
> >>>>> people are complaining about all
> >>>>> of that with baloo. I see no evidence nowhere that e.g. baloo is
> "superior" to
> >>>>> what GNOME uses
> >>>>> or any other solution (perhaps beside nepomuk, ok...).
> >>
> >> What tests have been to obtain the evidence?
> > What tests have been done to obtain the inverse evidence? I only hear
> here the
> > complaint
> > about not taking requirements like resource consumption or speed into
> account,
> > but
> > there is ATM zero evidence that e.g. tracker is slower.
> >
> > And yes, there are "it hogs" 100% memory or time bugs open, thought you
> can
> > hardly reproduce them
> > as people are somehow scared to pack their home and send it to us. Not
> that a
> > lot of that bugs
> > got touched at all in Bugzilla.
> >
> >>
> >>>
> >>>>
> >>>> Yup, you have. It's awesome. I no longer have the motivation to work
> on Baloo.
> >>> Thanks, but that makes me very sad, btw.
> >>> Baloo came up to replace nepomuk, which was dead because it had too
> many bugs
> >>> and all maintainers left.
> >>> Now we have baloo, which has many bugs, some even by design, and the
> maintainer
> >>> left, too.
> >>>
> >>
> >> Actually, Nepomuk was not dead. I was maintaining it. I killed it
> >> because it had too many structural problems.
> >>
> >> This is how the open source world works. People work on projects and
> >> when it no longer scratches their itch (I no longer use Baloo), they
> >> loose interest. This is "supposed" to be a hobby.
> > That is ok, to see it as hobby.
> >
> > But I am a bit unnerved that one proposes this as the generic index
> solution
> > for our desktop, which should be stable, if nothing else, and knows that
> it has
> > severe
> > limitations that are not handled (see above). I would have assumed that
> at least
> > the known "can't work here'
> > cases are handled in a graceful way.
> >
> > And given already one of the first things main.cpp of baloo_file does is:
> >
> >    // HACK: Untill we start using lmdb with robust mutex support. We're
> just going
> >    to remove
> >    //       the lock manually in the baloo_file process.
> >    QFile::remove(path + "/index-lock");
> >
> > that doesn't leave high hopes, sorry.
> >
> > And the typical error check is:
> >
> > void MTimeDB::put(quint32 mtime, quint64 docId)
> > {
> >    Q_ASSERT(mtime > 0);
> >    Q_ASSERT(docId > 0);
> >
> >    MDB_val key;
> >    key.mv_size = sizeof(quint32);
> >    key.mv_data = static_cast<void*>(&mtime);
> >
> >    MDB_val val;
> >    val.mv_size = sizeof(quint64);
> >    val.mv_data = static_cast<void*>(&docId);
> >
> >    int rc = mdb_put(m_txn, m_dbi, &key, &val, 0);
> >    Q_ASSERT_X(rc == 0, "MTimeDB::put", mdb_strerror(rc));
> > }
> >
> > without any way to pass an error to the outside, nor any error handling
> code at
> > the outside,
> > as no error can ever occur that is non-fatal.
> >
> >>
> >>>
> >>>> (This is why they run on a separate process)
> >>> That doesn't help, it just OOMs your system => dead, it needs resource
> >>> restrictions,
> >>> which is tricky to get right.
> >>>
> >>
> >> You're right. It needs a better thought out solution. A separate
> >> process is the bare minimum.
> >>
> >> Btw, have you looked if Tracker actually does any of this?
> > It has process separation and it handles crashs well enough to not screw
> up
> > client process queries. And it has maintained extractors or miners,
> unlike us.
> > But for sure, it has bugs and crashs and all things, but it is
> maintained and
> > has a
> > constant stream of fixes for a longer time than baloo + all predecessors
> > together.
> >
> >>
> >>>> My hostility was because the proposal ignores key points such as -
> >>>>
> >>>> * Indexing Speed
> >>>> * Search speed
> >>>> * Database size
> >>> => If you look at the bugs, people complain we are inferior and I see
> not
> >>> that the proposal ignores it, I just see not how to compare, given
> there are no
> >>> hard facts that we are faster than e.g. tracker in any way.
> >>>
> >>
> >> Data can be gathered about it. Not all data is publicly available.
> > That would make any decision easier to take.
> >
> >>
> >>>> * Ease of use with our existing components
> >>> My proposal did not change the interface at all, it has zero impact on
> "ease of
> >>> use".
> >>>
> >>>> * Ease of fixing problems in the code
> >>> My estimate would be: rewrite close to everything. Even the basic
> 64-bit int id
> >>> won't work
> >>> with 64-bit inodes, each DB call must be touched to check for errors,
> at each
> >>> place
> >>> one will need to check for potential inconsistencies and exit
> gracefully...
> >>>
> >>
> >> I don't follow why everything needs to be re-written? Am I missing
> >> something or do we just need to check for more errors and use a higher
> >> integer id? This certainly doesn't seem super trivial, but it sounds
> >> like less work than implementing a shim on top of Tracker.
> > If you look at your own code, you will see, that there is no error
> handling at
> > all,
> > beside asserts. (see above)
> >
> > There is not even the concept of pass an error out to higher levels.
> >
> > Perhaps I am wrong, because there is only a bit of documentation in
> addition,
> > but if you start to add error handling at the DB calls, you can start to
> rewrite
> > all internal layers.
> >
> > Besides I don't see any documentation of the DB format, but I could miss
> that.
> > (at least not in the git nor https://community.kde.org/Baloo)
> >
> >>
> >> I could be wrong.
> > So coulbe be me ;=)
> >
> >>
> >>>>
> >>>> Baloo has certain speed requirements if it is to be used with krunner,
> >>>> and we want instant feedback. This was an integral requirement.
> >>> I doubt e.g. tracker has different requirements, as it is used in
> similar places
> >>> by GNOME.
> >>>
> >>> But all that left besides, have you an proposal how to fixup the
> current
> >>> situation?
> >>> Are you willing to invest some work to fix the current issues or an
> idea what
> >>> would be a good way to tackle them?
> >>>
> >>
> >> I probably will not work more in Baloo.
> >>
> >> I'll have to investigate the problems a bit more. From the cursory
> >> look of this thread, it doesn't seem that the problems are that dire.
> >> But I may not be reading into it correctly.
> > What would be highly appreciated would be a bit of documentation what the
> > different pieces do and stuff like that, even if you have no time to
> code.
> >
> > Greetings
> > Christoph
> >
> > --
> > ----------------------------- Dr.-Ing. Christoph Cullmann ---------
> > AbsInt Angewandte Informatik GmbH      Email: cullmann@AbsInt.com
> > Science Park 1                         Tel:   +49-681-38360-22
> > 66123 Saarbrücken                      Fax:   +49-681-38360-20
> > GERMANY                                WWW:   http://www.AbsInt.com
> > --------------------------------------------------------------------
> > Geschäftsführung: Dr.-Ing. Christian Ferdinand
> > Eingetragen im Handelsregister des Amtsgerichts Saarbrücken, HRB 11234
>
> --
> ----------------------------- Dr.-Ing. Christoph Cullmann ---------
> AbsInt Angewandte Informatik GmbH      Email: cullmann@AbsInt.com
> Science Park 1                         Tel:   +49-681-38360-22
> 66123 Saarbrücken                      Fax:   +49-681-38360-20
> GERMANY                                WWW:   http://www.AbsInt.com
> --------------------------------------------------------------------
> Geschäftsführung: Dr.-Ing. Christian Ferdinand
> Eingetragen im Handelsregister des Amtsgerichts Saarbrücken, HRB 11234
>

[Attachment #3 (text/html)]

<div dir="ltr">Hi,<div><br></div><div>Unfortunately I&#39;ve been hit my multiple \
pretty severe health scares in the last month, and have no idea when I&#39;m going to \
be at 100% again.</div><div><br></div><div>For the time being I&#39;d rather not hold \
up any development, so don&#39;t hold back anything on my \
account.</div><div><br></div><div>-- Boudhayan</div></div><div \
class="gmail_extra"><br><div class="gmail_quote">On 16 October 2016 at 17:46, \
Christoph Cullmann <span dir="ltr">&lt;<a href="mailto:cullmann@absint.com" \
target="_blank">cullmann@absint.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">Hi,<br> <br>
(evil top posting)<br>
<br>
given the silence, I assume any interest in baloo has stopped once more, or?<br>
Or are there any plans how to fixup the current situation?<br>
<br>
Greetings<br>
<span class="HOEnZb"><font color="#888888">Christoph<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
----- Am 7. Okt 2016 um 20:08 schrieb cullmann <a \
href="mailto:cullmann@absint.com">cullmann@absint.com</a>:<br> <br>
&gt; Hi,<br>
&gt;<br>
&gt;&gt; Hey<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Oct 7, 2016 at 6:34 PM, Christoph Cullmann &lt;<a \
href="mailto:cullmann@absint.com">cullmann@absint.com</a>&gt; wrote:<br> &gt;&gt;&gt; \
Hi,<br> &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Fri, Oct 7, 2016 at 5:58 PM, Christoph Cullmann &lt;<a \
href="mailto:cullmann@absint.com">cullmann@absint.com</a>&gt; wrote:<br> \
&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt;&gt;<br>
&gt;&gt;&gt; 1) No handling of DB errors beside asserting<br>
&gt;&gt;&gt; 2) No handling of errors in the extractors (e.g. see the fixes I did, \
all<br> &gt;&gt;&gt; extractors will need more of that)<br>
&gt;&gt;&gt; 3) No handling of NFS/large inodes/inconsistencies =&gt; crash<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; In the end, in my opinion, you can rewrite close to all parts dealing \
with the<br> &gt;&gt;&gt; DB or<br>
&gt;&gt;&gt; any other thing internally. If ever any thing gots inconsistent, ATM you \
are<br> &gt;&gt;&gt; doomed, forever,<br>
&gt;&gt;&gt; if not by luck my new startup code deletes the index, then you live \
again until<br> &gt;&gt;&gt; it is reindexed.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; I am not sure, I am all for removing complete indexing and use a other \
indexer<br> &gt;&gt;&gt; like tracker to exactly avoid the excurse into DB world and \
how to handle it<br> &gt;&gt;&gt; in a safe way with close to zero person \
manpower.<br> &gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; It&#39;s avoiding the problem and hoping for the best, without any \
experiments.<br> &gt; That is not true.<br>
&gt;<br>
&gt; I did experiments and search works with tracker, but yes, a problem is \
tagging,+<br> &gt; which ATM doesn&#39;t work. Nor do I say that is a ready solution \
now, just a<br> &gt; possibility<br>
&gt; to avoid having to maintain low level code with at most 1 person (how it \
looks<br> &gt; ATM).<br>
&gt;<br>
&gt; And I don&#39;t propose to go that road now, but ATM I see nobody doing any \
other<br> &gt; experiments.<br>
&gt;<br>
&gt; Besides, tracker is constantly maintained and used since &gt;&gt; 5 years:<br>
&gt;<br>
&gt; <a href="https://github.com/GNOME/tracker/graphs/contributors" rel="noreferrer" \
target="_blank">https://github.com/GNOME/<wbr>tracker/graphs/contributors</a><br> \
&gt;<br> &gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; =&gt; That is good that we agree, but I find it very astonishing that we \
use baloo<br> &gt;&gt;&gt; in its<br>
&gt;&gt;&gt; current state more or less mandatory on all that systems were it by \
design will<br> &gt;&gt;&gt; fail.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; (and it fails if you read the bugs)<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; There is a certain amount of failure, but it&#39;s not \
&quot;by-design&quot;. But<br> &gt;&gt; maybe I&#39;m not seeing things clearly.<br>
&gt; You yourself stated that neither 32-bit issues nor NFS nor &gt; 32-bit inodes \
have<br> &gt; any<br>
&gt; error handling. And that seems to have been known even during design and \
still<br> &gt; we have this now as a framework per default used by any Plasma \
installation on<br> &gt; systems exactly featuring that without error checking.<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; How about requirements such as resource consumption, ease \
of<br> &gt;&gt;&gt;&gt;&gt;&gt; integration, search speed are taken into \
consideration? Come on guys.<br> &gt;&gt;&gt;&gt;&gt;&gt; We&#39;re engineers over \
here.<br> &gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; What is the argument here? If you take a look at <a \
href="http://bugs.kde.org" rel="noreferrer" target="_blank">bugs.kde.org</a>, you see \
that<br> &gt;&gt;&gt;&gt;&gt; people are complaining about all<br>
&gt;&gt;&gt;&gt;&gt; of that with baloo. I see no evidence nowhere that e.g. baloo is \
&quot;superior&quot; to<br> &gt;&gt;&gt;&gt;&gt; what GNOME uses<br>
&gt;&gt;&gt;&gt;&gt; or any other solution (perhaps beside nepomuk, ok...).<br>
&gt;&gt;<br>
&gt;&gt; What tests have been to obtain the evidence?<br>
&gt; What tests have been done to obtain the inverse evidence? I only hear here \
the<br> &gt; complaint<br>
&gt; about not taking requirements like resource consumption or speed into \
account,<br> &gt; but<br>
&gt; there is ATM zero evidence that e.g. tracker is slower.<br>
&gt;<br>
&gt; And yes, there are &quot;it hogs&quot; 100% memory or time bugs open, thought \
you can<br> &gt; hardly reproduce them<br>
&gt; as people are somehow scared to pack their home and send it to us. Not that \
a<br> &gt; lot of that bugs<br>
&gt; got touched at all in Bugzilla.<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Yup, you have. It&#39;s awesome. I no longer have the motivation to \
work on Baloo.<br> &gt;&gt;&gt; Thanks, but that makes me very sad, btw.<br>
&gt;&gt;&gt; Baloo came up to replace nepomuk, which was dead because it had too many \
bugs<br> &gt;&gt;&gt; and all maintainers left.<br>
&gt;&gt;&gt; Now we have baloo, which has many bugs, some even by design, and the \
maintainer<br> &gt;&gt;&gt; left, too.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Actually, Nepomuk was not dead. I was maintaining it. I killed it<br>
&gt;&gt; because it had too many structural problems.<br>
&gt;&gt;<br>
&gt;&gt; This is how the open source world works. People work on projects and<br>
&gt;&gt; when it no longer scratches their itch (I no longer use Baloo), they<br>
&gt;&gt; loose interest. This is &quot;supposed&quot; to be a hobby.<br>
&gt; That is ok, to see it as hobby.<br>
&gt;<br>
&gt; But I am a bit unnerved that one proposes this as the generic index solution<br>
&gt; for our desktop, which should be stable, if nothing else, and knows that it \
has<br> &gt; severe<br>
&gt; limitations that are not handled (see above). I would have assumed that at \
least<br> &gt; the known &quot;can&#39;t work here&#39;<br>
&gt; cases are handled in a graceful way.<br>
&gt;<br>
&gt; And given already one of the first things main.cpp of baloo_file does is:<br>
&gt;<br>
&gt;      // HACK: Untill we start using lmdb with robust mutex support. We&#39;re \
just going<br> &gt;      to remove<br>
&gt;      //           the lock manually in the baloo_file process.<br>
&gt;      QFile::remove(path + &quot;/index-lock&quot;);<br>
&gt;<br>
&gt; that doesn&#39;t leave high hopes, sorry.<br>
&gt;<br>
&gt; And the typical error check is:<br>
&gt;<br>
&gt; void MTimeDB::put(quint32 mtime, quint64 docId)<br>
&gt; {<br>
&gt;      Q_ASSERT(mtime &gt; 0);<br>
&gt;      Q_ASSERT(docId &gt; 0);<br>
&gt;<br>
&gt;      MDB_val key;<br>
&gt;      key.mv_size = sizeof(quint32);<br>
&gt;      key.mv_data = static_cast&lt;void*&gt;(&amp;mtime);<br>
&gt;<br>
&gt;      MDB_val val;<br>
&gt;      val.mv_size = sizeof(quint64);<br>
&gt;      val.mv_data = static_cast&lt;void*&gt;(&amp;docId);<br>
&gt;<br>
&gt;      int rc = mdb_put(m_txn, m_dbi, &amp;key, &amp;val, 0);<br>
&gt;      Q_ASSERT_X(rc == 0, &quot;MTimeDB::put&quot;, mdb_strerror(rc));<br>
&gt; }<br>
&gt;<br>
&gt; without any way to pass an error to the outside, nor any error handling code \
at<br> &gt; the outside,<br>
&gt; as no error can ever occur that is non-fatal.<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; (This is why they run on a separate process)<br>
&gt;&gt;&gt; That doesn&#39;t help, it just OOMs your system =&gt; dead, it needs \
resource<br> &gt;&gt;&gt; restrictions,<br>
&gt;&gt;&gt; which is tricky to get right.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; You&#39;re right. It needs a better thought out solution. A separate<br>
&gt;&gt; process is the bare minimum.<br>
&gt;&gt;<br>
&gt;&gt; Btw, have you looked if Tracker actually does any of this?<br>
&gt; It has process separation and it handles crashs well enough to not screw up<br>
&gt; client process queries. And it has maintained extractors or miners, unlike \
us.<br> &gt; But for sure, it has bugs and crashs and all things, but it is \
maintained and<br> &gt; has a<br>
&gt; constant stream of fixes for a longer time than baloo + all predecessors<br>
&gt; together.<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;&gt; My hostility was because the proposal ignores key points such as \
-<br> &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; * Indexing Speed<br>
&gt;&gt;&gt;&gt; * Search speed<br>
&gt;&gt;&gt;&gt; * Database size<br>
&gt;&gt;&gt; =&gt; If you look at the bugs, people complain we are inferior and I see \
not<br> &gt;&gt;&gt; that the proposal ignores it, I just see not how to compare, \
given there are no<br> &gt;&gt;&gt; hard facts that we are faster than e.g. tracker \
in any way.<br> &gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Data can be gathered about it. Not all data is publicly available.<br>
&gt; That would make any decision easier to take.<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;&gt; * Ease of use with our existing components<br>
&gt;&gt;&gt; My proposal did not change the interface at all, it has zero impact on \
&quot;ease of<br> &gt;&gt;&gt; use&quot;.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; * Ease of fixing problems in the code<br>
&gt;&gt;&gt; My estimate would be: rewrite close to everything. Even the basic 64-bit \
int id<br> &gt;&gt;&gt; won&#39;t work<br>
&gt;&gt;&gt; with 64-bit inodes, each DB call must be touched to check for errors, at \
each<br> &gt;&gt;&gt; place<br>
&gt;&gt;&gt; one will need to check for potential inconsistencies and exit \
gracefully...<br> &gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I don&#39;t follow why everything needs to be re-written? Am I missing<br>
&gt;&gt; something or do we just need to check for more errors and use a higher<br>
&gt;&gt; integer id? This certainly doesn&#39;t seem super trivial, but it sounds<br>
&gt;&gt; like less work than implementing a shim on top of Tracker.<br>
&gt; If you look at your own code, you will see, that there is no error handling \
at<br> &gt; all,<br>
&gt; beside asserts. (see above)<br>
&gt;<br>
&gt; There is not even the concept of pass an error out to higher levels.<br>
&gt;<br>
&gt; Perhaps I am wrong, because there is only a bit of documentation in \
addition,<br> &gt; but if you start to add error handling at the DB calls, you can \
start to rewrite<br> &gt; all internal layers.<br>
&gt;<br>
&gt; Besides I don&#39;t see any documentation of the DB format, but I could miss \
that.<br> &gt; (at least not in the git nor <a href="https://community.kde.org/Baloo" \
rel="noreferrer" target="_blank">https://community.kde.org/<wbr>Baloo</a>)<br> \
&gt;<br> &gt;&gt;<br>
&gt;&gt; I could be wrong.<br>
&gt; So coulbe be me ;=)<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Baloo has certain speed requirements if it is to be used with \
krunner,<br> &gt;&gt;&gt;&gt; and we want instant feedback. This was an integral \
requirement.<br> &gt;&gt;&gt; I doubt e.g. tracker has different requirements, as it \
is used in similar places<br> &gt;&gt;&gt; by GNOME.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; But all that left besides, have you an proposal how to fixup the \
current<br> &gt;&gt;&gt; situation?<br>
&gt;&gt;&gt; Are you willing to invest some work to fix the current issues or an idea \
what<br> &gt;&gt;&gt; would be a good way to tackle them?<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I probably will not work more in Baloo.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ll have to investigate the problems a bit more. From the cursory<br>
&gt;&gt; look of this thread, it doesn&#39;t seem that the problems are that \
dire.<br> &gt;&gt; But I may not be reading into it correctly.<br>
&gt; What would be highly appreciated would be a bit of documentation what the<br>
&gt; different pieces do and stuff like that, even if you have no time to code.<br>
&gt;<br>
&gt; Greetings<br>
&gt; Christoph<br>
&gt;<br>
&gt; --<br>
&gt; ----------------------------- Dr.-Ing. Christoph Cullmann ---------<br>
&gt; AbsInt Angewandte Informatik GmbH         Email: cullmann@AbsInt.com<br>
&gt; Science Park 1                                      Tel:     \
+49-681-38360-22<br> &gt; 66123 Saarbrücken                                 Fax:     \
+49-681-38360-20<br> &gt; GERMANY                                                WWW: \
<a href="http://www.AbsInt.com" rel="noreferrer" \
target="_blank">http://www.AbsInt.com</a><br> &gt; \
------------------------------<wbr>------------------------------<wbr>--------<br> \
&gt; Geschäftsführung: Dr.-Ing. Christian Ferdinand<br> &gt; Eingetragen im \
Handelsregister des Amtsgerichts Saarbrücken, HRB 11234<br> <br>
--<br>
----------------------------- Dr.-Ing. Christoph Cullmann ---------<br>
AbsInt Angewandte Informatik GmbH         Email: cullmann@AbsInt.com<br>
Science Park 1                                      Tel:     +49-681-38360-22<br>
66123 Saarbrücken                                 Fax:     +49-681-38360-20<br>
GERMANY                                                WWW:     <a \
href="http://www.AbsInt.com" rel="noreferrer" \
                target="_blank">http://www.AbsInt.com</a><br>
------------------------------<wbr>------------------------------<wbr>--------<br>
Geschäftsführung: Dr.-Ing. Christian Ferdinand<br>
Eingetragen im Handelsregister des Amtsgerichts Saarbrücken, HRB 11234<br>
</div></div></blockquote></div><br></div>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic