forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KeyValue schema support for pulsar sql (apache#6325)
Fixes apache#5560 ### Motivation Currently, Pulsar SQL can't read the keyValue schema data. This PR added support Pulsar SQL reading messages with a key-value schema. ### Modifications Add KeyValue schema support for Pulsar SQL. Add prefix __key. for the key field name.
- Loading branch information
Showing
18 changed files
with
705 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
...r-sql/presto-pulsar/src/main/java/org/apache/pulsar/sql/presto/KeyValueSchemaHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.sql.presto; | ||
|
||
import io.airlift.log.Logger; | ||
import io.netty.buffer.ByteBuf; | ||
import java.util.List; | ||
import java.util.Objects; | ||
import org.apache.pulsar.client.impl.schema.KeyValueSchemaInfo; | ||
import org.apache.pulsar.common.schema.KeyValue; | ||
import org.apache.pulsar.common.schema.KeyValueEncodingType; | ||
import org.apache.pulsar.common.schema.SchemaInfo; | ||
|
||
|
||
/** | ||
* Schema handler for payload in the KeyValue format. | ||
*/ | ||
public class KeyValueSchemaHandler implements SchemaHandler { | ||
|
||
private static final Logger log = Logger.get(KeyValueSchemaHandler.class); | ||
|
||
private final List<PulsarColumnHandle> columnHandles; | ||
|
||
private final SchemaHandler keySchemaHandler; | ||
|
||
private final SchemaHandler valueSchemaHandler; | ||
|
||
private KeyValueEncodingType keyValueEncodingType; | ||
|
||
public KeyValueSchemaHandler(SchemaInfo schemaInfo, List<PulsarColumnHandle> columnHandles) { | ||
this.columnHandles = columnHandles; | ||
KeyValue<SchemaInfo, SchemaInfo> kvSchemaInfo = KeyValueSchemaInfo.decodeKeyValueSchemaInfo(schemaInfo); | ||
keySchemaHandler = PulsarSchemaHandlers.newPulsarSchemaHandler(kvSchemaInfo.getKey(), columnHandles); | ||
valueSchemaHandler = PulsarSchemaHandlers.newPulsarSchemaHandler(kvSchemaInfo.getValue(), columnHandles); | ||
keyValueEncodingType = KeyValueSchemaInfo.decodeKeyValueEncodingType(schemaInfo); | ||
} | ||
|
||
@Override | ||
public Object deserialize(ByteBuf payload) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Object deserialize(ByteBuf keyPayload, ByteBuf dataPayload) { | ||
ByteBuf keyByteBuf; | ||
ByteBuf valueByteBuf; | ||
if (Objects.equals(keyValueEncodingType, KeyValueEncodingType.INLINE)) { | ||
dataPayload.resetReaderIndex(); | ||
int keyLength = dataPayload.readInt(); | ||
keyByteBuf = dataPayload.readSlice(keyLength); | ||
|
||
int valueLength = dataPayload.readInt(); | ||
valueByteBuf = dataPayload.readSlice(valueLength); | ||
} else { | ||
keyByteBuf = keyPayload; | ||
valueByteBuf = dataPayload; | ||
} | ||
Object keyObj = keySchemaHandler.deserialize(keyByteBuf); | ||
Object valueObj = valueSchemaHandler.deserialize(valueByteBuf); | ||
return new KeyValue<>(keyObj, valueObj); | ||
} | ||
|
||
@Override | ||
public Object extractField(int index, Object currentRecord) { | ||
PulsarColumnHandle pulsarColumnHandle = this.columnHandles.get(index); | ||
KeyValue<Object, Object> keyValue = (KeyValue<Object, Object>) currentRecord; | ||
if (pulsarColumnHandle.isKey()) { | ||
return keySchemaHandler.extractField(index, keyValue.getKey()); | ||
} else if (pulsarColumnHandle.isValue()) { | ||
return valueSchemaHandler.extractField(index, keyValue.getValue()); | ||
} | ||
return null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.