Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Staging] Change Tekton Vector collection to in-memory and ack enabled #5436

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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