abelanger5

Results 55 issues of abelanger5

# Description We were previously using a set of prisma queries for assigning step runs to workers and tickers. This moves to more robust logic around selecting workers and skipping...

Full error: `[DEP0128] DeprecationWarning: Invalid 'main' field in '/usr/app/node_modules/@hatchet-dev/typescript-sdk/package.json' of 'dist/index.js'. Please either fix that or report it to the module author`

It's necessary to support steps which can: 1. Execute the same step with different inputs in parallel. 2. Execute different steps with the same input in parallel. From a client...

Right now, python `_grpc.py` files need to be fixed manually, for example: ```py from .workflows_pb2 import workflows__pb2 ``` Needs to be replaced with: ```py from . import workflows_pb2 as workflows__pb2...

When deleting an API token or performing other destructive actions, we should have users type out `delete` or `` in order to confirm deletion.

Support a postgres-backed task queue to remove the RabbitMQ requirement.

We marshal to/from a bunch of types during the lifecycle of a step run. We should cache the raw JSON bytes and converted objects, wherever possible, and consider an alternative...

Utilize the [CloudEvents Go SDK](https://github.com/cloudevents/sdk-go) instead of relying on `tasktypes` like we're currently doing

Need a better way to manage the assignment of jobs and step runs to tickers and dispatchers, respectively. [Here's an example](https://github.com/hatchet-dev/hatchet/blob/62445dc37f4fb45e0ba90a1e3676ff871651501b/internal/services/jobscontroller/controller.go#L204) of how a ticker is currently assigned to a...