Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Regrading R4_19_maintenance branch

Your logging looks a little messed up - ManagedServiceFactory Update Queue is something from your application. Not sure what value it is adding appearing in the logging like like.

> 2021-11-25 17:36:16.698:WARN:oejsh.ContextHandler:ManagedServiceFactory Update Queue: Empty contextPath
This message is from ContextHandler.setContextPath method - it has been called with the empty string ""

> 2021-11-25 17:36:16.709:INFO:oejs.session:ManagedServiceFactory Update Queue: DefaultSessionIdManager workerName=node0
> 2021-11-25 17:36:16.709:INFO:oejs.session:ManagedServiceFactory Update Queue: No SessionScavenger set, using defaults
These  lines come from the DefaultSessionIdManager start up.

> 2021-11-25 17:36:16.710:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 600000ms
This line most probably comes from the HouseKeeper startup, it is using the default value for scavenging frequency

> 2021-11-25 17:36:16.735:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 600000ms
This line occurs whenever the HouseKeeper scavenging frequency is changed.

> 2021-11-25 17:36:16.752:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 726000ms
This means the HouseKeeper scavenging frequency has been changed.

From your logs it is impossible to tell if these are all different concurrent instances of the ContextHandler, DefaultSessionIdManager and HouseKeeper that have been started or
whether it's just one instance restarting.

Use the Server.setDumpAfterStart(true) option to log the exact configuration of your jetty server after it starts. Try increasing the detail of the logging to DEBUG until you can understand what is going on -you should also check your osgi container as to which bundles have been started/restarted/resolved etc

Jan
On Mon, 29 Nov 2021 at 23:23, Kuldeep Singh Budania <kuldeep.singh08@xxxxxxxxx> wrote:
Hi All,

Can someone update on this as we are stuck at this point and application is not coming up because of this issue?

Thanks,
---------------------
Kuldeep Singh Budania



On Mon, Nov 29, 2021 at 10:09 AM Kuldeep Singh Budania <kuldeep.singh08@xxxxxxxxx> wrote:
Hi All,

I am upgrading jetty and OSGI versions from R-4.9 to R4_19_maintenance.
The Jetty version is getting upgraded from 9.4.11 to 9.4.44 and bundles seem to be satisfied using 'Validate Bundles'.

When I am trying to boot my system with newly mentioned artifacts, after booting initially for 4-5 minutes, it suddenly stops processing further with below message in the console:

2021-11-25 17:36:16.698:WARN:oejsh.ContextHandler:ManagedServiceFactory Update Queue: Empty contextPath

2021-11-25 17:36:16.709:INFO:oejs.session:ManagedServiceFactory Update Queue: DefaultSessionIdManager workerName=node0

2021-11-25 17:36:16.709:INFO:oejs.session:ManagedServiceFactory Update Queue: No SessionScavenger set, using defaults

2021-11-25 17:36:16.710:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 600000ms

2021-11-25 17:36:16.735:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 600000ms

2021-11-25 17:36:16.736:WARN:oejsh.ContextHandler:ManagedServiceFactory Update Queue: Empty contextPath

2021-11-25 17:36:16.739:INFO:oejs.session:ManagedServiceFactory Update Queue: DefaultSessionIdManager workerName=node0

2021-11-25 17:36:16.739:INFO:oejs.session:ManagedServiceFactory Update Queue: No SessionScavenger set, using defaults

2021-11-25 17:36:16.740:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 660000ms

2021-11-25 17:36:16.752:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 726000ms

2021-11-25 17:36:16.761:WARN:oejsh.ContextHandler:ManagedServiceFactory Update Queue: Empty contextPath

2021-11-25 17:36:16.776:INFO:oejs.session:ManagedServiceFactory Update Queue: DefaultSessionIdManager workerName=node0

2021-11-25 17:36:16.776:INFO:oejs.session:ManagedServiceFactory Update Queue: No SessionScavenger set, using defaults

2021-11-25 17:36:16.776:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 660000ms

2021-11-25 17:36:16.792:INFO:oejs.session:ManagedServiceFactory Update Queue: node0 Scavenging every 726000ms


Thanks in advance for the quick response


Thanks,

---------------------
Kuldeep Singh Budania



On Fri, Nov 12, 2021 at 9:48 AM Jan Bartel <janb@xxxxxxxxxxx> wrote:
Hi,

That branch isn't a branch in the jetty project, so the question might be better addressed to the eclipse equinox group.

However, I can tell you that the current release of jetty-9.4 is at version 9.4.44. This is the list of changes from 9.4.43:

jetty-9.4.44.v20210927 - 27 September 2021
 + 3514 Use interpolation of versions from pom in mod files
 + 6369 Increment default jetty.http2.rateControl.maxEventsPerSecond
 + 6372 Review socket options configuration
 + 6487 Expose ServletHolder getter in ServletHandler$ChainEnd for auditing
   libraries to use
 + 6491 onDataAvailable() not called when HttpParser is closed prematurely
 + 6520 Error page has HTML error when writePoweredBy is enabled.
 + 6545 image/webp MIME type support
 + 6553 Review usage of Authentication.UNAUTHENTICATED in SecurityHandler
 + 6554 Allow creation of DefaultIdentityService without realmName.
 + 6558 Allow to configure return type in JSON array parsing
 + 6562 HttpOutput.write(ByteBuffer buffer)
 + 6603 HTTP/2 max local stream count exceeded
 + 6617 Add basic auth support for OpenId token endpoint (client_secret_basic)
 + 6618 ID token `azp` claim should not be required if `aud` is single value
   array
 + 6652 Improve ReservedThreadExecutor dump
 + 6671 Update to apache jsp 8.5.70
 + 6772 Update to asm 9.2
 + 6853 Remove pack200 plugins
 + 6860 Correct IPv6 format
 + 6869 Correct Content-Type within HTML error pages
 + 6870 Encode control characters in URIUtil.encodePath
 + 6883 Welcome file redirects do not honor the relativeRedirectAllowed option

regards
Jan

On Fri, 12 Nov 2021 at 15:11, Kuldeep Singh Budania <kuldeep.singh08@xxxxxxxxx> wrote:
  Hi,

I am looking for jetty version 9.4.43 in eclipse equinox release and planning to move to the "R4_19_maintenance branch" , 
I Just wanted to know if there are any open issues on this branch.

Thanks in advance for quick response.

Thanks,
---------------------
Kuldeep Singh Budania

_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users


--
Jan Bartel <janb@xxxxxxxxxxx>
www.webtide.com
Expert assistance from the creators of Jetty and CometD

_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users


--
Jan Bartel <janb@xxxxxxxxxxx>
www.webtide.com
Expert assistance from the creators of Jetty and CometD


Back to the top