[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-08-28 Thread Sandro Knauß
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #25 from Sandro Knauß  ---
Git commit ca67354dcc5b4640f26de0b3e46c79cf1e50bc32 by Sandro Knauß, on behalf
of David Faure.
Committed on 28/08/2019 at 16:36.
Pushed by knauss into branch 'Applications/18.08'.

Akonadi: fix dangling transaction after itemsync failure

Summary:
TransactionSequence was emitting result() twice when rolling back.

* How did this happen?
The TransactionRollbackJob is (automatically) added as a subjob of the
TransactionSequence, so when it finishes, slotResult is called (like for
all subjobs), as well as rollbackResult().
Since the latter emits result() already [mostly for symmetry with
commitResult()], we don't need to do that in slotResult (which doesn't do
it for the case of committing, either).

* Why is it a problem to emit result() twice?
Well, first, it's against the law in KJob world. In practice,
ItemSyncPrivate::slotTransactionResult was called twice (for the same
TransactionSequence job) which made it decrement mTransactionJobs one
time too many.
As a result, checkDone() finished too early and didn't go into the
"commit transaction" branch for other transactions.
Leaving a transaction "open" is a good recipe for database deadlocks further
down the line.

* Why did the TransactionSequence roll back in the first place?
In my case because of the infamous and not-yet fixed "Multiple merge
candidates" problem, but it seems that it can also happen when having
items without a part, according to Volker's investigations.
All of these issues still need to be fixed, but at least akonadi seems
to be still usable after they happen.

Test Plan: Ctrl+L in kmail, with a folder having multiple items for the same
RID

Reviewers: dvratil, vkrause

Reviewed By: dvratil

Subscribers: kfunk, kde-pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D19487

(cherry picked from commit f1281cf18f40fd69acd61c31b48f5ce43e138eea)
(cherry picked from commit 8ff596c4fe15199b66262c624d8b7c8d8ec7368f)
(cherry picked from commit 15c91a0ac93051465b37807efceb6e9fd36cb73b)

M  +0-2src/core/jobs/transactionsequence.cpp

https://commits.kde.org/akonadi/ca67354dcc5b4640f26de0b3e46c79cf1e50bc32

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-08-16 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #24 from David Faure  ---
Git commit 15c91a0ac93051465b37807efceb6e9fd36cb73b by David Faure.
Committed on 16/08/2019 at 09:27.
Pushed by dfaure into branch 'Applications/18.12'.

Akonadi: fix dangling transaction after itemsync failure

Summary:
TransactionSequence was emitting result() twice when rolling back.

* How did this happen?
The TransactionRollbackJob is (automatically) added as a subjob of the
TransactionSequence, so when it finishes, slotResult is called (like for
all subjobs), as well as rollbackResult().
Since the latter emits result() already [mostly for symmetry with
commitResult()], we don't need to do that in slotResult (which doesn't do
it for the case of committing, either).

* Why is it a problem to emit result() twice?
Well, first, it's against the law in KJob world. In practice,
ItemSyncPrivate::slotTransactionResult was called twice (for the same
TransactionSequence job) which made it decrement mTransactionJobs one
time too many.
As a result, checkDone() finished too early and didn't go into the
"commit transaction" branch for other transactions.
Leaving a transaction "open" is a good recipe for database deadlocks further
down the line.

* Why did the TransactionSequence roll back in the first place?
In my case because of the infamous and not-yet fixed "Multiple merge
candidates" problem, but it seems that it can also happen when having
items without a part, according to Volker's investigations.
All of these issues still need to be fixed, but at least akonadi seems
to be still usable after they happen.

Test Plan: Ctrl+L in kmail, with a folder having multiple items for the same
RID

Reviewers: dvratil, vkrause

Reviewed By: dvratil

Subscribers: kfunk, kde-pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D19487

(cherry picked from commit f1281cf18f40fd69acd61c31b48f5ce43e138eea)
(cherry picked from commit 8ff596c4fe15199b66262c624d8b7c8d8ec7368f)

M  +0-2src/core/jobs/transactionsequence.cpp

https://commits.kde.org/akonadi/15c91a0ac93051465b37807efceb6e9fd36cb73b

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-04-07 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #23 from David Faure  ---
Oh, and about part-less items, I just noticed that I had a bunch in a spam
folder, and after syncing that folder, the same query returns nothing. So it
seems to me that a successful sync clears that up. In other words, it would be
a consequence of a stuck sync -- not the cause for it.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-04-07 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #22 from David Faure  ---
Additional fix pushed in
https://cgit.kde.org/akonadi.git/commit/?id=257598195d09b1022ebf08cd58245cd3493f5a2e
for 19.04

Note: all this is about akonadi not getting stuck when the "multiple merge
candidates" problem happens. The problem itself isn't fixed yet, for lack of a
reproducible testcase.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-04-04 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #21 from David Faure  ---
Found one more problem https://phabricator.kde.org/D20243

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-21 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

David Faure  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #20 from David Faure  ---
Both fixes have been pushed in Applications/19.04 branch.

(The fix for canceling is https://phabricator.kde.org/D19488)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-21 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #19 from David Faure  ---
Git commit 8ff596c4fe15199b66262c624d8b7c8d8ec7368f by David Faure.
Committed on 21/03/2019 at 15:50.
Pushed by dfaure into branch 'Applications/19.04'.

Akonadi: fix dangling transaction after itemsync failure

Summary:
TransactionSequence was emitting result() twice when rolling back.

* How did this happen?
The TransactionRollbackJob is (automatically) added as a subjob of the
TransactionSequence, so when it finishes, slotResult is called (like for
all subjobs), as well as rollbackResult().
Since the latter emits result() already [mostly for symmetry with
commitResult()], we don't need to do that in slotResult (which doesn't do
it for the case of committing, either).

* Why is it a problem to emit result() twice?
Well, first, it's against the law in KJob world. In practice,
ItemSyncPrivate::slotTransactionResult was called twice (for the same
TransactionSequence job) which made it decrement mTransactionJobs one
time too many.
As a result, checkDone() finished too early and didn't go into the
"commit transaction" branch for other transactions.
Leaving a transaction "open" is a good recipe for database deadlocks further
down the line.

* Why did the TransactionSequence roll back in the first place?
In my case because of the infamous and not-yet fixed "Multiple merge
candidates" problem, but it seems that it can also happen when having
items without a part, according to Volker's investigations.
All of these issues still need to be fixed, but at least akonadi seems
to be still usable after they happen.

Test Plan: Ctrl+L in kmail, with a folder having multiple items for the same
RID

Reviewers: dvratil, vkrause

Reviewed By: dvratil

Subscribers: kfunk, kde-pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D19487

(cherry picked from commit f1281cf18f40fd69acd61c31b48f5ce43e138eea)

M  +0-2src/core/jobs/transactionsequence.cpp

https://commits.kde.org/akonadi/8ff596c4fe15199b66262c624d8b7c8d8ec7368f

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-21 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #18 from David Faure  ---
Git commit f1281cf18f40fd69acd61c31b48f5ce43e138eea by David Faure.
Committed on 21/03/2019 at 15:49.
Pushed by dfaure into branch 'master'.

Akonadi: fix dangling transaction after itemsync failure

Summary:
TransactionSequence was emitting result() twice when rolling back.

* How did this happen?
The TransactionRollbackJob is (automatically) added as a subjob of the
TransactionSequence, so when it finishes, slotResult is called (like for
all subjobs), as well as rollbackResult().
Since the latter emits result() already [mostly for symmetry with
commitResult()], we don't need to do that in slotResult (which doesn't do
it for the case of committing, either).

* Why is it a problem to emit result() twice?
Well, first, it's against the law in KJob world. In practice,
ItemSyncPrivate::slotTransactionResult was called twice (for the same
TransactionSequence job) which made it decrement mTransactionJobs one
time too many.
As a result, checkDone() finished too early and didn't go into the
"commit transaction" branch for other transactions.
Leaving a transaction "open" is a good recipe for database deadlocks further
down the line.

* Why did the TransactionSequence roll back in the first place?
In my case because of the infamous and not-yet fixed "Multiple merge
candidates" problem, but it seems that it can also happen when having
items without a part, according to Volker's investigations.
All of these issues still need to be fixed, but at least akonadi seems
to be still usable after they happen.

Test Plan: Ctrl+L in kmail, with a folder having multiple items for the same
RID

Reviewers: dvratil, vkrause

Reviewed By: dvratil

Subscribers: kfunk, kde-pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D19487

M  +0-2src/core/jobs/transactionsequence.cpp

https://commits.kde.org/akonadi/f1281cf18f40fd69acd61c31b48f5ce43e138eea

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-14 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #17 from Michal Hlavac  ---
Can confirm that temporary fix works. Didn't try to cancel fetch process.

Patched packages form openSUSE Tumbleweed:
https://build.opensuse.org/package/show/home:hlavki/akonadi-server

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399167

m...@bearsh.org changed:

   What|Removed |Added

 CC||m...@bearsh.org

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-11 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #16 from David Faure  ---
I debugged this and came up with https://phabricator.kde.org/D19487

It breaks canceling (as a user, clicking on the progress item to cancel), but
if you stay away from canceling, you can try that patch to make akonadi more
useable. I'm working on fixing canceling

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-11 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=399167

Kevin Funk  changed:

   What|Removed |Added

 CC||devuran...@gmx.net

--- Comment #15 from Kevin Funk  ---
*** Bug 402526 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-03-08 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=399167

Christoph Feck  changed:

   What|Removed |Added

 CC||jens-bugs.kde.org@spamfreem
   ||ail.de

--- Comment #14 from Christoph Feck  ---
*** Bug 404538 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-02-27 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #13 from Michal Hlavac  ---
Created attachment 118398
  --> https://bugs.kde.org/attachment.cgi?id=118398=edit
mariadb status

I run `SHOW ENGINE INNODB STATUS` query in akonadiconsole.
It looks like 2 transactions with same update query lock each other.

UPDATE PimItemTable SET atime = ? WHERE ( ( PimItemTable.id = ? ) )

Output is in attachment.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-02-11 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #12 from Milian Wolff  ---
ok, that cleanup didn't help for long... First I got spammed by hundreds of
lines of:

  1281.968 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:152]:
Error:  "No such file or directory"
  1281.970 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:151]:
Payload file  "/home/milian/.local/share/akonadi/file_db_data/94/1670294_r1" 
could not be open for reading!
  1281.970 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:152]:
Error:  "No such file or directory"
  1281.971 warning:
org.kde.pim.akonadiprivate/Akonadi::ExternalPartStorage::replayTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/private/externalpartstorage.cpp:326]:
Warning: failed to remove
"/home/milian/.local/share/akonadi/file_db_data/93/1670293_r1" while committing
a transaction
  1281.971 warning:
org.kde.pim.akonadiprivate/Akonadi::ExternalPartStorage::replayTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/private/externalpartstorage.cpp:326]:
Warning: failed to remove
"/home/milian/.local/share/akonadi/file_db_data/94/1670294_r1" while committing
a transaction
  1281.979 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:151]:
Payload file  "/home/milian/.local/share/akonadi/file_db_data/96/1670296_r1" 
could not be open for reading!
  1281.979 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:152]:
Error:  "No such file or directory"
  1281.981 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:151]:
Payload file  "/home/milian/.local/share/akonadi/file_db_data/97/1670297_r1" 
could not be open for reading!
  1281.981 critical:
org.kde.pim.akonadiserver/Akonadi::Server::PartHelper::translateData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/parthelper.cpp:152]:
Error:  "No such file or directory"
  1281.982 warning:
org.kde.pim.akonadiprivate/Akonadi::ExternalPartStorage::replayTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/private/externalpartstorage.cpp:326]:
Warning: failed to remove
"/home/milian/.local/share/akonadi/file_db_data/96/1670296_r1" while committing
a transaction
  1281.982 warning:
org.kde.pim.akonadiprivate/Akonadi::ExternalPartStorage::replayTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/private/externalpartstorage.cpp:326]:
Warning: failed to remove
"/home/milian/.local/share/akonadi/file_db_data/97/1670297_r1" while committing
a transaction

and finally I reached:

  1331.367 warning:
org.kde.pim.akonadiserver/Akonadi::Server::QueryBuilder::exec[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/querybuilder.cpp:435]:
"Deadlock found when trying to get lock; try restarting transaction QMYSQL3:
Unable to store statement results"
  1331.515 critical:
org.kde.pim.akonadiserver/Akonadi::Server::DataStore::retryLastTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/datastore.cpp:1426]:
DATABASE ERROR when retrying transaction
  1331.515 critical:
org.kde.pim.akonadiserver/Akonadi::Server::DataStore::retryLastTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/datastore.cpp:1427]:
  Error code: "1062"
  1331.515 critical:
org.kde.pim.akonadiserver/Akonadi::Server::DataStore::retryLastTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/datastore.cpp:1428]:
  DB error:  "Duplicate entry '615495-5' for key
'PartTable_pimItemIdTypeIndex'"
  1331.515 critical:
org.kde.pim.akonadiserver/Akonadi::Server::DataStore::retryLastTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/datastore.cpp:1429]:
  Error text: "Duplicate entry '615495-5' for key
'PartTable_pimItemIdTypeIndex' QMYSQL3: Unable to execute statement"
  1331.516 critical:
org.kde.pim.akonadiserver/Akonadi::Server::DataStore::retryLastTransaction[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/storage/datastore.cpp:1430]:
  Query: "INSERT INTO PartTable (pimItemId, partTypeId, data, datasize,
version, storage) VALUES (?, ?, ?, ?, ?, ?)"
  1331.516 warning:
org.kde.pim.akonadiserver/Akonadi::Server::Connection::handleIncomingData[/home/milian/projects/kf5/src/kde/pim/akonadi/src/server/connection.cpp:283]:
Error while handling command CreateItem on connection akonadi_imap_resource_3
(0x557ffe691720)
  1205.189 warning:

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-02-11 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #11 from Milian Wolff  ---
I had 1007 part-less items, removing them seems to have helped for now. Could
we add that cleanup routine to `akonadictl fsck`? Also, any idea how could
prevent this from happening again - I am willing to apply patches in the hunt
for why this happens in the first place.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-02-07 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=399167

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #10 from Volker Krause  ---
Hit this too. Unclear what caused it, but the workaround from #338658 seems to
fix the damage:
DELETE pimitemtable FROM pimitemtable
LEFT JOIN parttable ON pimitemtable.id = parttable.pimItemId
WHERE parttable.id IS NULL

