Questions tagged [microstream]

MicroStream Java serialization. Use together with language tag [java].

MicroStream claims to be the very first bulletproof serialization for Java which fixes the biggest security issue of Java existing for 25 years.

32 questions
0
votes
1 answer

Java MicroStream Serialization, Type not persistable: "class java.lang.Throwable"

When serializing an object containing a field of type Throwable I get one.microstream.persistence.exceptions.PersistenceExceptionTypeNotPersistable: Type not persistable: "class java.lang.Throwable". Using the Serializer or TypedSerializer like…
adorjann
  • 1
  • 2
0
votes
0 answers

Is it possible to use MicroStream + S3 from AWS Lambda?

MicroStream documentation says that MicroStream is an embedded database so multiple processes may not access the same database files…
zakgof
  • 213
  • 2
  • 8
0
votes
1 answer

Microstream data is not persisted when application restart using micronaut 3.9.4

I have a below project structure API microstream: rest: enabled: true storage: order: root-class: 'fete.bird.entity.RootContainer' storage-directory: 'api/build/order-storage' Infrastructure @Singleton public class…
San Jaisy
  • 15,327
  • 34
  • 171
  • 290
0
votes
1 answer

How to connect redis with SSL in microstreams on springboot using one.microstream.afs.blobstore.types.BlobStoreFileSystem?

We are using spring-boot-starter-data-redis-reactive. our redis server has ssl protective with ssl certrificate. how to create a RedisClient bean with these configuration to use in microstreams? We have created below Configuration and bean not sure…
0
votes
1 answer

Microstream one.microstream.storage.exceptions.StorageException: Problem in channel #0

I have following code: return vertx.fileSystem().exists(storeFile).onSuccess(isExists -> { try { if (isExists) { this.storageManager =…
Qeychon
  • 477
  • 1
  • 5
  • 15
0
votes
2 answers

Microstream with micronaut application is not working

Created a brand new micronaut application with below dependencies dependencies { annotationProcessor("io.micronaut:micronaut-http-validation") annotationProcessor("io.micronaut.microstream:micronaut-microstream-annotations") …
San Jaisy
  • 15,327
  • 34
  • 171
  • 290
0
votes
1 answer

Microstream issue Could not obtain access to "jdk.internal.misc.Unsafe"

I'm doing my first steps using Microstream in a Micronaut application (JDK 17). I have implemented the following repository @Singleton @RequiredArgsConstructor public class DefaultWritableProductRepository implements WritableProductRepository { …
saw303
  • 8,051
  • 7
  • 50
  • 90
0
votes
1 answer

MicroStream + AWS S3 Blob example

I'm trying to develop a simple application using MicroStream and AWS S3 as a Blob storage Using the examples in the official page and others, I can't store and query some elements S3 Connection is working. My Code S3Client cli = S3Client.builder() …
0
votes
1 answer

Storage exception in microstream

I'm using microstream and I try to save my object in storage : EmbeddedStorageFoundation esf = EmbeddedStorageFoundation.New().setConfiguration(storageConfiguration); storage =…
Alger
  • 33
  • 7
0
votes
1 answer

Performance issue while using microstream

I just started learning microstream. After going through the examples published to microstream github repository, I wanted to test its performance with an application that deals with more data. Application source code is available here. Instructions…
Sudhir
  • 1,339
  • 2
  • 15
  • 36
0
votes
2 answers

extending datamodel in Microstream

I would like to extend an existing datamodel in Microstream with a new data object. E.g. I have Customers, with data records in Microstream, and I would like to add Vendors, with their own datastructure and data. As the database is not empty, I…
HRoose
  • 1
  • 2
0
votes
1 answer

Are there any implementation level documentation or articles available for microstream?

I am considering Microstream for a project but before adopting it would like to better understand how the framework actually work and in particular what the overhead (indexing, any wrapper objects etc) is per persisted object and per root. I have…
Tristpost
  • 19
  • 4
0
votes
1 answer

Rapidclipse & Microstream: Need Example for lazy loading into table

does anybody have an example for lazy loading a VAADIN(7) table from a MICROSTREAM backed up table using lazy loading feature of MICROSTREAM. I'm new to this stuff and a bit lost. Thanks Gerry
user1226230
  • 381
  • 1
  • 3
  • 11
0
votes
2 answers

Java Microstream - Synthetic classes - PersistenceExceptionTypeNotPersistable

Using Microstream getting the below exception. Being caused by a class with a reference to a static inner class. How do I resolve this issue? The exception states the following, but the documentation doesn't explain how to implement a…
Orlok
  • 107
  • 6
0
votes
1 answer

Java Microstream - ImmutablePair causing PersistenceExceptionTypeNotPersistable

Apache ImmutablePair, (org.apache.commons.lang3.tuple.ImmutablePair) causing PersistenceExceptionTypeNotPersistable when storing Java Object graph. How should I solve this? If with a typeHandler, is there an example? Caused by:…
Orlok
  • 107
  • 6