hailin0 commented on code in PR #4382:
URL: https://github.com/apache/seatunnel/pull/4382#discussion_r1401426109


##########
docs/en/connector-v2/sink/pulsar.md:
##########
@@ -0,0 +1,139 @@
+# Apache Pulsar
+
+> Apache Pulsar sink connector
+
+## Description
+
+Sink connector for Apache Pulsar.
+
+## Key features
+
+- [x] [exactly-once](../../concept/connector-v2-features.md)
+
+## Options
+
+|         name         |  type  | required |    default value    |
+|----------------------|--------|----------|---------------------|

Review Comment:
   update doc format 
   
   
https://github.com/apache/seatunnel/blob/dev/docs/en/connector-v2/sink/Kafka.md



##########
seatunnel-e2e/seatunnel-connector-v2-e2e/connector-pulsar-e2e/src/test/java/org/apache/seatunnel/e2e/connector/pulsar/PulsarSinkIT.java:
##########
@@ -0,0 +1,183 @@
+/*
+ * 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.seatunnel.e2e.connector.pulsar;
+
+import org.apache.seatunnel.shade.com.typesafe.config.ConfigFactory;
+
+import org.apache.seatunnel.api.source.Collector;
+import org.apache.seatunnel.api.table.type.ArrayType;
+import org.apache.seatunnel.api.table.type.BasicType;
+import org.apache.seatunnel.api.table.type.DecimalType;
+import org.apache.seatunnel.api.table.type.LocalTimeType;
+import org.apache.seatunnel.api.table.type.MapType;
+import org.apache.seatunnel.api.table.type.PrimitiveByteArrayType;
+import org.apache.seatunnel.api.table.type.SeaTunnelDataType;
+import org.apache.seatunnel.api.table.type.SeaTunnelRow;
+import org.apache.seatunnel.api.table.type.SeaTunnelRowType;
+import org.apache.seatunnel.connectors.seatunnel.fake.config.FakeConfig;
+import org.apache.seatunnel.connectors.seatunnel.fake.source.FakeDataGenerator;
+import org.apache.seatunnel.e2e.common.TestResource;
+import org.apache.seatunnel.e2e.common.TestSuiteBase;
+import org.apache.seatunnel.e2e.common.container.TestContainer;
+import org.apache.seatunnel.format.json.JsonSerializationSchema;
+
+import org.apache.pulsar.client.api.Producer;
+import org.apache.pulsar.client.api.PulsarClient;
+import org.apache.pulsar.client.api.PulsarClientException;
+import org.apache.pulsar.client.api.Schema;
+
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.TestTemplate;
+import org.testcontainers.containers.Container;
+import org.testcontainers.containers.PulsarContainer;
+import org.testcontainers.containers.output.Slf4jLogConsumer;
+import org.testcontainers.lifecycle.Startables;
+import org.testcontainers.shaded.org.awaitility.Awaitility;
+import org.testcontainers.utility.DockerImageName;
+import org.testcontainers.utility.DockerLoggerFactory;
+
+import lombok.Getter;
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.IOException;
+import java.time.Duration;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.TimeUnit;
+import java.util.stream.Stream;
+
+import static java.time.temporal.ChronoUnit.SECONDS;
+
+@Slf4j
+public class PulsarSinkIT extends TestSuiteBase implements TestResource {
+
+    private static final String PULSAR_IMAGE_NAME = 
"apachepulsar/pulsar:2.3.1";
+    public static final String PULSAR_HOST = "pulsar.e2e.sink";
+    public static final String TOPIC = "topic-test01";
+    private PulsarContainer pulsarContainer;
+    private PulsarClient client;
+    private Producer<byte[]> producer;
+
+    private static final SeaTunnelRowType SEATUNNEL_ROW_TYPE =
+            new SeaTunnelRowType(
+                    new String[] {
+                        "c_map",
+                        "c_array",
+                        "c_string",
+                        "c_boolean",
+                        "c_tinyint",
+                        "c_smallint",
+                        "c_int",
+                        "c_bigint",
+                        "c_float",
+                        "c_double",
+                        "c_decimal",
+                        "c_bytes",
+                        "c_date",
+                        "c_timestamp"
+                    },
+                    new SeaTunnelDataType[] {
+                        new MapType<>(BasicType.STRING_TYPE, 
BasicType.STRING_TYPE),
+                        ArrayType.INT_ARRAY_TYPE,
+                        BasicType.STRING_TYPE,
+                        BasicType.BOOLEAN_TYPE,
+                        BasicType.BYTE_TYPE,
+                        BasicType.SHORT_TYPE,
+                        BasicType.INT_TYPE,
+                        BasicType.LONG_TYPE,
+                        BasicType.FLOAT_TYPE,
+                        BasicType.DOUBLE_TYPE,
+                        new DecimalType(38, 10),
+                        PrimitiveByteArrayType.INSTANCE,
+                        LocalTimeType.LOCAL_DATE_TYPE,
+                        LocalTimeType.LOCAL_DATE_TIME_TYPE
+                    });
+
+    @Override
+    @BeforeAll
+    public void startUp() throws Exception {
+        pulsarContainer =
+                new PulsarContainer(DockerImageName.parse(PULSAR_IMAGE_NAME))
+                        .withNetwork(NETWORK)
+                        .withNetworkAliases(PULSAR_HOST)
+                        .withStartupTimeout(Duration.of(400, SECONDS))
+                        .withLogConsumer(
+                                new Slf4jLogConsumer(
+                                        
DockerLoggerFactory.getLogger(PULSAR_IMAGE_NAME)));
+
+        Startables.deepStart(Stream.of(pulsarContainer)).join();
+        Awaitility.given()
+                .ignoreExceptions()
+                .atLeast(100, TimeUnit.MILLISECONDS)
+                .pollInterval(500, TimeUnit.MILLISECONDS)
+                .atMost(180, TimeUnit.SECONDS)
+                .untilAsserted(this::initTopic);
+    }
+
+    @Override
+    public void tearDown() throws Exception {
+        pulsarContainer.close();
+        client.close();
+        producer.close();
+    }
+
+    private void initTopic() throws PulsarClientException {
+        client = 
PulsarClient.builder().serviceUrl(pulsarContainer.getPulsarBrokerUrl()).build();
+        producer = client.newProducer(Schema.BYTES).topic(TOPIC).create();
+        produceData();
+    }
+
+    private void produceData() {
+
+        try {
+            FakeConfig fakeConfig = 
FakeConfig.buildWithConfig(ConfigFactory.empty());
+            FakeDataGenerator fakeDataGenerator =
+                    new FakeDataGenerator(SEATUNNEL_ROW_TYPE, fakeConfig);
+            SimpleCollector simpleCollector = new SimpleCollector();
+            fakeDataGenerator.collectFakedRows(100, simpleCollector);
+            JsonSerializationSchema jsonSerializationSchema =
+                    new JsonSerializationSchema(SEATUNNEL_ROW_TYPE);
+            for (SeaTunnelRow seaTunnelRow : simpleCollector.getList()) {
+                producer.send(jsonSerializationSchema.serialize(seaTunnelRow));
+            }
+        } catch (PulsarClientException e) {
+            throw new RuntimeException("produce data error", e);
+        }
+    }
+
+    private static class SimpleCollector implements Collector<SeaTunnelRow> {
+        @Getter private List<SeaTunnelRow> list = new ArrayList<>();
+
+        @Override
+        public void collect(SeaTunnelRow record) {
+            list.add(record);
+        }
+
+        @Override
+        public Object getCheckpointLock() {
+            return null;
+        }
+    }
+
+    @TestTemplate
+    void testPulsarSink(TestContainer container) throws IOException, 
InterruptedException {
+        Container.ExecResult execResult = 
container.executeJob("/pulsar_to_pulsar.conf");
+        Assertions.assertEquals(execResult.getExitCode(), 0);

Review Comment:
   consume data and check count & format



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to