quick-megabyte-61846
05/18/2023, 9:46 AMquick-megabyte-61846
05/18/2023, 9:47 AMkubectl create job --from=cronjob/datahub-datahub-restore-indices-job-template datahub-restore-indices-adhoc
But still Im getting this kind of the errors
│ ... 18 common frames omitted ││ 2023-05-18 08:23:34,125 [I/O dispatcher 1] ERROR c.l.m.s.e.update.BulkListener:56 - Error feeding bulk request. No retries left. Request: Failed to perform bulk request: index [graph_service_v1], optype: [UPDATE], type [_doc], id [9lX/iGM409cNTAlP0GMIyg==];Failed to p │
@astonishing-answer-96712quick-megabyte-61846
05/18/2023, 1:44 PM0.2.164
• Enter to kafka pod and check retention
/opt/bitnami/kafka/bin/kafka-configs.sh --entity-type topics --entity-name DataHubUpgradeHistory_v1 --bootstrap-server localhost:9092 --describe --all | grep "<http://retention.ms|retention.ms>"
• Alter it with
/opt/bitnami/kafka/bin/kafka-configs.sh --entity-type topics --entity-name DataHubUpgradeHistory_v1 --bootstrap-server localhost:9092 --alter --add-config <http://retention.ms|retention.ms>=-1
• Sanity check
/opt/bitnami/kafka/bin/kafka-configs.sh --entity-type topics --entity-name DataHubUpgradeHistory_v1 --bootstrap-server localhost:9092 --describe --all | grep "<http://retention.ms|retention.ms>"
quick-megabyte-61846
05/18/2023, 1:50 PM