Replies: 1 comment 2 replies
-
Hey @nullhack 👋 I'm really struggling to reproduce the error you're seeing. I tried with this Docker container: > docker run --rm -it -v $(pwd):/workspace docker.redpanda.com/redpandadata/connect:4.33.0 run /workspace/test.yaml and I have this input:
stdin: {}
pipeline:
processors:
- cache:
resource: leveled
operator: add
key: '${! json("message.id") }'
value: "storeme"
- mapping: root = if errored() { deleted() }
output:
stdout: {}
cache_resources:
- label: leveled
multilevel: [ hot, cold ]
- label: hot
memory:
default_ttl: 60s
- label: cold
aws_s3:
bucket: test and it seems to at least initialise fine. I can also replace that I can see which code generates that error, but I'm really not sure how to trigger it.
Not sure I follow... It's implemented here. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, thank you for the project, I have a question that might be some simple thing, but I have spend some hours trying to figure out what is the issue unsuccessfuly. I am trying to test multilevel cache, but I keep receiving a message
failed to obtain docs for cache type multilevel
I'm using the docker version from docker.redpanda.com/redpandadata/connect:latest (Version: v4.33.0).
My config.yaml looks like this:
Am I doing anything wrong?
I am trying to find a workaround for the limitation of
add
in S3, would this work? (i.e. do not create new versions of the cache in S3 if it already exists)Thank you!
Beta Was this translation helpful? Give feedback.
All reactions