[JBoss JIRA] (ISPN-8998) Automatically release from CI
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-8998?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant reassigned ISPN-8998:
-------------------------------------
Assignee: Tristan Tarrant
> Automatically release from CI
> -----------------------------
>
> Key: ISPN-8998
> URL: https://issues.jboss.org/browse/ISPN-8998
> Project: Infinispan
> Issue Type: Bug
> Components: Build, CI
> Reporter: Tristan Tarrant
> Assignee: Tristan Tarrant
>
> The releases should happen via a Jenkins job:
> * versioning, build and stage to nexus
> * reversion and build of simple tutorials against stage repository to ensure that all artifacts are correctly published
> * release and drop of nexus staging repo
> * push tag and bump version to next snapshot on master branch
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months
[JBoss JIRA] (ISPN-9033) Web/CLI hangs if cache use cache store and has a lot of entries
by Sergey Chernolyas (JIRA)
[ https://issues.jboss.org/browse/ISPN-9033?page=com.atlassian.jira.plugin.... ]
Sergey Chernolyas commented on ISPN-9033:
-----------------------------------------
Hi [~NadirX]
I understood it. But ... Can we optimize it?
For example, if cache has persistence without passivation ... we can ask cache store about count of keys. It is fast.
I guess that we can divide the issue to several subtasks (one subtask is for each cache)
I have two caches with size more that 5 000 000 keys. All caches have cache store based on RocksDB. And ... counting take one tread and count during 10-15 minutes. I can't open Web interface for looking statistic. I can use CLI .... but it is too long to.
> Web/CLI hangs if cache use cache store and has a lot of entries
> ---------------------------------------------------------------
>
> Key: ISPN-9033
> URL: https://issues.jboss.org/browse/ISPN-9033
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.2.1.Final
> Reporter: Sergey Chernolyas
>
> My cache configuration has RocksDB's cache. Cache has a more then 1 000 000 entries.
> And it do usage of Web interfce and CLI impossible.
> As I have investigated, problem can be in class org.infinispan.commands.read.SizeCommand.
> {code:java}
> public Integer perform(InvocationContext ctx) throws Throwable {
> long size = cache.keySet().stream().count();
> if (size > Integer.MAX_VALUE) {
> return Integer.MAX_VALUE;
> } else {
> return (int) size;
> }
> }
> {code}
> I think, the code must ask CacheStore for sizing.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months
[JBoss JIRA] (ISPN-9033) Web/CLI hangs if cache use cache store and has a lot of entries
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9033?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant commented on ISPN-9033:
---------------------------------------
cache.keySet() does involve persistence, if enabled, but it also needs to take into account scenarios with passivation, expired entries
> Web/CLI hangs if cache use cache store and has a lot of entries
> ---------------------------------------------------------------
>
> Key: ISPN-9033
> URL: https://issues.jboss.org/browse/ISPN-9033
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.2.1.Final
> Reporter: Sergey Chernolyas
>
> My cache configuration has RocksDB's cache. Cache has a more then 1 000 000 entries.
> And it do usage of Web interfce and CLI impossible.
> As I have investigated, problem can be in class org.infinispan.commands.read.SizeCommand.
> {code:java}
> public Integer perform(InvocationContext ctx) throws Throwable {
> long size = cache.keySet().stream().count();
> if (size > Integer.MAX_VALUE) {
> return Integer.MAX_VALUE;
> } else {
> return (int) size;
> }
> }
> {code}
> I think, the code must ask CacheStore for sizing.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months
[JBoss JIRA] (ISPN-9035) Rest endpoint not loaded in domain mode due to missing socket-bindings
by Ryan Emerson (JIRA)
[ https://issues.jboss.org/browse/ISPN-9035?page=com.atlassian.jira.plugin.... ]
Ryan Emerson updated ISPN-9035:
-------------------------------
Status: Open (was: New)
> Rest endpoint not loaded in domain mode due to missing socket-bindings
> ----------------------------------------------------------------------
>
> Key: ISPN-9035
> URL: https://issues.jboss.org/browse/ISPN-9035
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Affects Versions: 9.2.1.Final
> Reporter: Ryan Emerson
> Assignee: Ryan Emerson
> Fix For: 9.2.2.Final
>
>
> Rest endpoint cannot be loaded on startup due to the mangement-http and mangement-https socket bindings not being configured in domain.xml resulting in the following error:
> {code}
> [Server:server-two] 12:03:08,084 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
> [Server:server-two] ("subsystem" => "datagrid-infinispan-endpoint"),
> [Server:server-two] ("rest-connector" => "rest-connector")
> [Server:server-two] ]) - failure description: {
> [Server:server-two] "WFLYCTL0412: Required services that are not installed:" => [
> [Server:server-two] "org.wildfly.network.socket-binding.management-https",
> [Server:server-two] "org.wildfly.network.socket-binding.management-http"
> [Server:server-two] ],
> [Server:server-two] "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.datagrid-infinispan-endpoint.rest.rest-connector is missing [org.wildfly.network.socket-binding.management-http, org.wildfly.network.socket-binding.management-https]"]
> [Server:server-two] }
> [Server:server-two] 12:03:08,126 INFO [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
> [Server:server-two] WFLYCTL0184: New missing/unsatisfied dependencies:
> [Server:server-two] service org.wildfly.network.socket-binding.management-http (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
> [Server:server-two] service org.wildfly.network.socket-binding.management-https (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
> [Server:server-two]
> [Server:server-two] 12:03:08,166 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
> [Server:server-two] 12:03:08,169 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: Infinispan Server 9.2.2-SNAPSHOT (WildFly Core 3.0.8.Final) started (with errors) in 10503ms - Started 206 of 257 services (1 services failed or missing dependencies, 126 services are lazy, passive or on-demand)
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months
[JBoss JIRA] (ISPN-9035) Rest endpoint not loaded in domain mode due to missing socket-bindings
by Ryan Emerson (JIRA)
[ https://issues.jboss.org/browse/ISPN-9035?page=com.atlassian.jira.plugin.... ]
Ryan Emerson updated ISPN-9035:
-------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/5893
> Rest endpoint not loaded in domain mode due to missing socket-bindings
> ----------------------------------------------------------------------
>
> Key: ISPN-9035
> URL: https://issues.jboss.org/browse/ISPN-9035
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Affects Versions: 9.2.1.Final
> Reporter: Ryan Emerson
> Assignee: Ryan Emerson
> Fix For: 9.2.2.Final
>
>
> Rest endpoint cannot be loaded on startup due to the mangement-http and mangement-https socket bindings not being configured in domain.xml resulting in the following error:
> {code}
> [Server:server-two] 12:03:08,084 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
> [Server:server-two] ("subsystem" => "datagrid-infinispan-endpoint"),
> [Server:server-two] ("rest-connector" => "rest-connector")
> [Server:server-two] ]) - failure description: {
> [Server:server-two] "WFLYCTL0412: Required services that are not installed:" => [
> [Server:server-two] "org.wildfly.network.socket-binding.management-https",
> [Server:server-two] "org.wildfly.network.socket-binding.management-http"
> [Server:server-two] ],
> [Server:server-two] "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.datagrid-infinispan-endpoint.rest.rest-connector is missing [org.wildfly.network.socket-binding.management-http, org.wildfly.network.socket-binding.management-https]"]
> [Server:server-two] }
> [Server:server-two] 12:03:08,126 INFO [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
> [Server:server-two] WFLYCTL0184: New missing/unsatisfied dependencies:
> [Server:server-two] service org.wildfly.network.socket-binding.management-http (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
> [Server:server-two] service org.wildfly.network.socket-binding.management-https (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
> [Server:server-two]
> [Server:server-two] 12:03:08,166 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
> [Server:server-two] 12:03:08,169 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: Infinispan Server 9.2.2-SNAPSHOT (WildFly Core 3.0.8.Final) started (with errors) in 10503ms - Started 206 of 257 services (1 services failed or missing dependencies, 126 services are lazy, passive or on-demand)
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months
[JBoss JIRA] (ISPN-9035) Rest endpoint not loaded in domain mode due to missing socket-bindings
by Ryan Emerson (JIRA)
Ryan Emerson created ISPN-9035:
----------------------------------
Summary: Rest endpoint not loaded in domain mode due to missing socket-bindings
Key: ISPN-9035
URL: https://issues.jboss.org/browse/ISPN-9035
Project: Infinispan
Issue Type: Bug
Components: Server
Affects Versions: 9.2.1.Final
Reporter: Ryan Emerson
Assignee: Ryan Emerson
Fix For: 9.2.2.Final
Rest endpoint cannot be loaded on startup due to the mangement-http and mangement-https socket bindings not being configured in domain.xml resulting in the following error:
{code}
[Server:server-two] 12:03:08,084 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
[Server:server-two] ("subsystem" => "datagrid-infinispan-endpoint"),
[Server:server-two] ("rest-connector" => "rest-connector")
[Server:server-two] ]) - failure description: {
[Server:server-two] "WFLYCTL0412: Required services that are not installed:" => [
[Server:server-two] "org.wildfly.network.socket-binding.management-https",
[Server:server-two] "org.wildfly.network.socket-binding.management-http"
[Server:server-two] ],
[Server:server-two] "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.datagrid-infinispan-endpoint.rest.rest-connector is missing [org.wildfly.network.socket-binding.management-http, org.wildfly.network.socket-binding.management-https]"]
[Server:server-two] }
[Server:server-two] 12:03:08,126 INFO [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
[Server:server-two] WFLYCTL0184: New missing/unsatisfied dependencies:
[Server:server-two] service org.wildfly.network.socket-binding.management-http (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
[Server:server-two] service org.wildfly.network.socket-binding.management-https (missing) dependents: [service jboss.datagrid-infinispan-endpoint.rest.rest-connector]
[Server:server-two]
[Server:server-two] 12:03:08,166 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
[Server:server-two] 12:03:08,169 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: Infinispan Server 9.2.2-SNAPSHOT (WildFly Core 3.0.8.Final) started (with errors) in 10503ms - Started 206 of 257 services (1 services failed or missing dependencies, 126 services are lazy, passive or on-demand)
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 9 months