I have the following error:
level=warn ts=2024-12-10T17:54:27.846382825Z caller=client.go:419 component=client host=loki:3100 msg="error sending batch, will retry" status=429 tenant= error="server returned HTTP status 429 Too Many Requests (429): Ingestion rate limit exceeded for user fake (limit: 4294967296 bytes/sec) while attempting to ingest '141644' lines totaling '28878236' bytes, reduce log volume or contact your Loki administrator to see if the limit can be increased"
This is my Loki code
auth_enabled: false
server:
http_listen_port: 3100
log_level: warn
grpc_listen_port: 9095
common:
path_prefix: /loki
storage:
s3:
bucketnames: ${S3_BUCKET_NAME}
region: ${AWS_REGION}
access_key_id: ${AWS_ACCESS_KEY_ID}
secret_access_key: ${AWS_SECRET_ACCESS_KEY}
replication_factor: 1
ring:
kvstore:
store: inmemory
schema_config:
configs:
- from: 2024-01-01
store: tsdb
object_store: s3
schema: v13
index:
prefix: index_
period: 24h
storage_config:
aws:
s3: s3://${S3_BUCKET_NAME}
s3forcepathstyle: true
boltdb_shipper:
active_index_directory: /loki/index
cache_location: /loki/boltdb-cache
limits_config:
allow_structured_metadata: false
reject_old_samples: true
reject_old_samples_max_age: 168h
max_cache_freshness_per_query: 10m
max_query_parallelism: 32
max_entries_limit_per_query: 1000001
ingestion_rate_mb: 3072
ingester:
lifecycler:
ring:
kvstore:
store: inmemory
replication_factor: 1
chunk_idle_period: 1m
chunk_target_size: 1572864
chunk_retain_period: 1m
compactor:
working_directory: /loki/compactor
query_range:
align_queries_with_step: true
max_retries: 5
parallelise_shardable_queries: true
table_manager:
retention_deletes_enabled: true
retention_period: 168h
query_scheduler:
max_outstanding_requests_per_tenant: 2000