gpt4 book ai didi

java - 尝试序列化 avro 记录时,B 无法转换为 java.nio.ByteBuffer

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:05:14 24 4
gpt4 key购买 nike

我编写了一个小的 Java 程序,它应该监视目录中的新文件并将它们以二进制 Avro 格式发送到 Kafka 主题。我是 Avro 的新手,我使用 Avro 文档和在线示例编写了这篇文章。监控部分运行良好,但程序在进入 Avro 序列化时在运行时失败。我得到这个错误堆栈:

Exception in thread "main" java.lang.ClassCastException: [B cannot be cast to java.nio.ByteBuffer
at org.apache.avro.generic.GenericDatumWriter.writeBytes(GenericDatumWriter.java:260)
at org.apache.avro.generic.GenericDatumWriter.writeWithoutConversion(GenericDatumWriter.java:116)
at org.apache.avro.generic.GenericDatumWriter.write(GenericDatumWriter.java:73)
at org.apache.avro.generic.GenericDatumWriter.writeField(GenericDatumWriter.java:153)
at org.apache.avro.generic.GenericDatumWriter.writeRecord(GenericDatumWriter.java:143)
at org.apache.avro.generic.GenericDatumWriter.writeWithoutConversion(GenericDatumWriter.java:105)
at org.apache.avro.generic.GenericDatumWriter.write(GenericDatumWriter.java:73)
at org.apache.avro.generic.GenericDatumWriter.write(GenericDatumWriter.java:60)
at producers.AvroBinaryProducer.buildAvroData(AvroBinaryProducer.java:90)
at producers.AvroBinaryProducer.start(AvroBinaryProducer.java:120)
at producers.AvroBinaryProducer.main(AvroBinaryProducer.java:140)
C:\Users\guys\AppData\Local\NetBeans\Cache\8.1\executor-snippets\run.xml:53: Java returned: 1
BUILD FAILED (total time: 7 seconds)

此行失败:writer.write(datum,encoder);

它似乎期待一个 ByteBuffer,而文档和示例说我应该通过 GenericRecord。我做错了什么?

这是我的代码(还有另一个名为 Config 的实用程序类,它从文件中读取配置参数,但我没有在此处包含它):

package producers;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.WatchService;
import java.util.Properties;
import org.apache.avro.Schema;
import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.Producer;
import org.apache.kafka.clients.producer.ProducerRecord;
import static java.nio.file.StandardWatchEventKinds.*;
import java.nio.file.WatchEvent;
import java.nio.file.WatchKey;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.avro.generic.GenericData;
import org.apache.avro.generic.GenericDatumWriter;
import org.apache.avro.generic.GenericRecord;
import org.apache.avro.io.BinaryEncoder;
import org.apache.avro.io.DatumWriter;
import org.apache.avro.io.EncoderFactory;


/**
*
* @author guys
*/
public class AvroBinaryProducer {
String mySchema;
Schema avroSchema;
Config myConf;
Producer<String, byte[]> producer;
String topic, bootstrapServers, watchDir;
Path path;
ByteArrayOutputStream out;
BinaryEncoder encoder;


public AvroBinaryProducer(String configPath) throws IOException
{
// Read initial configuration
myConf=new Config(configPath);

// first setting the kafka producer stuff
Properties props = new Properties();
props.put("bootstrap.servers",myConf.get("bootstrap.servers"));
props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
props.put("value.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer");
producer = new KafkaProducer<>(props);
topic=myConf.get("topic");
watchDir=myConf.get("watchdir");
path=FileSystems.getDefault().getPath(watchDir);

// Now define the Avro schema
mySchema="{\n" +
" \"type\": \"record\",\n" +
" \"name\": \"photo\",\n" +
" \"fields\": [\n" +
" {\"name\": \"name\", \"type\": \"string\"},\n" +
" {\"name\": \"data\", \"type\": \"bytes\"}\n" +
" ]\n" +
"}";

Schema.Parser parser = new Schema.Parser();
avroSchema=parser.parse(mySchema);

out = new ByteArrayOutputStream();
encoder = EncoderFactory.get().binaryEncoder( out, null );


}

private byte[] buildAvroData(String name, byte[] data) throws IOException
{
out.reset();
GenericRecord datum=new GenericData.Record(avroSchema);
datum.put("name", name);
datum.put("data",data);
DatumWriter<GenericRecord> writer=new GenericDatumWriter<>(avroSchema);
writer.write(datum,encoder);
encoder.flush();
return out.toByteArray();
}

private void start() throws IOException, InterruptedException
{
String fileName;
byte[] fileData;

WatchService watcher = FileSystems.getDefault().newWatchService();
WatchKey key=path.register(watcher, ENTRY_CREATE);

while (true)
{
key = watcher.take();
// The code gets beyond this point only when a filesystem event occurs

for (WatchEvent<?> event: key.pollEvents())
{
WatchEvent.Kind<?> kind = event.kind();
if (kind==ENTRY_CREATE)
{
WatchEvent<Path> ev = (WatchEvent<Path>)event;
Path filename = ev.context();
fileName=filename.toString();
System.out.println("New file "+fileName+" found !");
// We need this little delay to make sure the file is closed before we read it
Thread.sleep(500);
fileData=Files.readAllBytes(FileSystems.getDefault().getPath(watchDir+File.separator+fileName));
publishMessage(buildAvroData(fileName,fileData));
}
}
key.reset();
}
}

private void publishMessage(byte[] bytes)
{
ProducerRecord <String, byte[]> data =new ProducerRecord<>(topic, bytes);
producer.send(data);

}

public static void main (String args[])
{
AvroBinaryProducer abp;
try {
abp=new AvroBinaryProducer(args[0]);
try {
abp.start();
} catch (InterruptedException ex) {
Logger.getLogger(AvroBinaryProducer.class.getName()).log(Level.SEVERE, null, ex);
}
} catch (IOException ex) {
Logger.getLogger(AvroBinaryProducer.class.getName()).log(Level.SEVERE, null, ex);
}
}
}

谢谢!

最佳答案

我就是这样解决的。如果它需要 ByteBuffer,让我们给它 ByteBuffer。我将函数更改为:

private byte[] buildAvroData(String name, byte[] data) throws IOException
{
out.reset();
GenericRecord datum=new GenericData.Record(avroSchema);
datum.put("name", name);
datum.put("data",ByteBuffer.wrap(data));
DatumWriter<GenericRecord> writer=new GenericDatumWriter<>(avroSchema);
writer.write(datum,encoder);
encoder.flush();
return out.toByteArray();

我只是用 ByteBuffer 包装了数据,这很有效。您必须记住从消费者端的 ByteBuffer 中提取字节数组。

关于java - 尝试序列化 avro 记录时,B 无法转换为 java.nio.ByteBuffer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39330089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com