james-project icon indicating copy to clipboard operation
james-project copied to clipboard

Avoid sorting PG messages

Open chibenwa opened this issue 1 year ago • 8 comments

chibenwa avatar Jan 30 '24 14:01 chibenwa

14:47:21,240 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.3.0:check (check-style) on project apache-james-mailbox-postgres: You have 1 Checkstyle violation. -> [Help 1]

Why avoiding the sort btw?

Arsnael avatar Jan 31 '24 02:01 Arsnael

Why avoiding the sort btw?

The retrieveFullContent fetched bodyContent from ObjectStorage, it is quite heavy. In the past, I wanted to it concurrency, I used flatMap, but the result after flatmap was not sorted -> some test cases did not pass. -> using .sort to resolve that. Looks like we can also resolve that by flatmapSequential (ensuring the order inside the reactor)

vttranlina avatar Jan 31 '24 02:01 vttranlina

Why avoiding the sort btw?

Because in order to sort you need to have all the entities sorted at hand first.

chibenwa avatar Jan 31 '24 07:01 chibenwa

seems related: https://ci-builds.apache.org/job/james/job/ApacheJames/job/PR-1964/3/

Arsnael avatar Feb 01 '24 07:02 Arsnael

09:37:35,066 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.3.0:check (check-style) on project apache-james-mailbox-postgres: You have 1 Checkstyle violation. -> [Help 1]

Arsnael avatar Feb 02 '24 07:02 Arsnael

Related : https://ci-builds.apache.org/job/james/job/ApacheJames/job/PR-1964/6/#showFailuresLink

Same as what has been reported before already btw => https://github.com/apache/james-project/pull/1964#issuecomment-1920642886

Arsnael avatar Feb 05 '24 02:02 Arsnael

The build keeps getting timeout?

Arsnael avatar Feb 15 '24 08:02 Arsnael

Please team care about this as this is a potential production-killer.

chibenwa avatar Feb 23 '24 11:02 chibenwa

Please team care about this as this is a potential production-killer.

chibenwa avatar Mar 05 '24 14:03 chibenwa