That would suggest that a part-less item can fairly reliably trigger the
transaction deadlock.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-01-08 Thread David Faure
https://bugs.kde.org/show_bug.cgi?id=399167

David Faure  changed:

   What|Removed |Added

 CC||fa...@kde.org

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-01-08 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=399167

Kevin Funk  changed:

   What|Removed |Added

 CC||kf...@kde.org

--- Comment #9 from Kevin Funk  ---
Running into this issue here after completely cleaning ~/.local/share/akonadi*,
trying to recover from a different issue... :(

Akonadi 5.8.3.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-12-01 Thread Vinzenz Vietzke
https://bugs.kde.org/show_bug.cgi?id=399167

Vinzenz Vietzke  changed:

   What|Removed |Added

 CC||v...@vinzv.de

--- Comment #8 from Vinzenz Vietzke  ---
Created attachment 116616
  --> https://bugs.kde.org/attachment.cgi?id=116616=edit
full akonadi error log

(In reply to Michal Hlavac from comment #4)
> It didn't help. After few days errors are back. I think it may have some
> connection with suspend to RAM.

I can somehow confirm that as I suspend my machines to RAM as well. Kmail
worked fine for a while then suddenly stopped. Restarting akonadi helps for
manually fetching emails once. Full error log attached.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-11-27 Thread Andreas Schneider
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #7 from Andreas Schneider  ---
I press 'Del' the message is remove from the message list. The message
reappears  because of the imap sync in the message list. Now if you 'Del' the
reappeared message again, you create a 'Multiple merge candidates' error for
that message in Trash ...

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-11-27 Thread Andreas Schneider
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #6 from Andreas Schneider  ---
I can more or less reproduce the multiple merge canditates.

I'm connected to an imap server over a slow VPN connection. I have "Download
all messages for offline use" selected.

When I read the Inbox and delete a mail, I press 'Del' and the message is gone.
Then a sync with the imap it triggered automatically. The sync makes the
message appear again and them it is removed again.

If I read the next mail and want to delete it. I press 'Del' however the sync
to imap was trigger and I hit 'Del' while the old message reappears I send a
delete for that message twice! Now the there is a 'multiple merge canditates'
issue for Trash.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-11-27 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=399167

Daniel Vrátil  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #5 from Daniel Vrátil  ---
The Multiple Merge Candidates issue and the transaction deadlock are not
exactly the same issue, but I believe they are somewhat connected.

I don't have a plan yet how to solve this (a workaround for the transaction
deadlock is to use Postgres :)), if anyone has a simple set of steps how to
reliably reproduce this issue, it would be a tremendous help.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-11-19 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #4 from Michal Hlavac  ---
It didn't help. After few days errors are back. I think it may have some
connection with suspend to RAM.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-11-16 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #3 from Michal Hlavac  ---
I fixed this by completely reinitialization of akonadi.

somethink like:
akonadictl stop
remove directories ~/.local/share/akonadi*
remove files and directories ~/.config/akonadi*
akonadictl start

and setup all IMAP accounts again.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-10-19 Thread Christian Boltz
https://bugs.kde.org/show_bug.cgi?id=399167

Christian Boltz  changed:

   What|Removed |Added

 CC||kde-b...@cboltz.de

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-10-11 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #2 from Michal Hlavac  ---
Created attachment 115560
  --> https://bugs.kde.org/attachment.cgi?id=115560=edit
Akonadi error log

Same issue here. I get this on daily basis. It's realy unusable. Full akonadi
log in attachment.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-10-11 Thread Michal Hlavac
https://bugs.kde.org/show_bug.cgi?id=399167

Michal Hlavac  changed:

   What|Removed |Added

 CC||hla...@hlavki.eu

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-10-02 Thread Andreas Schneider
https://bugs.kde.org/show_bug.cgi?id=399167

--- Comment #1 from Andreas Schneider  ---
Please print the "folder name" in the error/debug message:

org.kde.pim.akonadicore: Creating/updating items from the akonadi database
failed: "Multiple merge candidates, aborting"

and/or

org.kde.pim.akonadicore: Error during ItemSync:  "Multiple merge candidates,
aborting"

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2018-09-28 Thread Andreas Schneider
https://bugs.kde.org/show_bug.cgi?id=399167

Andreas Schneider  changed:

   What|Removed |Added

 CC||dvra...@kde.org

-- 
You are receiving this mail because:
You are the assignee for the bug.