我的版本。运行Ubuntu21.10,OpenJDK 11,我遵循指南。我的命令
donhuvy@ubuntu:~/Downloads/kafka_2.13-3.1.0/bin$ ./kafka-topics.sh --create --topic test-topic -zookeeper localhost:2181 --replication-factor 1 --partitions 4
Exception in thread "main" joptsimple.UnrecognizedOptionException: z is not a recognize
有人知道如何在卡夫卡中创建一个主题时纠正错误吗?
C:\kafka\bin\windows>kafka-topics.bat --create --bootstrap-server localhost:2181 --replication-factor 1 --partition 1 --topic test
Exception in thread "main" joptsimple.UnrecognizedOptionException: partition is not a recognized option
at joptsimple.OptionE
我是kafka和zookepper的新手,我正在尝试创建一个主题,但我得到了这个错误-
Exception in thread "main" joptsimple.UnrecognizedOptionException: zookeeper is not a recognized option
at joptsimple.OptionException.unrecognizedOption(OptionException.java:108)
at joptsimple.OptionParser.handleLongOptionToken(Opti
下面是OptionParser的简化版本
OptionParser.new do |opts|
opts.on('-f', '--format FORMAT', 'output format (text, html, yml, json, xml)') do |format|
options['format'] = format
end
end
以下是格式选项的试用版
[16] pry(main)> parse("-f s")
=> {"f
我的卡夫卡版本" kafka _2.11-2.1.0“
./kafka-topics.sh --describe --bootstrap-server master:9092 --topic test
Exception in thread "main" joptsimple.UnrecognizedOptionException: bootstrap-server is not a recognized option
at joptsimple.OptionException.unrecognizedOption(OptionException.jav
我正在通过 on OptionsParser在红宝石。有一行代码让我感到困惑:
option_parser = OptionParser.new do |opt|
.
.
.
server_list = %w[a b c]
opt.on("-s SERVERS","--servers SERVERS", server_list, "which server will start between #{server_list.join(',')}") do |servers|
options[:servers] = servers
我试图在inkscape中使用乳胶,但它不起作用。我安装了所有必需的软件包(例如inkscape-Version1.0.2,texlive-base,pdflatex,pdf2svg,python,python)。我的电脑操作系统是Ubuntu18.04
但是,当我在inkscape中使用过程extensions>render>text和latex(GTK3)启动letex时,屏幕上打印的错误如下。
有谁能帮我解决这个问题吗?
kscape has received additional data from the script executed. the script did n
在Java中,您可以使用匿名内部类内联定义一个新类。当您只需要重写类的一个方法时,这是很有用的。
假设您想要创建一个仅覆盖单个方法(例如exit())的OptionParser子类。在Java中,你可以这样写:
new OptionParser () {
public void exit() {
// body of the method
}
};
这段代码创建了一个扩展OptionParser并仅覆盖exit()方法的匿名类。
Python中也有类似的成语吗?在这些情况下使用哪种习惯用法?
如何字符串格式OptionParser()帮助消息?它似乎忽略了新的行字符?请看下面的代码。
parser = OptionParser()
parser.add_option("--s", dest="s", type="string", help="first line \n second line")
意图:
current output:
.... first line \n second line
expected output:
.... first line
second line
我刚开始和卡夫卡码头公司合作。我将使用下面的命令创建一个主题:
./kafka-topics.sh --create --zookeeper zoo1:2181 --replication-factor 3 --partition 2 --topic test
它给我带来了以下错误:
Exception in thread "main" joptsimple.UnrecognizedOptionException: partition is not a recognized option
at joptsimple.OptionException.unrecognize
我正在尝试从std库模块optparser中子类化OptionParser。(Python 2.5.2)当我尝试这样做时,我得到了一个异常:
TypeError: super() argument 1 must be type, not classobj
看看OptionParser,它不是从object派生出来的。因此,我添加了object作为父类(如下所示),super可以正常工作。
from optparse import OptionParser, Option
class MyOptionParser(OptionParser, object):
"""
我正在尝试使用Scala 2.0.1库中新的不可变OptionParser。由于OptionParser采用泛型类型,而help方法已经定义了一个返回Unit的操作,因此我得到了一个编译时错误:
case class Config(directory: String = null)
val parser = new OptionParser[Config]() {
def options = Seq(
opt("d", "directory", "directory containing the files to be processed
我在optparse中为Option和OptionParser编写了一个子类。我正在用add_option重写OptionParser函数,以使它解析一个新关键字。以下是我的密码。
from optparse import Option, OptionError, OptionParser
class MyOptionParser(OptionParser):
def add_option(self,*args,**kwargs):
##add the new keyword "deft". If deft="some value", kwar
这个问题可能有一个简单的答案,只是不确定如何从我的搜索中梳理出来。
我在python代码中坚持使用,目前我正在编写的脚本使用OptionParser。为了防止行超过with值80,我在需要的地方使用了反斜杠。
例如:
if __name__=='__main__':
usage = '%prog [options]\nWithout any options, will display 10 random \
users of each type.'
parser = OptionParser(usage)
反斜杠后的缩进结果为:
~$ .
我不能用GCE创造卡夫卡的主题
在GEC
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable