You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was testing around with the accountsdb-plugin-kafka , i installed all the requirements and run the solana-test-validator in local env
Im running a docker container for kafka (including zookeeper,kafdroop to see topics) , from the logs i can see that solana-test-validator is processing metrics :
00:00:02 | Processed Slot: 2684 | Confirmed Slot: 2684 | Finalized Slot: 2650 | Full Snapshot Slot: 2601
From the logs i see that everything started properly
My main doubt is about the config.json , which may not capture correct events , im using the example that you provided in the readme
GNU nano 6.2 geyser_plugin_config.json {
"libpath": "/home/biedr/solana-accountsdb-plugin-kafka/target/release/libsolana_accountsdb_plugin_kafka.so",
"kafka": {
"bootstrap.servers": "localhost:9092",
"request.required.acks": "1",
"message.timeout.ms": "30000",
"compression.type": "lz4",
"partitioner": "murmur2_random",
"statistics.interval.ms": "1000"
},
"shutdown_timeout_ms": 30000,
"filters": [{
"update_account_topic": "solana.testnet.account_updates",
"slot_status_topic": "solana.testnet.slot_status",
"transaction_topic": "solana.testnet.transactions",
"program_ignores": [
"Sysvar1111111111111111111111111111111111111",
"Vote111111111111111111111111111111111111111"
],
"publish_all_accounts": false,
"wrap_messages": false
}]
}
this is the example with the corrected path
I dont know where to start to find out whats the problem
Hope you guys can help me through this
The text was updated successfully, but these errors were encountered:
Hello there
I was testing around with the accountsdb-plugin-kafka , i installed all the requirements and run the solana-test-validator in local env
Im running a docker container for kafka (including zookeeper,kafdroop to see topics) , from the logs i can see that solana-test-validator is processing metrics :
00:00:02 | Processed Slot: 2684 | Confirmed Slot: 2684 | Finalized Slot: 2650 | Full Snapshot Slot: 2601
From the logs i see that everything started properly
My main doubt is about the config.json , which may not capture correct events , im using the example that you provided in the readme
GNU nano 6.2 geyser_plugin_config.json {
"libpath": "/home/biedr/solana-accountsdb-plugin-kafka/target/release/libsolana_accountsdb_plugin_kafka.so",
"kafka": {
"bootstrap.servers": "localhost:9092",
"request.required.acks": "1",
"message.timeout.ms": "30000",
"compression.type": "lz4",
"partitioner": "murmur2_random",
"statistics.interval.ms": "1000"
},
"shutdown_timeout_ms": 30000,
"filters": [{
"update_account_topic": "solana.testnet.account_updates",
"slot_status_topic": "solana.testnet.slot_status",
"transaction_topic": "solana.testnet.transactions",
"program_ignores": [
"Sysvar1111111111111111111111111111111111111",
"Vote111111111111111111111111111111111111111"
],
"publish_all_accounts": false,
"wrap_messages": false
}]
}
this is the example with the corrected path
I dont know where to start to find out whats the problem
Hope you guys can help me through this
The text was updated successfully, but these errors were encountered: