You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The query in method getFirstMessageUnidFromDate is extremely slow (30+ minutes), probably due to persistdatetime in the IDS not having an index. This means that emap startup is limited by this step. This is particularly disruptive when running validation, which is often part of a development cycle.
We could request that an index be added, but perhaps also we can see whether the query can be improved?
If getting an index is going to be too difficult, assuming persistdatetime rank-correlates perfectly with unid (the PK), you could do a binary search in the client code to do the same query.
The text was updated successfully, but these errors were encountered:
The query in method
getFirstMessageUnidFromDate
is extremely slow (30+ minutes), probably due topersistdatetime
in the IDS not having an index. This means that emap startup is limited by this step. This is particularly disruptive when running validation, which is often part of a development cycle.We could request that an index be added, but perhaps also we can see whether the query can be improved?
If getting an index is going to be too difficult, assuming
persistdatetime
rank-correlates perfectly with unid (the PK), you could do a binary search in the client code to do the same query.The text was updated successfully, but these errors were encountered: