You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by zhaoqun911 <gi...@git.apache.org> on 2017/05/25 06:56:44 UTC

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

GitHub user zhaoqun911 opened a pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24

    RocketMQ-MySQL 1.0-snapshot

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/zhaoqun911/incubator-rocketmq-externals master

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-rocketmq-externals/pull/24.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #24
    
----
commit 2cf6ff158d651884dfede84f7087cca4893e7aec
Author: zhaoqun007 <91...@zhaoqun911.cn>
Date:   2017-04-19T17:05:26Z

    Add README.md

commit f97e9e6412ef3df3a57e8b9cbdda770a1e9723cb
Author: zhaoqun007 <91...@zhaoqun911.cn>
Date:   2017-05-25T06:53:23Z

    1.0-SNAPSHOT version

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/incubator-rocketmq-externals/pull/24


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24#discussion_r121605897
  
    --- Diff: rocketmq-mysql/pom.xml ---
    @@ -0,0 +1,163 @@
    +<?xml version="1.0" encoding="UTF-8"?>
    +<project xmlns="http://maven.apache.org/POM/4.0.0"
    +         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    +    <modelVersion>4.0.0</modelVersion>
    +
    +    <groupId>org.apache</groupId>
    +    <artifactId>rocketmq-mysql</artifactId>
    +    <version>1.0-SNAPSHOT</version>
    +
    +    <properties>
    +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    +        <maven.test.skip>false</maven.test.skip>
    +        <maven.javadoc.skip>true</maven.javadoc.skip>
    +        <maven.compiler.source>1.7</maven.compiler.source>
    +        <maven.compiler.target>1.7</maven.compiler.target>
    +        <flume.version>1.7.0</flume.version>
    +        <rocketmq.version>4.0.0-incubating</rocketmq.version>
    +    </properties>
    +
    +    
    +    <dependencies>
    +        <dependency>
    +            <groupId>org.apache.rocketmq</groupId>
    +            <artifactId>rocketmq-client</artifactId>
    +            <version>${rocketmq.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.zendesk</groupId>
    +            <artifactId>open-replicator</artifactId>
    +            <version>1.6.0</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>mysql</groupId>
    +            <artifactId>mysql-connector-java</artifactId>
    +            <version>5.1.39</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.slf4j</groupId>
    +            <artifactId>slf4j-api</artifactId>
    +            <version>1.7.5</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>ch.qos.logback</groupId>
    +            <artifactId>logback-classic</artifactId>
    +            <version>1.0.13</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>ch.qos.logback</groupId>
    +            <artifactId>logback-core</artifactId>
    +            <version>1.0.13</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.alibaba</groupId>
    --- End diff --
    
    recommend to remove druid dependency


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24#discussion_r121604785
  
    --- Diff: rocketmq-mysql/.gitignore ---
    @@ -0,0 +1,17 @@
    +*dependency-reduced-pom.xml
    +.classpath
    +.project
    +.settings/
    +target/
    +devenv
    +*.log*
    +*.iml
    +.idea/
    +*.versionsBackup
    +*bin
    +!NOTICE-BIN
    +!LICENSE-BIN
    +.DS_Store
    +将删除 .gitignore
    --- End diff --
    
    please remove it


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals issue #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on the issue:

    https://github.com/apache/incubator-rocketmq-externals/pull/24
  
    I will merge this PR and polish it later


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24#discussion_r121605624
  
    --- Diff: rocketmq-mysql/pom.xml ---
    @@ -0,0 +1,163 @@
    +<?xml version="1.0" encoding="UTF-8"?>
    +<project xmlns="http://maven.apache.org/POM/4.0.0"
    +         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    +    <modelVersion>4.0.0</modelVersion>
    +
    +    <groupId>org.apache</groupId>
    +    <artifactId>rocketmq-mysql</artifactId>
    --- End diff --
    
    rocketmq-mysql-connector


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24#discussion_r121605783
  
    --- Diff: rocketmq-mysql/pom.xml ---
    @@ -0,0 +1,163 @@
    +<?xml version="1.0" encoding="UTF-8"?>
    +<project xmlns="http://maven.apache.org/POM/4.0.0"
    +         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    +    <modelVersion>4.0.0</modelVersion>
    +
    +    <groupId>org.apache</groupId>
    +    <artifactId>rocketmq-mysql</artifactId>
    +    <version>1.0-SNAPSHOT</version>
    +
    +    <properties>
    +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    +        <maven.test.skip>false</maven.test.skip>
    +        <maven.javadoc.skip>true</maven.javadoc.skip>
    +        <maven.compiler.source>1.7</maven.compiler.source>
    +        <maven.compiler.target>1.7</maven.compiler.target>
    +        <flume.version>1.7.0</flume.version>
    +        <rocketmq.version>4.0.0-incubating</rocketmq.version>
    +    </properties>
    +
    +    
    +    <dependencies>
    +        <dependency>
    +            <groupId>org.apache.rocketmq</groupId>
    +            <artifactId>rocketmq-client</artifactId>
    +            <version>${rocketmq.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.zendesk</groupId>
    +            <artifactId>open-replicator</artifactId>
    +            <version>1.6.0</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>mysql</groupId>
    +            <artifactId>mysql-connector-java</artifactId>
    +            <version>5.1.39</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.slf4j</groupId>
    --- End diff --
    
    Many question about your log dependency


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-rocketmq-externals pull request #24: RocketMQ-MySQL 1.0-snapshot

Posted by vongosling <gi...@git.apache.org>.
Github user vongosling commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq-externals/pull/24#discussion_r121606021
  
    --- Diff: rocketmq-mysql/src/main/java/org/apache/rocketmq/mysql/Config.java ---
    @@ -0,0 +1,132 @@
    +/*
    + * 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.rocketmq.mysql;
    +
    +import java.io.IOException;
    +import java.io.InputStream;
    +import java.lang.reflect.Method;
    +import java.util.Properties;
    +
    +/**
    + *
    --- End diff --
    
    Remove javadoc


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---