[JBoss JIRA] (ISPN-10307) Jackson Databind 2.9.8
by Tristan Tarrant (Jira)
Tristan Tarrant created ISPN-10307:
--------------------------------------
Summary: Jackson Databind 2.9.8
Key: ISPN-10307
URL: https://issues.jboss.org/browse/ISPN-10307
Project: Infinispan
Issue Type: Component Upgrade
Components: Build
Affects Versions: 9.4.14.Final, 10.0.0.Beta3
Reporter: Tristan Tarrant
Assignee: Tristan Tarrant
Fix For: 10.0.0.Beta4, 9.4.15.Final
This fixes multiple CVEs.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 7 months
[JBoss JIRA] (ISPN-10290) JGroupsTransport.invokeCommandStaggered allocates too much
by Will Burns (Jira)
[ https://issues.jboss.org/browse/ISPN-10290?page=com.atlassian.jira.plugin... ]
Will Burns updated ISPN-10290:
------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> JGroupsTransport.invokeCommandStaggered allocates too much
> ----------------------------------------------------------
>
> Key: ISPN-10290
> URL: https://issues.jboss.org/browse/ISPN-10290
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 10.0.0.Beta3, 9.4.14.Final
> Reporter: Dan Berindei
> Assignee: Dan Berindei
> Priority: Minor
> Fix For: 10.0.0.Beta4
>
>
> I assumed the {{logRequest(requestId, command, "staggered " + targets)}} call would be inlined and the JIT would eliminate the allocation when trace logging is disabled, but apparently that doesn't always happen, and a {{StringBuilder}} instance is always created.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 7 months
[JBoss JIRA] (ISPN-10272) RocskDbStore BatchWrite org.rocksdb.RocksDBException: unknown WriteBatch tag
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-10272?page=com.atlassian.jira.plugin... ]
Dan Berindei updated ISPN-10272:
--------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> RocskDbStore BatchWrite org.rocksdb.RocksDBException: unknown WriteBatch tag
> -----------------------------------------------------------------------------
>
> Key: ISPN-10272
> URL: https://issues.jboss.org/browse/ISPN-10272
> Project: Infinispan
> Issue Type: Bug
> Affects Versions: 9.4.14.Final
> Environment: h6. OS
> Ubuntu 16.0.4 4.15.0-1045-azure x86_64
> h6. Java
> Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
> Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
> Reporter: Jestan Nirojan
> Assignee: Will Burns
> Priority: Major
> Fix For: 10.0.0.Beta4, 9.4.15.Final
>
>
> h6. Issue
> RocksDBStore is not closing WriteBatch native handles and under heavy write with multiple databases, following error is continuously throwing and database never recovers (following error is from infinispan 9.2.5-Final but i believe same issue exists in master , see https://github.com/infinispan/infinispan/blob/1bcfe5823e7957060080741f7d0...)
> {code:java}
> Caused by: org.rocksdb.RocksDBException: unknown WriteBatch tag
> at org.rocksdb.RocksDB.write0(Native Method)
> at org.rocksdb.RocksDB.write(RocksDB.java:602)
> at org.infinispan.persistence.rocksdb.RocksDBStore.writeBatch(RocksDBStore.java:393)
> at org.infinispan.persistence.rocksdb.RocksDBStore.writeBatch(RocksDBStore.java:374)
> at org.infinispan.persistence.manager.PersistenceManagerImpl.lambda$writeBatchToAllNonTxStores$12
> {code}
> I was also getting other errors from this list, for example "bad WriteBatch Delete"https://github.com/facebook/rocksdb/blob/cae22c53fbad071be8aa3a8543415383...
> h6. Fix
> {code:java}
> private void writeBatch(WriteBatch batch) throws InterruptedException, RocksDBException {
> semaphore.acquire();
> try {
> if (stopped)
> throw new PersistenceException("RocksDB is stopped");
> db.write(dataWriteOptions(), batch);
> } finally {
> semaphore.release();
> batch.close();
> }
> }
> {code}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 7 months
[JBoss JIRA] (ISPN-10306) RocskDbStore BatchWrite org.rocksdb.RocksDBException: unknown WriteBatch tag
by Will Burns (Jira)
Will Burns created ISPN-10306:
---------------------------------
Summary: RocskDbStore BatchWrite org.rocksdb.RocksDBException: unknown WriteBatch tag
Key: ISPN-10306
URL: https://issues.jboss.org/browse/ISPN-10306
Project: Infinispan
Issue Type: Bug
Affects Versions: 9.4.14.Final
Environment: h6. OS
Ubuntu 16.0.4 4.15.0-1045-azure x86_64
h6. Java
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
Reporter: Jestan Nirojan
Assignee: Will Burns
Fix For: 10.0.0.Beta4, 9.4.15.Final
h6. Issue
RocksDBStore is not closing WriteBatch native handles and under heavy write with multiple databases, following error is continuously throwing and database never recovers (following error is from infinispan 9.2.5-Final but i believe same issue exists in master , see https://github.com/infinispan/infinispan/blob/1bcfe5823e7957060080741f7d0...)
{code:java}
Caused by: org.rocksdb.RocksDBException: unknown WriteBatch tag
at org.rocksdb.RocksDB.write0(Native Method)
at org.rocksdb.RocksDB.write(RocksDB.java:602)
at org.infinispan.persistence.rocksdb.RocksDBStore.writeBatch(RocksDBStore.java:393)
at org.infinispan.persistence.rocksdb.RocksDBStore.writeBatch(RocksDBStore.java:374)
at org.infinispan.persistence.manager.PersistenceManagerImpl.lambda$writeBatchToAllNonTxStores$12
{code}
I was also getting other errors from this list, for example "bad WriteBatch Delete"https://github.com/facebook/rocksdb/blob/cae22c53fbad071be8aa3a8543415383...
h6. Fix
{code:java}
private void writeBatch(WriteBatch batch) throws InterruptedException, RocksDBException {
semaphore.acquire();
try {
if (stopped)
throw new PersistenceException("RocksDB is stopped");
db.write(dataWriteOptions(), batch);
} finally {
semaphore.release();
batch.close();
}
}
{code}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 7 months