Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Issue 9602] Add schema type validation #9797

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -140,6 +140,15 @@ public CompletableFuture<SchemaVersion> putSchemaIfAbsent(String schemaId, Schem
SchemaCompatibilityStrategy strategy) {
return trimDeletedSchemaAndGetList(schemaId).thenCompose(schemaAndMetadataList ->
getSchemaVersionBySchemaData(schemaAndMetadataList, schema).thenCompose(schemaVersion -> {
if (schemaAndMetadataList.size() > 0) {
for (SchemaAndMetadata metadata : schemaAndMetadataList) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't you need to check if strategy is not ALWAYS_COMPATIBLE?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is really a need to check the strategy type, so I will add that and unit tests.

if (schema.getType() != metadata.schema.getType()) {
return FutureUtil.failedFuture(new IncompatibleSchemaException(
String.format("Incompatible schema: exists schema type %s, new schema type %s",
metadata.schema.getType(), schema.getType())));
}
}
}
if (schemaVersion != null) {
return CompletableFuture.completedFuture(schemaVersion);
}
Expand Down Expand Up @@ -242,17 +251,14 @@ private void checkCompatible(SchemaAndMetadata existingSchema, SchemaData newSch
SchemaHash existingHash = SchemaHash.of(existingSchema.schema);
SchemaHash newHash = SchemaHash.of(newSchema);
SchemaData existingSchemaData = existingSchema.schema;
if (existingSchemaData.getType().isPrimitive()) {
if (newSchema.getType() != existingSchemaData.getType()) {
throw new IncompatibleSchemaException(String.format("Incompatible primitive schema: "
+ "exists schema type %s, new schema type %s",
existingSchemaData.getType(), newSchema.getType()));
}
} else {
if (!newHash.equals(existingHash)) {
compatibilityChecks.getOrDefault(newSchema.getType(), SchemaCompatibilityCheck.DEFAULT)
.checkCompatible(existingSchemaData, newSchema, strategy);
}
if (newSchema.getType() != existingSchemaData.getType()) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't you need to check if strategy is not ALWAYS_COMPATIBLE?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no need to check compatibility here. Because in checkConsumerCompatibility will judge. If it is ALWAYS_COMPATIBLE, it will not be called here.

throw new IncompatibleSchemaException(String.format("Incompatible schema: "
+ "exists schema type %s, new schema type %s",
existingSchemaData.getType(), newSchema.getType()));
}
if (!newHash.equals(existingHash)) {
compatibilityChecks.getOrDefault(newSchema.getType(), SchemaCompatibilityCheck.DEFAULT)
.checkCompatible(existingSchemaData, newSchema, strategy);
}
}

Expand Down
@@ -0,0 +1,313 @@
/**
* 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.schema.compatibility;

import com.google.common.collect.Sets;
import org.apache.pulsar.broker.auth.MockedPulsarServiceBaseTest;
import org.apache.pulsar.client.api.*;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's better to avoid star import.

import org.apache.pulsar.client.api.schema.GenericRecord;
import org.apache.pulsar.common.naming.NamespaceName;
import org.apache.pulsar.common.naming.TopicDomain;
import org.apache.pulsar.common.naming.TopicName;
import org.apache.pulsar.common.policies.data.ClusterData;
import org.apache.pulsar.common.policies.data.SchemaCompatibilityStrategy;
import org.apache.pulsar.common.policies.data.TenantInfo;
import org.apache.pulsar.schema.Schemas;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import java.util.Collections;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;

import static org.testng.Assert.*;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as the above comment.



public class SchemaTypeCompatibilityCheckTest extends MockedPulsarServiceBaseTest {
private final static String CLUSTER_NAME = "test";
private final static String PUBLIC_TENANT = "public";
private final String namespace = "test-namespace";
private final String namespaceName = PUBLIC_TENANT + "/" + namespace;

@BeforeMethod
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to change to BeforeClass? This can avoid start and shutdown the mock service for each test.

@Override
public void setup() throws Exception {
super.internalSetup();

// Setup namespaces
admin.clusters().createCluster(CLUSTER_NAME, new ClusterData(pulsar.getBrokerServiceUrl()));

TenantInfo tenantInfo = new TenantInfo();
tenantInfo.setAllowedClusters(Collections.singleton(CLUSTER_NAME));
admin.tenants().createTenant(PUBLIC_TENANT, tenantInfo);
admin.namespaces().createNamespace(namespaceName, Sets.newHashSet(CLUSTER_NAME));

}

@AfterMethod(alwaysRun = true)
@Override
public void cleanup() throws Exception {
super.internalCleanup();
}

@Test
public void structTypeProducerProducer() throws Exception {
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"structTypeProducerProducer"
).toString();

pulsarClient.newProducer(Schema.JSON(Schemas.PersonOne.class))
.topic(topicName)
.create();

ProducerBuilder producerBuilder = pulsarClient.newProducer(Schema.AVRO(Schemas.PersonOne.class))
.topic(topicName);

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, producerBuilder::create);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type JSON, new schema type AVRO"));
}

@Test
public void structTypeProducerConsumer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"structTypeProducerConsumer"
).toString();

pulsarClient.newProducer(Schema.JSON(Schemas.PersonOne.class))
.topic(topicName)
.create();

ConsumerBuilder consumerBuilder = pulsarClient.newConsumer(Schema.AVRO(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2");

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, consumerBuilder::subscribe);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type JSON, new schema type AVRO"));
}

@Test
public void structTypeConsumerProducer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"structTypeConsumerProducer"
).toString();

pulsarClient.newConsumer(Schema.JSON(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName)
.subscribe();

ProducerBuilder producerBuilder = pulsarClient.newProducer(Schema.AVRO(Schemas.PersonOne.class))
.topic(topicName);

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, producerBuilder::create);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type JSON, new schema type AVRO"));
}

@Test
public void structTypeConsumerConsumer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"structTypeConsumerConsumer"
).toString();

pulsarClient.newConsumer(Schema.JSON(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "1")
.subscribe();

ConsumerBuilder consumerBuilder = pulsarClient.newConsumer(Schema.AVRO(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2");

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, consumerBuilder::subscribe);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type JSON, new schema type AVRO"));
}

@Test
public void structTypeAlwaysCompatible() throws Exception {
admin.namespaces().setSchemaCompatibilityStrategy(namespaceName, SchemaCompatibilityStrategy.ALWAYS_COMPATIBLE);
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"structTypeAlwaysCompatible"
).toString();

pulsarClient.newConsumer(Schema.JSON(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "1")
.subscribe();

pulsarClient.newConsumer(Schema.AVRO(Schemas.PersonOne.class))
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2")
.subscribe();
}

@Test
public void primitiveTypeProducerProducer() throws Exception {
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"primitiveTypeProducerProducer"
).toString();

pulsarClient.newProducer(Schema.INT32)
.topic(topicName)
.create();

ProducerBuilder producerBuilder = pulsarClient.newProducer(Schema.STRING)
.topic(topicName);

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, producerBuilder::create);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type INT32, new schema type STRING"));
}

@Test
public void primitiveProducerConsumer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"primitiveProducerConsumer"
).toString();

pulsarClient.newProducer(Schema.INT32)
.topic(topicName)
.create();

ConsumerBuilder consumerBuilder = pulsarClient.newConsumer(Schema.STRING)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2");

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, consumerBuilder::subscribe);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type INT32, new schema type STRING"));
}

@Test
public void primitiveConsumerProducer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"primitiveConsumerProducer"
).toString();

pulsarClient.newConsumer(Schema.INT32)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName)
.subscribe();

ProducerBuilder producerBuilder = pulsarClient.newProducer(Schema.STRING)
.topic(topicName);

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, producerBuilder::create);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type INT32, new schema type STRING"));
}

@Test
public void primitiveConsumerConsumer() throws Exception {
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"primitiveConsumerConsumer"
).toString();

pulsarClient.newConsumer(Schema.INT32)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "1")
.subscribe();

ConsumerBuilder consumerBuilder = pulsarClient.newConsumer(Schema.STRING)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2");

Throwable t = expectThrows(PulsarClientException.IncompatibleSchemaException.class, consumerBuilder::subscribe);
assertTrue(t.getMessage().endsWith("Incompatible schema: exists schema type INT32, new schema type STRING"));
}

@Test
public void primitiveAlwaysCompatible() throws Exception {
admin.namespaces().setSchemaCompatibilityStrategy(namespaceName, SchemaCompatibilityStrategy.ALWAYS_COMPATIBLE);
final String subName = "my-sub";
String topicName = TopicName.get(
TopicDomain.persistent.value(),
PUBLIC_TENANT,
namespace,
"primitiveAlwaysCompatible"
).toString();

pulsarClient.newConsumer(Schema.INT32)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "1")
.subscribe();

pulsarClient.newConsumer(Schema.STRING)
.topic(topicName)
.subscriptionType(SubscriptionType.Shared)
.ackTimeout(1, TimeUnit.SECONDS)
.subscriptionName(subName + "2")
.subscribe();

}
}