Skip to content

Commit

Permalink
[Staging] Change Tekton Vector collection to in-memory and ack enabled (
Browse files Browse the repository at this point in the history
#5436)

This is to resolve missing logs issue.
  • Loading branch information
khrm authored Feb 3, 2025
1 parent 6b90acd commit 8b8d27c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ role: Agent
resources:
requests:
cpu: 512m
memory: 1024Mi
memory: 3072Mi
limits:
cpu: 2000m
memory: 2048Mi
memory: 3072Mi
customConfig:
data_dir: /vector-data-dir
api:
Expand Down Expand Up @@ -58,9 +58,14 @@ customConfig:
aws_s3:
type: "aws_s3"
bucket: ${BUCKET}
acknowledgements:
enabled: true
buffer:
type: "disk"
max_size: 1073741824
type: "memory"
max_events: 10000
when_full: "block"
batch:
max_events: 100000
inputs: ["remap_app_logs"]
compression: "none"
endpoint: ${ENDPOINT}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ role: Agent
resources:
requests:
cpu: 512m
memory: 1024Mi
memory: 3072Mi
limits:
cpu: 2000m
memory: 2048Mi
memory: 3072Mi
customConfig:
data_dir: /vector-data-dir
api:
Expand Down Expand Up @@ -58,9 +58,14 @@ customConfig:
aws_s3:
type: "aws_s3"
bucket: ${BUCKET}
acknowledgements:
enabled: true
buffer:
type: "disk"
max_size: 1073741824
type: "memory"
max_events: 10000
when_full: "block"
batch:
max_events: 100000
inputs: ["remap_app_logs"]
compression: "none"
endpoint: ${ENDPOINT}
Expand Down

0 comments on commit 8b8d27c

Please sign in to comment.