[JBoss JIRA] (ISPN-12330) Fix licenses for Infinispan Server
by Pedro Ruivo (Jira)
Pedro Ruivo created ISPN-12330:
----------------------------------
Summary: Fix licenses for Infinispan Server
Key: ISPN-12330
URL: https://issues.redhat.com/browse/ISPN-12330
Project: Infinispan
Issue Type: Bug
Components: Server
Reporter: Pedro Ruivo
Assignee: Pedro Ruivo
Fix For: 11.0.4.Final, 12.0.0.Dev04
There are some requirements missing from our current licenses for the Infinispan server
* We need a local copy of the license
* Include the console licenses
offtopic: double-check EAP modules licenses
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years
[JBoss JIRA] (ISPN-12329) [console] create licenses.xml with console dependencies
by Pedro Ruivo (Jira)
Pedro Ruivo created ISPN-12329:
----------------------------------
Summary: [console] create licenses.xml with console dependencies
Key: ISPN-12329
URL: https://issues.redhat.com/browse/ISPN-12329
Project: Infinispan
Issue Type: Bug
Components: Console
Reporter: Pedro Ruivo
Assignee: Pedro Ruivo
Fix For: 11.0.4.Final
We need to merge the console's dependencies with server's dependencies and create an HTML with both.
It would be easier to create the license.xml in the console build and attach it to the jar. At infinispan repo, we can merge both XML and generate the required files.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years
[JBoss JIRA] (ISPN-10292) It should be possible to add protobuf files directly to the server installation
by Tristan Tarrant (Jira)
[ https://issues.redhat.com/browse/ISPN-10292?page=com.atlassian.jira.plugi... ]
Tristan Tarrant reopened ISPN-10292:
------------------------------------
Assignee: Gustavo Fernandes
> It should be possible to add protobuf files directly to the server installation
> -------------------------------------------------------------------------------
>
> Key: ISPN-10292
> URL: https://issues.redhat.com/browse/ISPN-10292
> Project: Infinispan
> Issue Type: Feature Request
> Components: Server
> Reporter: Wolf-Dieter Fink
> Assignee: Gustavo Fernandes
> Priority: Major
> Labels: protobuf, query
>
> Definition files (protobuf) for queries and indexing need to be added with client requests during runtime.
> It will be stored in an internal cache and there is a persistence with a filestore to ensure it will survive restarts.
> But this is not always ensured as there might be catastropic failures or unclean shutdown which can cause inconsistence or complete loss.
> The behaviour in such cases is not deterministic and heavy to track or solve.
> For this reason it should be possible to add the protobuf definitions directly to the server installation which is picked up during startup.
> It might be a local cache as the expectation is that all nodes will have the same, but a repl cache might be possible as well.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years
[JBoss JIRA] (ISPN-12309) Creating cache with invalid configuration leaves inconsistent state
by Gustavo Fernandes (Jira)
[ https://issues.redhat.com/browse/ISPN-12309?page=com.atlassian.jira.plugi... ]
Gustavo Fernandes updated ISPN-12309:
-------------------------------------
Description:
When a cache is created using the EmbeddedCacheManagerAdmin with a configuration that prevents the cache from starting, it will throw an error but will persist the cache nonetheless.
Further operations involving cache manager can throw exceptions, for example, {{Health.getHealth()}} since it tries to access invalid stored configurations
was:
When a cache is created using the EmbeddedCacheManagerAdmin with an invalid configuration, it will throw an error but will persist the cache nonetheless.
Further operations involving cache manager can throw exceptions, for example, {{Health.getHealth()}} since it tries to access invalid stored configurations
> Creating cache with invalid configuration leaves inconsistent state
> -------------------------------------------------------------------
>
> Key: ISPN-12309
> URL: https://issues.redhat.com/browse/ISPN-12309
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Reporter: Katia Aresti
> Assignee: Gustavo Fernandes
> Priority: Major
>
> When a cache is created using the EmbeddedCacheManagerAdmin with a configuration that prevents the cache from starting, it will throw an error but will persist the cache nonetheless.
> Further operations involving cache manager can throw exceptions, for example, {{Health.getHealth()}} since it tries to access invalid stored configurations
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years
[JBoss JIRA] (ISPN-12288) Upgrade to Hibernate Search 6.0.0.Beta10
by Gustavo Fernandes (Jira)
[ https://issues.redhat.com/browse/ISPN-12288?page=com.atlassian.jira.plugi... ]
Gustavo Fernandes updated ISPN-12288:
-------------------------------------
Git Pull Request: https://github.com/infinispan/infinispan/pull/8677, https://github.com/infinispan/infinispan/pull/8692 (was: https://github.com/infinispan/infinispan/pull/8677)
> Upgrade to Hibernate Search 6.0.0.Beta10
> ----------------------------------------
>
> Key: ISPN-12288
> URL: https://issues.redhat.com/browse/ISPN-12288
> Project: Infinispan
> Issue Type: Task
> Components: Embedded Querying, Remote Querying
> Affects Versions: 12.0.0.Dev02
> Reporter: Yoann Rodière
> Assignee: Gustavo Fernandes
> Priority: Major
> Fix For: 12.0.0.Dev04
>
> Attachments: javabean-property-access.diff
>
>
> https://in.relation.to/2020/09/07/hibernate-search-6-0-0-Beta10/
> Relevant changes:
> * {{maxDepth}} was renamed to {{includeDepth}}; this may affect the mapping code for Remote Query in particular. PR: https://github.com/hibernate/hibernate-search/pull/2337
> * If Infinispan calls {{SearchResult#totalHitCount()}} anywhere, then it should now call {{total().hitCount()}} instead. {{totalHitCount}} is deprecated.
> * Some SPI interfaces related to the type model have changed and Infinispan implementation may not compile anymore. I recommend changing the Infinispan implementation the same way we changed another mapper bundled with Search (see the attached diff). An added benefit: with these changes, embedded mode will support annotations on both methods and fields (which was supported in 5 but was dropped during the migration to Search 6).
> * {{IndexFieldDescriptor}} now exposes a {{multiValuedInRoot()}} method, which I was told would be very useful to Infinispan, which currently has to go through some hoops to compute that value based on the multi-valued-ness of a field **and its parents**.
> * Timeouts are now forwarded to the entity loader. If Infinispan defines an entity loader when loading hits as entities instead of projections (and it probably should), some changes may be necessary in this area. PR: https://github.com/hibernate/hibernate-search/pull/2333
> Optionally, the new ["total hit count threshold"|https://in.relation.to/2020/09/07/hibernate-search-6-0-0-Beta10/#total-hit-count-threshold] could be used to improve performance in Infinispan, but that should probably be addressed a follow-up ticket.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years
[JBoss JIRA] (ISPN-12309) Creating cache with invalid configuration leaves inconsistent state
by Gustavo Fernandes (Jira)
[ https://issues.redhat.com/browse/ISPN-12309?page=com.atlassian.jira.plugi... ]
Gustavo Fernandes updated ISPN-12309:
-------------------------------------
Description:
When a cache is created using the EmbeddedCacheManagerAdmin with an invalid configuration, it will throw an error but will persist the cache nonetheless.
Further operations involving cache manager can throw exceptions, for example, {{Health.getHealth()}} since it tries to access invalid stored configurations
was:
When a cache is created using the EmbeddedCacheManagerAdmin with an invalid configuration, it will throw an error but will persist the cache nonetheless.
Further operations involving cache manager can throw exceptions, for example, Health.getHealth()
> Creating cache with invalid configuration leaves inconsistent state
> -------------------------------------------------------------------
>
> Key: ISPN-12309
> URL: https://issues.redhat.com/browse/ISPN-12309
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Reporter: Katia Aresti
> Assignee: Gustavo Fernandes
> Priority: Major
>
> When a cache is created using the EmbeddedCacheManagerAdmin with an invalid configuration, it will throw an error but will persist the cache nonetheless.
> Further operations involving cache manager can throw exceptions, for example, {{Health.getHealth()}} since it tries to access invalid stored configurations
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years