James Roper

Results 100 issues of James Roper

In Cloudstate, we offer an inmemory mode. This is useful for trying out Cloudstate, it means you can deploy Cloudstate to Kubernetes and then immediately deploy a sample application with...

Akka persistence query implementations typically poll the underlying datastore for updates. If using sharded tags, and many projections, you get a product of your shards and projections, and very soon...

You may not be using sharded event streams, but you may have many entity types, or many projections on the same entity, and putting the load of all those on...

It would be great if Akka persistence r2dbc offered an import/export API. If you have data that you want to get in/out of Akka persistence r2dbc, this currently requires understanding...

When we generate typescript interfaces, we generate interfaces like this: ```typescript export declare namespace domain { type AssetLocation = proto.example.locations.IAssetLocation & protobuf.Message; type CheckedIn = proto.example.assets.ICheckedIn & protobuf.Message; } export...

bug
kalix-runtime

We depend on pbjs for some things. protobufjs 7.0.0 has been released, and doesn't contain this, a new package, protobufjs-cli, contains it. I think our dependency on protobufjs is a...

bug
kalix-runtime

This is clearly a bug in `pbjs`, but in my project, when I do this: ```protobuf import "google/protobuf/empty.proto"; import "akkaserverless/annotations.proto"; ``` It works, but if I change the order: ```protobuf...

bug
kalix-runtime
javascript-sdk

Error messages from the proxy about proto files are missing the context from the proto files: ``` Error reported from Akka Serverless system: AS-00711 Method [example.posts.PostsService.PostOnFriendsTimeline] configured to validate a...

javascript-sdk

We always add CloudEvent information to outgoing events, including generating an id, setting the type, and setting the source. A user should be able to rely on that being set...

kalix-runtime

Users need a mechanism to be able to apply generic filter/middleware logic to requests. Here are some examples of what they might want to do in that: * Validate incoming...

kalix-runtime