Closed sangli00 closed 6 years ago
The relevant error message is:
Caused by: org.apache.kafka.common.errors.InvalidTopicException: Topic name " topic_iprobeblacklist" is illegal, it contains a character other than ASCII alphanumerics, '.', '' and '-' 20165
The problem is that you defined the topic name with a leading whitespace character:
" topic_iprobe_blacklist"
It should have been:
"topic_iprobe_blacklist"
I know why in this error. create topic
' topic_iprobe_blacklist'
is illegal. Why restart check this? before I create this table is error.How to fix this problem?