Re: [GSoC Mentors] Org admin from Russia

2022-04-10 Thread Juan Pan
Hello Maxim,


Sorry to hear that, but really thanks for your effort and work, 
and hope GSoC 2022 goes well same as last year!



--
Trista Pan
Twitter & Github: tristaZero




On 04/7/2022 09:43,Maxim Solodovnik wrote:
Hello All,

Due to recent changes in GSoC rules (see the emails below) I step down as
Org Admin for ASF
I will continue to help on ASF side but will be unable to send invitations
and act as ASF org admin

please contact this list in case of any questions and @Sanyam Goel
 and @Swapnil M Mane 

I guess I will not receive any email notifications so please ping me in
case of any URGENT steps need to be done :)

On Thu, 7 Apr 2022 at 00:40, 'sttaylor' via Google Summer of Code Mentors
List  wrote:

Hi Maxim,

Good question.

As mentioned in the FAQ (and on this list last week):
*Due to current circumstances, GSoC 2022 is not accepting participants
(Contributors, Mentors or Organization Administrators) from Russia,
Belarus, or the so-called Donetsk People's Republic ("DNR") and Luhansk
People's Republic ("LNR"). There are no restrictions on participants
located within Ukraine but outside of the DNR and LNR.*

Any Org Admins or Mentors that are in Russia, Belarus, DNR or LNR will
need to withdraw themselves from the GSoC 2022 program. There is a
'Withdraw from Program' red link in your User Profile (toward the bottom of
the page). That will just withdraw you from this GSoC 2022 program and in
the future you will be able to use the same profile to register for a given
program when the situation allows.

Best,
Stephanie


On Wednesday, April 6, 2022 at 10:22:33 AM UTC-7 solom...@gmail.com wrote:

Hello Stephanie,

Recently I read from news, and read in FAQ [1]

"GSoC 2022 is not accepting participants (Contributors, Mentors or
Organization Administrators) from Russia"

Shall I step down from org admin position?

ps sorry it seems I've miss the announcement :(

[1]
https://developers.google.com/open-source/gsoc/faq#are_participants_from_ukraine_russia_or_belarus_allowed_to_participate_in_gsoc_2022

from mobile (sorry for typos ;)


--
You received this message because you are subscribed to the Google Groups
"Google Summer of Code Mentors List" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to google-summer-of-code-mentors-list+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-summer-of-code-mentors-list/2bd96946-6b18-4da7-a1b4-d14d50c49f0an%40googlegroups.com

.



--
Best regards,
Maxim


[jira] [Commented] (COMDEV-438) Apache ShardingSphere: Solve unsupported Postgres sql about alter statement for ShardingSphere Parser

2022-04-06 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-438?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17518062#comment-17518062
 ] 

Juan Pan commented on COMDEV-438:
-

[~Everly] 

Great, let's talk more on GitHub. And [~duanzhengqiang] will pick up some 
proper issues for you.

See you! ;)

> Apache ShardingSphere: Solve unsupported Postgres sql about alter statement 
> for ShardingSphere Parser
> -
>
> Key: COMDEV-438
> URL: https://issues.apache.org/jira/browse/COMDEV-438
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2022, mentor, part-time
>
> *Apache ShardingSphere*
> Apache ShardingSphere is positioned as a Database Plus, and aims at building 
> a standard layer and ecosystem above heterogeneous databases. It focuses on 
> how to reuse existing databases and their respective upper layer, rather than 
> creating a new database. The goal is to minimize or eliminate the challenges 
> caused by underlying databases fragmentation.
> {*}Page{*}: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
> {*}Github{*}: [https://github.com/apache/shardingsphere]
> h3.  Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer`, `openGauss` and `Oracle`, which means we have to understand 
> different database dialect SQLs.
> {*}More details{*}:
> [https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/]
> h3. Task
> This issue is to solve the unsupported postgres sql about alter in [this 
> file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
>  . * ALTER OPERATOR
>  * ALTER POLICY
>  * ALTER PUBLICATION
>  * ALTER ROUTINE
>  * ALTER RULE
>  * ALTER SCHEMA
>  * ALTER SEQUENCE
>  * ALTER SERVER
>  * ALTER STATISTICS
>  * ALTER SUBSCRIPTION
>  * ALTER TABLE
>  * ALTER TEXT SEARCH
>  * ALTER TRIGGER
>  * ALTER TYPE
>  * ALTER VIEW
> You can *learn more* 
> [here|https://www.postgresql.org/docs/current/sql-commands.html]. * 
> You may need to try to get why it's not supported.(antlr4 grammar? or not 
> implement visit method) You can use [antlr4 
> plugins|https://plugins.jetbrains.com/plugin/7358-antlr-v4] to help you to 
> analyze. You may need to visit [an official 
> doc|https://www.postgresql.org/docs/current/sql-commands.html] to check the 
> grammar.
>  * 
> After you fix it, remember to add a new corresponding SQL case in [SQL 
> Cases|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/supported]
>  and the expected parsed result in [Expected Statment 
> XML|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/case].
>  * Run 
> [SQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/SQLParserParameterizedTest.java]
>  and 
> [UnsupportedSQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/UnsupportedSQLParserParameterizedTest.java]
>  to make sure no exceptions.
> {*}Notice{*}, these issues can be a good example.
> [support alter foreign table for pg/og 
> |https://github.com/apache/shardingsphere/pull/14944]
> [support alter materialized view for 
> pg/og.|https://github.com/apache/shardingsphere/pull/15331]
> h3. Relevant Skills
> 1. Master JAVA language
> 2. Have a basic understanding of Antlr g4 file
> 3. Be familiar with Postgres SQLs
> h3. Targets files
> 1. Postgres SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/antlr4/org/apache/shardingsphere/sql/parser/autogen/PostgreSQLStatement.g4]
> h3. Mentor
> Trista Pan, PMC of Apache ShardingSphere, 
> [https://tristazero.github.io|https://tristazero.github.io/]
> Zhengqiang Duan, Committer of ApacheShardingSphere, 
> [htt

[jira] [Commented] (COMDEV-438) Apache ShardingSphere: Solve unsupported Postgres sql about alter statement for ShardingSphere Parser

2022-04-06 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-438?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517913#comment-17517913
 ] 

Juan Pan commented on COMDEV-438:
-

Hello [~Everly] 

 

That's great that you have tried some PRs and contributed to this community! 
Thanks for your interest and welcome! 

Would you like to try some more tasks relevant to this program? Therefore, I 
suppose that will be very helpful for GSoC.

Trista

> Apache ShardingSphere: Solve unsupported Postgres sql about alter statement 
> for ShardingSphere Parser
> -
>
> Key: COMDEV-438
> URL: https://issues.apache.org/jira/browse/COMDEV-438
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2022, mentor, part-time
>
> *Apache ShardingSphere*
> Apache ShardingSphere is positioned as a Database Plus, and aims at building 
> a standard layer and ecosystem above heterogeneous databases. It focuses on 
> how to reuse existing databases and their respective upper layer, rather than 
> creating a new database. The goal is to minimize or eliminate the challenges 
> caused by underlying databases fragmentation.
> {*}Page{*}: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
> {*}Github{*}: [https://github.com/apache/shardingsphere]
> h3.  Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer`, `openGauss` and `Oracle`, which means we have to understand 
> different database dialect SQLs.
> {*}More details{*}:
> [https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/]
> h3. Task
> This issue is to solve the unsupported postgres sql about alter in [this 
> file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
>  . * ALTER OPERATOR
>  * ALTER POLICY
>  * ALTER PUBLICATION
>  * ALTER ROUTINE
>  * ALTER RULE
>  * ALTER SCHEMA
>  * ALTER SEQUENCE
>  * ALTER SERVER
>  * ALTER STATISTICS
>  * ALTER SUBSCRIPTION
>  * ALTER TABLE
>  * ALTER TEXT SEARCH
>  * ALTER TRIGGER
>  * ALTER TYPE
>  * ALTER VIEW
> You can *learn more* 
> [here|https://www.postgresql.org/docs/current/sql-commands.html]. * 
> You may need to try to get why it's not supported.(antlr4 grammar? or not 
> implement visit method) You can use [antlr4 
> plugins|https://plugins.jetbrains.com/plugin/7358-antlr-v4] to help you to 
> analyze. You may need to visit [an official 
> doc|https://www.postgresql.org/docs/current/sql-commands.html] to check the 
> grammar.
>  * 
> After you fix it, remember to add a new corresponding SQL case in [SQL 
> Cases|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/supported]
>  and the expected parsed result in [Expected Statment 
> XML|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/case].
>  * Run 
> [SQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/SQLParserParameterizedTest.java]
>  and 
> [UnsupportedSQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/UnsupportedSQLParserParameterizedTest.java]
>  to make sure no exceptions.
> {*}Notice{*}, these issues can be a good example.
> [support alter foreign table for pg/og 
> |https://github.com/apache/shardingsphere/pull/14944]
> [support alter materialized view for 
> pg/og.|https://github.com/apache/shardingsphere/pull/15331]
> h3. Relevant Skills
> 1. Master JAVA language
> 2. Have a basic understanding of Antlr g4 file
> 3. Be familiar with Postgres SQLs
> h3. Targets files
> 1. Postgres SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/antlr4/org/apache/shardingsphere/sql/parser/autogen/PostgreSQLStatement.g4]
> h3. Mentor
> Tris

[jira] [Updated] (COMDEV-438) Apache ShardingSphere: Solve unsupported Postgres sql about alter statement for ShardingSphere Parser

2022-02-21 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-438?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-438:

Description: 
*Apache ShardingSphere*
Apache ShardingSphere is positioned as a Database Plus, and aims at building a 
standard layer and ecosystem above heterogeneous databases. It focuses on how 
to reuse existing databases and their respective upper layer, rather than 
creating a new database. The goal is to minimize or eliminate the challenges 
caused by underlying databases fragmentation.
{*}Page{*}: 
[https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
{*}Github{*}: [https://github.com/apache/shardingsphere]
h3.  Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer`, 
`openGauss` and `Oracle`, which means we have to understand different database 
dialect SQLs.
{*}More details{*}:
[https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/]
h3. Task

This issue is to solve the unsupported postgres sql about alter in [this 
file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
 . * ALTER OPERATOR
 * ALTER POLICY

 * ALTER PUBLICATION

 * ALTER ROUTINE

 * ALTER RULE

 * ALTER SCHEMA

 * ALTER SEQUENCE

 * ALTER SERVER

 * ALTER STATISTICS

 * ALTER SUBSCRIPTION

 * ALTER TABLE

 * ALTER TEXT SEARCH

 * ALTER TRIGGER

 * ALTER TYPE

 * ALTER VIEW

You can *learn more* 
[here|https://www.postgresql.org/docs/current/sql-commands.html]. * 
You may need to try to get why it's not supported.(antlr4 grammar? or not 
implement visit method) You can use [antlr4 
plugins|https://plugins.jetbrains.com/plugin/7358-antlr-v4] to help you to 
analyze. You may need to visit [an official 
doc|https://www.postgresql.org/docs/current/sql-commands.html] to check the 
grammar.
 * 
After you fix it, remember to add a new corresponding SQL case in [SQL 
Cases|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/supported]
 and the expected parsed result in [Expected Statment 
XML|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/case].

 * Run 
[SQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/SQLParserParameterizedTest.java]
 and 
[UnsupportedSQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/UnsupportedSQLParserParameterizedTest.java]
 to make sure no exceptions.

{*}Notice{*}, these issues can be a good example.
[support alter foreign table for pg/og 
|https://github.com/apache/shardingsphere/pull/14944]
[support alter materialized view for 
pg/og.|https://github.com/apache/shardingsphere/pull/15331]
h3. Relevant Skills

1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Postgres SQLs
h3. Targets files

1. Postgres SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/antlr4/org/apache/shardingsphere/sql/parser/autogen/PostgreSQLStatement.g4]
h3. Mentor

Trista Pan, PMC of Apache ShardingSphere, 
[https://tristazero.github.io|https://tristazero.github.io/]

Zhengqiang Duan, Committer of ApacheShardingSphere, 
[https://github.com/strongduanmu]

  was:
*Apache ShardingSphere*
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
{*}Page{*}: 
[https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
{*}Github{*}: [https://github.com/apache/shardingsphere]
h3.  Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer`, 
`openGauss` and `Oracle`, which means we have to understand different database 
dialect SQLs.
{*}More details{*}:
[https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/]
h3. Task

This issue is to solve the unsupported postgres sql about alter in [this 
file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src

[jira] [Updated] (COMDEV-438) Apache ShardingSphere: Solve unsupported Postgres sql about alter statement for ShardingSphere Parser

2022-02-15 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-438?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-438:

Description: 
*Apache ShardingSphere*
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
{*}Page{*}: 
[https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
{*}Github{*}: [https://github.com/apache/shardingsphere]
h3.  Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer`, 
`openGauss` and `Oracle`, which means we have to understand different database 
dialect SQLs.
{*}More details{*}:
[https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/]
h3. Task

This issue is to solve the unsupported postgres sql about alter in [this 
file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
 . * ALTER OPERATOR
 * ALTER POLICY

 * ALTER PUBLICATION

 * ALTER ROUTINE

 * ALTER RULE

 * ALTER SCHEMA

 * ALTER SEQUENCE

 * ALTER SERVER

 * ALTER STATISTICS

 * ALTER SUBSCRIPTION

 * ALTER TABLE

 * ALTER TEXT SEARCH

 * ALTER TRIGGER

 * ALTER TYPE

 * ALTER VIEW

You can *learn more* 
[here|https://www.postgresql.org/docs/current/sql-commands.html]. * 
You may need to try to get why it's not supported.(antlr4 grammar? or not 
implement visit method) You can use [antlr4 
plugins|https://plugins.jetbrains.com/plugin/7358-antlr-v4] to help you to 
analyze. You may need to visit [an official 
doc|https://www.postgresql.org/docs/current/sql-commands.html] to check the 
grammar.
 * 
After you fix it, remember to add a new corresponding SQL case in [SQL 
Cases|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/supported]
 and the expected parsed result in [Expected Statment 
XML|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/case].

 * Run 
[SQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/SQLParserParameterizedTest.java]
 and 
[UnsupportedSQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/UnsupportedSQLParserParameterizedTest.java]
 to make sure no exceptions.

{*}Notice{*}, these issues can be a good example.
[support alter foreign table for pg/og 
|https://github.com/apache/shardingsphere/pull/14944]
[support alter materialized view for 
pg/og.|https://github.com/apache/shardingsphere/pull/15331]
h3. Relevant Skills

1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Postgres SQLs
h3. Targets files

1. Postgres SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/antlr4/org/apache/shardingsphere/sql/parser/autogen/PostgreSQLStatement.g4]
h3. Mentor

Trista Pan, PMC of Apache ShardingSphere, https://tristazero.github.io

Zhengqiang Duan, Committer of ApacheShardingSphere, 
https://github.com/strongduanmu

  was:
 
Apache ShardingSphere
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
{*}Page{*}: 
[https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
{*}Github{*}: [https://github.com/apache/shardingsphere]
h3.  
h3. Background
ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer`, 
`openGauss` and `Oracle`, which means we have to understand different database 
dialect SQLs.
{*}More details{*}:
https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/
h3. Task
This issue is to solve the unsupported postgres sql about alter in [this 
file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
 . * ALTER OPERATOR

 * ALTER POLICY

 * ALTER PUBLICATION

 * ALTER ROUTINE

 * ALTER

[jira] [Created] (COMDEV-438) Apache ShardingSphere: Solve unsupported Postgres sql about alter statement for ShardingSphere Parser

2022-02-15 Thread Juan Pan (Jira)
Juan Pan created COMDEV-438:
---

 Summary: Apache ShardingSphere: Solve unsupported Postgres sql 
about alter statement for ShardingSphere Parser
 Key: COMDEV-438
 URL: https://issues.apache.org/jira/browse/COMDEV-438
 Project: Community Development
  Issue Type: Improvement
  Components: GSoC/Mentoring ideas
Reporter: Juan Pan


 
Apache ShardingSphere
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
{*}Page{*}: 
[https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
{*}Github{*}: [https://github.com/apache/shardingsphere]
h3.  
h3. Background
ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer`, 
`openGauss` and `Oracle`, which means we have to understand different database 
dialect SQLs.
{*}More details{*}:
https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/
h3. Task
This issue is to solve the unsupported postgres sql about alter in [this 
file|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/unsupported/unsupported.xml]
 . * ALTER OPERATOR

 * ALTER POLICY

 * ALTER PUBLICATION

 * ALTER ROUTINE

 * ALTER RULE

 * ALTER SCHEMA

 * ALTER SEQUENCE

 * ALTER SERVER

 * ALTER STATISTICS

 * ALTER SUBSCRIPTION

 * ALTER TABLE

 * ALTER TEXT SEARCH

 * ALTER TRIGGER

 * ALTER TYPE

 * ALTER VIEW

You can *learn more* 
[here|https://www.postgresql.org/docs/current/sql-commands.html]. * 
You may need to try to get why it's not supported.(antlr4 grammar? or not 
implement visit method) You can use [antlr4 
plugins|https://plugins.jetbrains.com/plugin/7358-antlr-v4] to help you to 
analyze. You may need to visit [an official 
doc|https://www.postgresql.org/docs/current/sql-commands.html] to check the 
grammar.

 * 
After you fix it, remember to add a new corresponding SQL case in [SQL 
Cases|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/sql/supported]
 and expected parsed result in [Expected Statment 
XML|https://github.com/apache/shardingsphere/tree/master/shardingsphere-test/shardingsphere-parser-test/src/main/resources/case].

 * Run 
[SQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/SQLParserParameterizedTest.java]
 and 
[UnsupportedSQLParserParameterizedTest|https://github.com/apache/shardingsphere/blob/master/shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/engine/UnsupportedSQLParserParameterizedTest.java]
 to make sure no exceptions.

{*}Notice{*}, these issues can be a good example.
[support alter foreign table for pg/og 
|https://github.com/apache/shardingsphere/pull/14944]
[support alter materialized view for 
pg/og.|https://github.com/apache/shardingsphere/pull/15331]
h3. Relevant Skills
1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Postgres SQLs
h3. Targets files
1. Postgres SQLs g4 file: 
https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/antlr4/org/apache/shardingsphere/sql/parser/autogen/PostgreSQLStatement.g4
h3. Mentor



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re:[Announcement] - Establishing ALC Shenzhen Chapter

2021-12-20 Thread Juan Pan
Congratulation!
It looks that it’s possible to have co-meetup with ALC Beijing here.



--
Juan Pan(Trista), Twitter: @tristaZero


On 12/20/2021 22:45,Swapnil M Mane wrote:
Hello all,

ComDev PMC is pleased to announce our next Apache Local Community [1]
ALC Chapter - ALC Shenzhen [2] and Eason Chen as ALC Shenzhen Chapter
lead.
We have the following members in ALC Shenzhen:

Willem Ning Jiang (Mentor)
-- ASF Member
-- Chair, (Servicecomb)
-- PMC (APISIX, Camel, CXF, Incubator, IoTDB, RocketMQ, ServiceMix,
ShardingSphere, SkyWalking)

Ted Liu (Mentor)
-- ASF Member
-- PMC (ComDev, Incubator)
-- Committer (ECharts)

Von Gosling (Mentor)
-- ASF Member
-- PMC (APISIX, Dubbo, RocketMQ, Incubator, ShardingSphere)

Ming Wen
-- ASF Member
-- Chair, APISIX

Liang Chen
-- ASF Member
-- Chair, CarbonData

Jerry Shao
-- ASF Member
-- PMC (Incubator, Spark)

Sammi Chen
-- Chair, OZone
-- PMC (Hadoop)

Zhenxu Ke
-- PMC (Incubator, SkyWalking)
-- Committer (DolphinScheduler, Dubbo)
-- Mentor (MXNet, SeaTunnel)

Du Heng
-- PMC (RocketMQ)

Zili Chen
-- PMC (Curator)
-- Committer (Incubator, Flink)

Lin Lin
-- PMC (Pulsar)

Eason Chen (Chen Guangsheng) (Chapter Lead)
-- PPMC (EventMesh)
-- Committer (Incubator, RocketMQ)

Xiao Yu
-- Committer (Incubator, ShardingSphere)

Guocheng Zhang
-- PPMC(InLong)
-- Committer (Incubator)

Weiming Xue
-- Committer (Incubator)

Charles Zhang
-- PPMC (InLong)
-- Committer (Incubator)

Shuai Di
-- PPMC (Linkis)
-- Committer (Incubator)

Heping Wang
-- PPMC (Linkis)
-- Committer (Incubator)

Please join me in congratulating the ALC Shenzhen Chapter and wishing
them the best luck for their future events.

[1] https://s.apache.org/alc
[2] https://s.apache.org/alc-shenzhen

Best regards,
Swapnil M Mane,
www.apache.org

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


[jira] [Comment Edited] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-12-08 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17456123#comment-17456123
 ] 

Juan Pan edited comment on COMDEV-399 at 12/9/21, 3:32 AM:
---

Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480] or [#6478 
|https://github.com/apache/shardingsphere/issues/6478]for other similar issues.

Please have my big welcome there.

Have a nice day.


was (Author: panjuan):
Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480] or 
[[#6478|https://github.com/apache/shardingsphere/issues/6478]|[https://github.com/apache/shardingsphere/issues/6478]|https://github.com/apache/shardingsphere/issues/6480]
 [#6480|[https://github.com/apache/shardingsphere/issues/6480]] for other 
similar issues.

Please have my big welcome there.

Have a nice day.

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
>  - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE 
> and TRUNCATE.
>  - All the TCL (Transaction Control Language) SQL definitions for Oracle
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
>  2. TCL SQLs g4 file: 
>  
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
>  3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-B

[jira] [Comment Edited] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-12-08 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17456123#comment-17456123
 ] 

Juan Pan edited comment on COMDEV-399 at 12/9/21, 3:31 AM:
---

Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480] or 
[[#6478|https://github.com/apache/shardingsphere/issues/6478]|[https://github.com/apache/shardingsphere/issues/6478]|https://github.com/apache/shardingsphere/issues/6480]
 [#6480|[https://github.com/apache/shardingsphere/issues/6480]] for other 
similar issues.

Please have my big welcome there.

Have a nice day.


was (Author: panjuan):
Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480] or 
[[#6478|https://github.com/apache/shardingsphere/issues/6478]|[https://github.com/apache/shardingsphere/issues/6480]
 |https://github.com/apache/shardingsphere/issues/6480]]for other similar 
issues.

Please have my big welcome there.

Have a nice day.

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
>  - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE 
> and TRUNCATE.
>  - All the TCL (Transaction Control Language) SQL definitions for Oracle
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
>  2. TCL SQLs g4 file: 
>  
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
>  3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick refere

[jira] [Comment Edited] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-12-08 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17456123#comment-17456123
 ] 

Juan Pan edited comment on COMDEV-399 at 12/9/21, 3:30 AM:
---

Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480] or 
[[#6478|https://github.com/apache/shardingsphere/issues/6478]|[https://github.com/apache/shardingsphere/issues/6480]
 |https://github.com/apache/shardingsphere/issues/6480]]for other similar 
issues.

Please have my big welcome there.

Have a nice day.


was (Author: panjuan):
Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480[] or 
[#6478|https://github.com/apache/shardingsphere/issues/6478] for other similar 
issues.|https://github.com/apache/shardingsphere/issues/6480]

Please have my big welcome there.

Have a nice day.

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
>  - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE 
> and TRUNCATE.
>  - All the TCL (Transaction Control Language) SQL definitions for Oracle
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
>  2. TCL SQLs g4 file: 
>  
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
>  3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE

[jira] [Commented] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-12-08 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17456123#comment-17456123
 ] 

Juan Pan commented on COMDEV-399:
-

Hello, guys,

Recently I received some asking about this issue. Here is an update,
 # This issue has been fixed by [~Liangda Wang]
 # But if you still want to join, please visit 
[#6480|https://github.com/apache/shardingsphere/issues/6480[] or 
[#6478|https://github.com/apache/shardingsphere/issues/6478] for other similar 
issues.|https://github.com/apache/shardingsphere/issues/6480]

Please have my big welcome there.

Have a nice day.

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
>  - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE 
> and TRUNCATE.
>  - All the TCL (Transaction Control Language) SQL definitions for Oracle
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
>  2. TCL SQLs g4 file: 
>  
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
>  3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, 
> [panj...@apache.org|mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Welcome to Apache ShardingSphere first DEV meetup

2021-10-28 Thread Juan Pan
Hello community,


Hope you all do well!


Good news here! We plan to hold the first ShardingSphere Dev meetup on 13th Nov 
in Beijing and ONLINE! (You know, due to the coronavirus, it's likely the 
offline meetup will be canceled.)


This is our first community meetup. We truly pay a lot of effort to prepare it 
and invite our PMC, committers, and partner communities to give some talks on 
Tech and Apache Opensource way!


Very appreciated our mentors, Craig, Willem, Gosling for providing valuable and 
helpful guides to ShardingSphere!
Much thanks to our team [1] and contributors to make this community active and 
diverse so far!


We greatly welcome anyone interested in ShardingSphere or making new friends 
here to join offline and online ;-) ! 


I will append the Livestream link later on, but you will learn the schedule at 
this point,


### Schedule
1. The introduction of community development after becoming TLP, Liang Zhang 
(PMC Chair)
2. New features and the highlight of Apache ShardingSphere 5.0.0, Trista Pan 
(PMC)
3. The best practice of Apache ShardingSphere, Haoran Meng (PMC)
4. How to leverage Apache ShardingSphere, Zhengchao Hu (Seed user)
5. How to start my openSource journey in ShardingSphere community, Guocheng 
Tang(Contributor)
6. OpenSource Roundtable, Sheng Wu (PMC Chair of Skywalking) & Ming Wen (PMC 
Chair of APISIX) & Hualiang Wang (Contributor of APISIX) & Liang Zhang


### Date & venue
Date: 14:00-17:30, 13th Nov
Venue: Intelligent Manufacturing Innovation Center, No.32 Zhongguancun Street, 
Haidian District, Beijing


See you online and offline at this first ShardingSphere meetup!


Warmly regards,
Trista


[1] https://shardingsphere.apache.org/community/en/team/


------
Juan Pan(Trista), Apache ShardingSphere PMC, Apache brpc (Incubating) & AGE 
(Incubating) mentor
Twitter, @tristaZero



Re:Online Open Source Hackathon November 22nd to 26th

2021-10-17 Thread Juan Pan
Hi Justin,


I’d like to give a talk on OS. Plus, I’m still interested in mentor role, but 
didn’t find any necessary doc introducing mentoring work.


Best wishes,
Trista

--
Juan Pan(Trista), Apache ShardingSphere PMC, Apache brpc (Incubating) IPMC
Twitter, @trista86934690


On 10/15/2021 13:42,Justin Mclean wrote:
Hi,

I’m involved in helping out an online Open Source Hackathon that will be held 
on 22nd to 26th November. For more information please see 
https://opensourcehack.cbrin.com.au <https://opensourcehack.cbrin.com.au/>. 
International teams are welcome to apply and we don’t ask that you hand over 
any IP. It would be great to see some teams using Apache projects there. you 
can register your team on the website.

As well teams I’m also looking for a number of speakers (3-5 minutes on an OS 
relevant topic and a pre recorded talk is fine), judges and mentors. The team 
involved have run many hackathons before and are well organised. If you would 
like to be involved please get in touch off list.

Kind Regards,
Justin



Re:FOSS Backstage CFP now open

2021-10-17 Thread Juan Pan
Thanks for your update, Rich. Looks interesting!



--
Juan Pan(Trista), Apache ShardingSphere PMC, Apache brpc (Incubating) IPMC
Twitter, @trista86934690


On 10/15/2021 21:07,Rich Bowen wrote:
https://foss-backstage.de/news/call-participation-now-open

closes on November, 15th (23:59 CET)

If you're not familiar, FOSSBackstage is an *awesome* event, about how
open source works behind the scenes. It covers governance, running
Foundations, codes of conduct, managing people, community management,
and so on.


--
Rich Bowen - rbo...@rcbowen.com
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:[ALC] Request to establish ALC in Guangdong-Hong Kong-Macao Greater Bay Area(GBA) (or Shenzhen, as a starter, if GBA is not applicable)

2021-09-19 Thread Juan Pan
Best wishes, from a member of ALC Beijing!



--
Juan Pan(Trista), Apache member, Apache ShardingSphere PMC, Apache brpc 
(Incubator) & Apache AGE (Incubator) mentor
Twitter, @trista86934690
 


On 09/16/2021 18:33,Eason Chen wrote:
Hi, ComDev PMC

In order to provide software for the public good through the Apache Way in
the Greater Bay Area(GBA), spread awareness on Apache in local communities,
host various events for local open source enthusiasts that include
students, developers, and the business community, share information about
ASF, The Apache Way, and various Apache  projects, bring together project
users and developers. I am very happy to apply to establish an ALC
Chapter(ACL GBA).


ACL GBA Mentors:

- Willem Jiang (Apache ID: ningjiang, ASF member,IPMC member,Apache Local
Community Chapter Beijing Leader, PMC of Apache Apisix, Apache Camel,
Apache CXF, ,Apache RocketMQ, Apache ServiceMix, Apache ServiceComb, Apache
SkyWalking,Apache Shardingsphere,Apache Iotdb )

- Ted Liu (Apache id: tedliu, ASF member, Incubator PMC member, Fundraising
Committee member, Sponsor Ambassador)

- VonGosing (Apache id:vongosling, ASF member, IPMC member)


ACL GBA Members:

- Eason Chen (Apache id: chenguangsheng, Apache EventMesh(incubating) PPMC)

- Ming Wen(Apache ID:wenming,ASF member, Apache Incubator PMC,Apache APISIX
PMC Chair)

- Heng Du(Apache ID:duhengforever Apache RocketMQ PMC)

- Liang Chen (Apache id: chenliang613, ASF member, Apache Incubator PMC,
Apache CarbonData PMC Chair)

- Zhenxu Ke (Apache ID: kezhenxu94, Apache Incubator PMC, Apache SkyWalking
PMC)

- Guocheng Zhang (Apache ID:gosonzhang,Apache InLong (incubating) PPMC)

- XiaoYu (Apache ID: xiaoyu Apache ShenYu (incubator) PPMC)

- Mike Xue (Apache id: mikexue, Apache EventMesh (incubaiting) PPMC)

- Charles Zhang (Apache ID:dockerzhang,Apache InLong (incubating) PPMC)

- Lin Lin(Apache ID: linlin, Apache Pulsar PMC)

- Jerry Shao(Apache ID: jshao,ASF member,IPMC member,Apache Spark PMC)

- Sammi Chen (Apache ID: sammichen, Apache Hadoop PMC, Apache Ozone PMC
Chair)

- Zili Chen(Apache ID: tison, Apache Flink Committer, Apache Curator PMC,
Apache Incubator Committer, Apache InLong (incubating) PPMC)

- Shuai Di(Apache ID: shuaidi, Apache Linkis(incubating) PPMC)


Warm Regards,

Eason Chen


Re: Issue Management in Apache Projects

2021-09-02 Thread Juan Pan
Hi Jarek,


Thanks for your detailed wonderful experience!
What you said triggered me to become interested in airflow community.


> GitHub implemented this great feature that you can convert an issue into a 
> discussion and discussion into issue any time.


Agree with you. ;-)



--
Juan Pan(Trista), Apache member, Apache ShardingSphere PMC, Apache brpc 
(Incubator) & Apache AGE (Incubator) mentor
Twitter, @trista86934690
 


On 09/1/2021 16:34,Jarek Potiuk wrote:
correction: " likely external (deployment/networking issue) rather than a
product bug/feature"

On Wed, Sep 1, 2021 at 10:33 AM Jarek Potiuk  wrote:

The current approach of mine is - if the issue is likely external
(deployment/networking issue) a product bug/feature, or if there are no
reproducible steps - it's a discussion.

The "likely" part is important I think (and that's how I approach it at
least) - is that if i am not 100% sure or lack of information I always
mention that this is a guess and unless more information is provided, we
will treat it as discussion (I believe lack of reproducible steps is pretty
much always a "discussion" by default).

Previously I was closing such issues (but that was a bit too "strong") and
might put-off some people. But recently GitHub implemented this great
feature that you can convert an issue into a discussion and discussion into
issue any time. This is a great feature, I think. Discussions can remain
open forever if the user will not provide more information (hey, they are
discussions!) and they are not "firm closed" either.

I think Discussions went a long way for us in Airflow - we started using
them pretty much immediately after they were introduced  several months ago
(we like to try new things!) and initially they had very little "uptake".
But this changed over time, people started to use them when we kept
answering there and even started to mark things as "answered" (which is
akin to Stack Overflow). Also after we introduced the template which is a
bit annoying to fill-in (you have to pick version, get the operating system
information etc. etc. as required fields) and we added direct links to "if
you have no reproducible step [OPEN DISCUSSION]", I already noticed that
people are opening more discussions than issues resulting from deleting the
template and entering free question/general rambling,

I think the important thing is that we treat discussions seriously, and
engage with users and discussions are not left "unattended". On the other
hand it's perfectly ok for us to ask for more information etc. and forget
completely and immediately about an open discussion. Unless the author or
other user comes back with more information that is - it's perfectly ok for
a discussion to "die-out", it's not ok for an issue to do so.

J.


On Wed, Sep 1, 2021 at 9:37 AM Juan Pan  wrote:

Hi fellows,


Thanks for your sharing, ShardingSphere community is still using GitHub
template and triaging issues with labels by our committers.
I still found recently many communities opened discussion section on
GitHub. I wonder how to leverage Issue and discussion section together?
Which questions belong to Discussion section and which ones are supposed to
put in Issue section?
Look forward to your experience and ideas.


Best wishes,
Trista



--
Juan Pan(Trista), Apache member, Apache ShardingSphere PMC, Apache brpc
(Incubator) & Apache AGE (Incubator) mentor
Twitter, @trista86934690



On 08/29/2021 00:46,Jarek Potiuk wrote:
Some update from the most recent attempt of Apache Airflow to improve our
issue handling using some "new-ish" features available in GitHub: Issue
Forms and GitHub Discussions.

TL;DR; We don not have yet results but we think in Airflow making the full
use of GitHub Form Templates and endorsing the use of GitHub Discussions
where appropriate (and at the issue entry time), should help us a lot by
"gating" issues better, improving their quality and getting our users into
"pre-clasifying" the issues (or indeed using Discussions where it is a
better choice).

*Problems we observed:*

* with the standard MARKDOWN templates we have many issues where people
did
not provide useful information (version of airflow, operating system etc.)
* we had a number of issues where users would simply delete the markdown
template content straight away and replaced with their own issue
description - without "reproducible steps", or really to ask a question
about their deployment problems without even trying to attempt to
investigate it.
We've ended up with many "discussion" kind of question posted as issues.
Then we would "convert" such issues into discussion but it r

Re: Issue Management in Apache Projects

2021-09-01 Thread Juan Pan
Hi fellows,


Thanks for your sharing, ShardingSphere community is still using GitHub 
template and triaging issues with labels by our committers.
I still found recently many communities opened discussion section on GitHub. I 
wonder how to leverage Issue and discussion section together? Which questions 
belong to Discussion section and which ones are supposed to put in Issue 
section? 
Look forward to your experience and ideas.


Best wishes,
Trista


--
Juan Pan(Trista), Apache member, Apache ShardingSphere PMC, Apache brpc 
(Incubator) & Apache AGE (Incubator) mentor
Twitter, @trista86934690
 


On 08/29/2021 00:46,Jarek Potiuk wrote:
Some update from the most recent attempt of Apache Airflow to improve our
issue handling using some "new-ish" features available in GitHub: Issue
Forms and GitHub Discussions.

TL;DR; We don not have yet results but we think in Airflow making the full
use of GitHub Form Templates and endorsing the use of GitHub Discussions
where appropriate (and at the issue entry time), should help us a lot by
"gating" issues better, improving their quality and getting our users into
"pre-clasifying" the issues (or indeed using Discussions where it is a
better choice).

*Problems we observed:*

* with the standard MARKDOWN templates we have many issues where people did
not provide useful information (version of airflow, operating system etc.)
* we had a number of issues where users would simply delete the markdown
template content straight away and replaced with their own issue
description - without "reproducible steps", or really to ask a question
about their deployment problems without even trying to attempt to
investigate it.
We've ended up with many "discussion" kind of question posted as issues.
Then we would "convert" such issues into discussion but it required
maintainers comment and explanation. Mostly it was because the users did
not even know they can (and should) open a discussion instead.
* the markdown templates were difficult to read/fill in - it was not clear
what you should do with the parts which were relevant - we left
instructions in the comments, which were sometimes left/sometimes deleted,
generally the issues were "structur-ish" rather than "structured".
* often people opened Airflow 1.10 issues even if it reached End-Of-Life in
June (they should open discussions instead - which is still great because
even if there are no way we will handle the issues but either us or other
users can help them still for workaround or even directing t)

*Discovery*

Then we discovered that we already can use "Forms for GitHub Issues" (beta
feature but it is available for everyone now -
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms).
This looked like not only a great way to structure and pre-classify the
issues (by the users) but also seems to be a great communication tool with
the users. We believe it will allow us to address most of the issues above.
Basically instead of committers having to explain the rules over and over
and instruct the users how they should report the issues - it's all there
explained really clearly and nicely while the user enters the issue.

*Solution*

We defined forms with required fields that cannot be "skipped". also when
you do not fill a "textarea" entry it is marked as "Not Provided" rather
than deleted. We added helpful comments and hints as well as explanation in
which cases you should use GitHub Discussions (including lack of ability to
select 1.10 version and link to open GitHub Discussions) instead of issues
(with direct link). We've added logo and welcoming message to "soften" the
"more formalized form entry need. We made it clear that if there is no
reproduction steps, the users should open GitHub Discussion instead. We've
added more issue types - we've separated "Airflow Core", "Airflow
Providers" (we have more than 70 providers that extend Airflow's
capabilities) and "Airflow Docs" issues - automatically applying correct
labels, so we do not have to do triage ourselves. We also created a
"maintainer only" issue type with allows to enter pretty much free-form
information (for tasks/todos etc.) and we've added a required "checkbox" to
confirm you are maintainer, to discourage people from using it to raise
their "free form" questions there. We wanted it to be "easy" for committers
to enter such "free form" issue but "not easy" to skip structured
information by the users - at the same time guiding them to use
"Discussions" which are much "easier" to enter any content and ask
questions.

What is even more - this st

Re: [Question] Deliver failure on annou...@apache.org

2021-06-21 Thread Juan Pan
Hi everyone,


Thanks Sheng and Xiangdong, finically, I succeeded in sending the release email 
to announce@ml.


Here are tips for anyone who has the same confusion,
- Please make sure your email in `plain text mode`
- Please send the email using your apache.org mailbox


I am unsure they are requirements or not, but that works for me.


Thanks,
Trista



--
Juan Pan(Trista), Apache ShardingSphere PMC, Apache brpc (Incubating) IPMC
Twitter, @trista86934690


On 06/20/2021 21:03,Sheng Wu wrote:
Hi, Juan

What does the reply say? After you changed the content to plain text?
Are you still using @apache.org mailbox to send?

Sheng Wu 吴晟
Twitter, wusheng1108


Juan Pan  于2021年6月20日周日 下午6:22写道:

Hi Xiangdong,


Appreciated your response.
I took your advice and chose `more option` -> `plain text mode` but it
didn’t work...




--
Juan Pan(Trista), Apache ShardingSphere PMC
Twitter, @trista86934690


On 06/20/2021 16:27,Xiangdong Huang wrote:
Hi Juan,

The email must be in pure-text format.

If you are using Gmail, just click the icon (vertical 3 spots), and
choose "pure text" (纯文本模式).

Best,

---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院

Juan Pan  于2021年6月20日周日 下午3:56写道:

Hi everyone,




Hope you doing well and keeping safe.

I just wonder anyone encountered the following `failure notice` from `
annou...@apache.org`? How do you deal with it?




We are going to announce our release on d...@shardingsphere.apache.org and
annou...@apache.org. However, announce@ml rejected my email with the
following notice, but dev@ml worked well. I tried to modify the content
and resent it many times but still failed. :(




Looking forward to your any comment or response!




```
Hi. This is the qmail-send program at apache.org.
I'm afraid I wasn't able to deliver your message to the following
addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

:
ezmlm-reject: fatal: Sorry, a message part has an unacceptable MIME
Content-Type: 'text/html' (#5.2.3)

--- Below this line is a copy of the message.

```



Thanks in advance,

Trista





------
Juan Pan(Trista), Apache ShardingSphere PMC
Twitter, @trista86934690


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: [Question] Deliver failure on annou...@apache.org

2021-06-20 Thread Juan Pan
Hi Xiangdong,


Appreciated your response. 
I took your advice and chose `more option` -> `plain text mode` but it didn’t 
work...



--
Juan Pan(Trista), Apache ShardingSphere PMC
Twitter, @trista86934690


On 06/20/2021 16:27,Xiangdong Huang wrote:
Hi Juan,

The email must be in pure-text format.

If you are using Gmail, just click the icon (vertical 3 spots), and
choose "pure text" (纯文本模式).

Best,

---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院

Juan Pan  于2021年6月20日周日 下午3:56写道:

Hi everyone,




Hope you doing well and keeping safe.

I just wonder anyone encountered the following `failure notice` from 
`annou...@apache.org`? How do you deal with it?




We are going to announce our release on d...@shardingsphere.apache.org and 
annou...@apache.org. However, announce@ml rejected my email with the following 
notice, but dev@ml worked well. I tried to modify the content and resent it 
many times but still failed. :(




Looking forward to your any comment or response!




```
Hi. This is the qmail-send program at apache.org.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

:
ezmlm-reject: fatal: Sorry, a message part has an unacceptable MIME 
Content-Type: 'text/html' (#5.2.3)

--- Below this line is a copy of the message.

```



Thanks in advance,

Trista




------
Juan Pan(Trista), Apache ShardingSphere PMC
Twitter, @trista86934690


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


[Question] Deliver failure on annou...@apache.org

2021-06-20 Thread Juan Pan
Hi everyone,




Hope you doing well and keeping safe.

I just wonder anyone encountered the following `failure notice` from 
`annou...@apache.org`? How do you deal with it?




We are going to announce our release on d...@shardingsphere.apache.org and 
annou...@apache.org. However, announce@ml rejected my email with the following 
notice, but dev@ml worked well. I tried to modify the content and resent it 
many times but still failed. :(




Looking forward to your any comment or response!




```
Hi. This is the qmail-send program at apache.org.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

:
ezmlm-reject: fatal: Sorry, a message part has an unacceptable MIME 
Content-Type: 'text/html' (#5.2.3)

--- Below this line is a copy of the message.

```



Thanks in advance,

Trista




------
Juan Pan(Trista), Apache ShardingSphere PMC
Twitter, @trista86934690



Re:Welcome our new ComDev PMC Chair

2021-04-24 Thread Juan Pan
Congrats Swapnil. :) 



---
Email:panj...@apache.org
Juan Pan(Trista) Apache ShardingSphere


On 04/23/2021 22:55,Sharan Foga wrote:
Hi Everyone

I'd like to announce that we have a new PMC Chair for ComDev - Swapnil Mane.

Swapnil is amazingly dedicated and has done some great work for ComDev over the 
last few years including initiating the Apache Local Community initiative.

Please join me in congratulating Swapnil on his new role!

Thanks
Sharan

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


[CFP] ApacheCon Asia 2021

2021-03-31 Thread Juan Pan
Hi everyone,


I am uncertain many of you may miss this good news that Call for Presentations 
for ApacheCon Asia 2021 has been open [1]! 


This is a kind reminder and welcome greeting for everyone. 


You are welcomed to submit your proposal here [2] to share your excellent ideas 
or experiences with people worldwide, especially in the Asia area!


How can I get the details about every track and the schedule? I assume most of 
you will have such questions. :-) Then I have this answer [3] for you.


Warmly regards,
Trista


[1] https://blogs.apache.org/conferences
[2] https://acasia2021.jamhosted.net
[3] https://apachecon.com/acasia2021/cfp.html




 
   Juan Pan (Trista)
 
Senior DBA & Apache member &PMC of Apache ShardingSphere
E-mail: panj...@apache.org





[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere Parser

2021-03-30 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17311241#comment-17311241
 ] 

Juan Pan commented on COMDEV-385:
-

Hi [~ThanoshanMV],

I gave a look at your proposal, and it looks fine with me.


Actually, you have already done a few good jobs and had some communication with 
this community. So I believe you are eligible for this project. Go ahead. :)

> Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere 
> Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: Google Summer of Code 2021 Mentor Registration GSOC

2021-03-14 Thread Juan Pan
Hi Maxim,


Thanks for your pointer.


I am curious if I am a PMC of the project which I want to mentor for, it is 
still required to request ACK from the PMC of the corresponding community? I 
mean, I request ACK from myself or other PMCs. A little odd...


If I miss something, please correct me. 
Thanks for your help!


Cheers,
Trista
 




 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org


On 03/14/2021 22:27, Maxim Solodovnik wrote:
Dear PMCs,

I'm happy to announce that the ASF has made it onto the list of
accepted organizations for
Google Summer of Code 2021! [1,2]

It is now time for mentors to sign up, so please pass this email on to
your community
and podlings. If you aren’t already subscribed to ment...@community.apache.org
you should do so now else you might miss important information.

Mentor signup requires two steps: mentor signup in Google's system [3]
and PMC acknowledgement.

If you want to mentor a project in this year's SoC you will have to

1. Be an Apache committer. (not a MUST)
2. Request an acknowledgement from the PMC for which you want to mentor
projects. Use the below template and *do not forget to copy
ment...@community.apache.org*. We will use the email address you
indicate to send the invite to be a mentor for Apache.

PMCs, read carefully please.

We request that each mentor is acknowledged by a PMC member. This is to ensure
the mentor is in good standing with the community. When you receive a
request for
acknowledgement, please ACK it and cc ment...@community.apache.org

Lastly, it is not yet too late to record your ideas in Jira (see my
previous emails for details).
Students will now begin to explore ideas so if you haven’t already
done so, record your ideas
immediately!

Best regards

Maxim

mentor request email template:

to: private@.apache.org
cc: ment...@community.apache.org
subject: GSoC 2021 mentor request for 

 PMC,

please acknowledge my request to become a mentor for Google Summer of
Code 2021 projects for Apache .

I would like to receive the mentor invite to 





[1] https://summerofcode.withgoogle.com/organizations/
[2] https://summerofcode.withgoogle.com/organizations/5750272384565248/
[3] https://summerofcode.withgoogle.com/

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:ASF is accepted as mentoring organisation for GSoC 2021

2021-03-14 Thread Juan Pan
Hi Maxim,


Thanks for your update.
I guess the next step for prospective ASF mentors is to register with the GSoC 
webapp, 
and request to become a mentor for the ASF organization [1], isn't it?
 
If GSoC webapp points [2], actually I have no idea on the specific steps 
how to register with that since I only see the LOGIN link on the right top of 
the header. 
Could you give me some pointers? Thanks in advance.


[1]  https://community.apache.org/gsoc.html
[2] https://summerofcode.withgoogle.com/about/


Regards,
Trista


 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 03/13/2021 17:24,Maxim Solodovnik wrote:
Hello All,

I am pleased to announce ASF is accepted as mentoring organisation for GSoC 2021

Please ensure
* mentors of your PMC are subscribed to mentors@community.a.o (to get
all recent announcements, ask question)
* your GSoC ideas are recorded in JIRA (more details are here [1])
* you are ready to get Student proposals (March 30, 2021 - April 13, 2021)


[1] https://community.apache.org/gsoc.html

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere Parser

2021-03-14 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17301091#comment-17301091
 ] 

Juan Pan commented on COMDEV-385:
-

Hi [~FourierX9],

Thanks for your comment.

It is much likely that this topic will be assigned to Thanoshan MV since he 
came earlier and still did a nice job at some of the preliminary issues.

However, we plan to publish some similar projects before next Tuesday. If you 
are still interested in that, please keep an eye on issues with the prefix ` 
Apache ShardingSphere:`

Thanks,
Trista

 

> Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere 
> Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Commented] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-03-07 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17296845#comment-17296845
 ] 

Juan Pan commented on COMDEV-399:
-

Hi [~Liangda Wang],

Please have my welcome. :)

Also, I saw your prompt action on gitHub,  good initiative. 

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
>  - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE 
> and TRUNCATE.
>  - All the TCL (Transaction Control Language) SQL definitions for Oracle
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
>  2. TCL SQLs g4 file: 
>  
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
>  3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, 
> [panj...@apache.org|mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: One year anniversary of ALC Beijing

2021-03-07 Thread Juan Pan
Welcome on board. :)




 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 03/4/2021 14:49,Xin Wang wrote:
Thank you Ted. Added.

Thanks and Regards,
Xin

Liu Ted  于2021年3月4日周四 下午2:33写道:

Xin, You may reach me through Wechat tedliu002. I'll add you to the ALC
Beijing group.

Ted Liu

在 2021 年 3月 月 4 日週四,時間:13:32 , Dianjin Wang
 寫道:
+1!
Thanks to ALC Beijing, it provides a way to gather local Apache
projects contributors, developers, and users.

Best,
Dianjin Wang

On Thu, Mar 4, 2021 at 12:54 PM Aditya Sharma 
wrote:

Wow! Kudos to you all!

Thanks and Regards,
Aditya Sharma

On Tue, Mar 2, 2021 at 8:46 PM Jarek Potiuk  wrote:

Congrats! Good job!

On Tue, Mar 2, 2021 at 6:08 AM Roman Shaposhnik 
wrote:

This is really amazing! Huge kudos to all who made it happen -- I
wish we
had more ALCs like that!

Thanks,
Roman.

On Fri, Feb 26, 2021 at 4:09 PM Willem Jiang https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2]
https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing+Events
[3]]



https://podcasts.apple.com/us/podcast/alc-beijing-podcast/id1523278501?uo=4&at=1001lsYj
[4]https://www.ximalaya.com/keji/37853515/
[5]https://github.com/alc-beijing/translation


Best regards,

Willem


Twitter: willemjiang
Weibo: 姜宁willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org





--
+48 660 796 129



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Thanks,
Xin


Re:One year anniversary of ALC Beijing

2021-02-26 Thread Juan Pan
Hi Willem,


Thanks for your summary of our last year. 
I did not realize we have gained many of the achievements. Thanks for 
everyone's efforts!
Hope we can have a better `new year` with our mission.


Cheers,
Trista





---
Email:panj...@apache.org
Juan Pan(Trista) Apache ShardingSphere


On 02/27/2021 08:09,Willem Jiang wrote:
Hi


This is Willem Jiang, the chapter leader of Apache Local Community
Beijing[1], and I am beyond thrilled to share with you the joy and
excitement of ALC Beijing’s one year anniversary.


ALC Beijing was officially founded on February 27th, 2020, with a
mission of promoting Apache way and Open Source culture in China. ALC
Beijing is committed to bringing local open source enthusiasts
together by hosting events and publishing articles . By sharing open
source development experience, ALC Beijing encourages more people
(especially the university students) to participate in ASF projects.
ALC Beijing also plays a role of facilitating the mutual cooperations
of ASF projects. ALC Beijing aims to advocate ASF projects by working
closely with the local developer teams to host meetups, and sharing
the Open Source governance experience of ASF by translating the policy
documentations.


Over a year, ALC Beijing has reached a milestone in community culture
building. Despite the fact that due to the pandemic we were not able
to host the events in half of last year, we still managed to host 2
ALC meetups and participated in 2 co-events[2]. We have met hundreds
of Open Source enthusiasts in Beijing through these events. We also
started a local social media public account (ALC Beijing official
WeChat public account) to publish 60 articles which focus on the
interpretation of Apache Way, the latest updates of ASF projects, and
other related information about local projects. Now The account has
achieved 1,600 subscribers.


ALC Beijing also has published 9 original podcast episodes[3][4] on
its own channel, and has achieved over 4,600 plays. The podcast
included the sharing of experience from those who just graduated from
Apache Incubator, and the success stories which could encourage more
university students to participate in open source projects.


ALC Beijing further accelerated the progress of culture-building by
translating Apache 20 Anniversary documentary subtitles, Apache
Incubator Cookbook and Apache License[5] so that the enthusiasts in
China could enjoy the work with fewer language barriers.


With all the help from Apache and members, ALC Beijing is determined
to serve everyone who is interested in open source. We look forward to
sharing with you about more accomplishments of ALC Beijing in the near
future.

[1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing+Events
[3]]https://podcasts.apple.com/us/podcast/alc-beijing-podcast/id1523278501?uo=4&at=1001lsYj
[4]https://www.ximalaya.com/keji/37853515/
[5]https://github.com/alc-beijing/translation


Best regards,

Willem


Twitter: willemjiang
Weibo: 姜宁willem

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:Moderators needed for community.apache.org lists

2021-02-22 Thread Juan Pan
Thank every one of you. : )
Here is a successful subscribing case.




 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/23/2021 00:22,Craig Russell wrote:
It appears that there are not enough moderators for the mentors@ list.

If you can volunteer to moderate this list (and the students@ list seems to 
have the same moderators) please speak up on this list.

I'll volunteer to moderate both lists at this time.

Regards,
Craig

Craig L Russell
c...@apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: Invitation to participate with the ASF at GSoC 2021

2021-02-22 Thread Juan Pan
Hi Maxim,


Thanks for your efforts.
Finally, I succeeded in subscribing mentor@ml today. : )


Best wishes,
Trista


 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/23/2021 10:45,Maxim Solodovnik wrote:
Hello All,

There seems to be moderators at mentors@communitity.a.o can you please try
again to subscribe?

On Sun, 21 Feb 2021 at 12:22, Maxim Solodovnik  wrote:

Hello All,

sorry for the late response I was hoping someone can help
I have asked to be added as moderator to mentors@ ML
https://issues.apache.org/jira/browse/INFRA-21449
So hopefully can check what is going on :)

On Sat, 20 Feb 2021 at 12:29, Kevin A. McGrail 
wrote:

I have no insight, our Jira was closed, and my escalation to users@infra
has garnered no attention.  Perhaps escalate to presid...@apache.org?
We need working email resources.

On 2/17/2021 11:16 PM, Juan Pan wrote:
Hi everyone,




I am curious the issue failing subscribing mentor@c.a.o mail list has
any update here?

Or are there any successful cases?




Thanks a lot.





----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/9/2021 16:30,Maxim Solodovnik wrote:
@All,

can anyone help?
INFRA send to dev@ mailing list:
https://issues.apache.org/jira/browse/INFRA-20205

I can try to add myself as moderator can it help?

On Thu, 4 Feb 2021 at 14:06, Vanjikumaran Sivajothy 
wrote:

I also had the same issue and I used my apache email address.

On Wed, Feb 3, 2021 at 11:04 PM Juan Pan  wrote:

Hi,




Update here.




I tried to subscribe mentors-subscr...@community.apache.org once again.

Until now, I received the `confirm reply` but no `welcome reply`.

It looks like subscribing failed just like [1] said.



[1]


https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E


----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 14:09,Juan Pan wrote:
Hi,


Looks like my email app missed the link [1] in my last email.


Sorry for that.


[1]


https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E




--------
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 11:26,Juan Pan wrote:
Hi Maxim,


I still ran into the same issue earlier, and my ask-for-help email did
not
get settled,
but it can show us more details now.
I do not know whether we did any changes so far?
I will try subscribing to it later and give my update.


Best wishes,
Trista


[1] [Mentor ML] How to subscribe mentor mail list?






--------
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 10:30,Maxim Solodovnik wrote:
I'm not aware of such limitation :(

@All can someone check what are the rules for mentors@community.a.o?
Maybe subscriptions should be moderated?

On Wed, 3 Feb 2021 at 07:53, Xiangdong Huang 
wrote:

Hi Maxim,

I see the "Currently happening" chapter on the webpage, it is cool!
Thanks
for your huge effort.

Just want to confirm that are there some limitations for subscribing
mentors@c.a.o?
e.g., the subscriber must be Member, IPMC, or PMC, etc..
Or must use @apache.org mail address (like sending email to
announce@a.g
)?
(As I have sent an email to mentors-subscribe@c.a.o, but did not
receive
responses. :(.

Best,
---
Xiangdong Huang



Maxim Solodovnik  于2021年2月2日周二 下午4:55写道:

Hello Xiangdong Huang,

On Tue, 2 Feb 2021 at 15:34, Xiangdong Huang 
wrote:

Hi,

According to [1], if we propose projects/tasks to GSoc, we need to
subscribe the mailing list ment...@community.apache.org.


This is still required



Are there any requirements to subscribe to the mailing list? I
remember I
failed to subscribe to it and miss all applications.


This time we will try to avoid such misbehavior
This page https://community.apache.org/gsoc.html now contains the
"Currently happening" block
so you can do sort of long pooling :)

Additionally I expect to get some early reports like "I'm not receiving
emails"
And I'll add dev@ list for your PMC to all announces (more manual work,
but
it worth so) :)



[1] http://community.apache.org/gsoc.html

Best,
---
Xiangdong Huang

Alan Carvalho de Assis  于2021年2月1日周一 下午8:05写道:

Thank you Maxim!

Nathan, do you know if our JIRA Infra is working or do we need to ask
Apache Infra to help us?

BR,

Alan

On 2/1/21, Maxim Solodovnik  

[jira] [Updated] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-18 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-399:

Description: 
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]
h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
h3. Task

This issue is to proofread the following definitions,
 - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE.
 - All the TCL (Transaction Control Language) SQL definitions for Oracle

You can *learn more* 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these target SQLs above, you will find that these 
definitions will involve some basic elements of Oracle SQL. No doubt, these 
elements are included in this task as well.
h3. Relevant Skills

1. Master JAVA language
 2. Have a basic understanding of Antlr g4 file
 3. Be familiar with Oracle SQLs
h3. Targets files

1. DDL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
 2. TCL SQLs g4 file: 
 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
 3. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
 2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, 
[panj...@apache.org|mailto:panj...@apache.org]

  was:
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread the following definitions,

- All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
- All the TCL (Transaction Control Language) SQL definitions for Oracle 
- ALTER SYSTEM


You can *learn more* 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/or

[jira] [Comment Edited] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-18 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17286332#comment-17286332
 ] 

Juan Pan edited comment on COMDEV-399 at 2/18/21, 8:04 AM:
---

Hi anyone who are interested in this one,

 

If you want to have a preliminary task, 
[#9426|https://github.com/apache/shardingsphere/issues/9426] will be a good 
one. Please comment on #9426 to let me know.

 

Plus, suppose you want to take this one as your GSoC 2021, please comment here.

 

Best wishes,

Trista 


was (Author: panjuan):
Hi anyone who are interested in this one,

If you want to have a preliminary task, 
[#9426|https://github.com/apache/shardingsphere/issues/9426] will be a good one.

 

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
> - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
> TRUNCATE. 
> - All the TCL (Transaction Control Language) SQL definitions for Oracle 
> - ALTER SYSTEM
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
> 2. Have a basic understanding of Antlr g4 file
> 3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
> 2. TCL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
> 3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
> 2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Commented] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-18 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17286332#comment-17286332
 ] 

Juan Pan commented on COMDEV-399:
-

Hi anyone who are interested in this one,

If you want to have a preliminary task, 
[#9426|https://github.com/apache/shardingsphere/issues/9426] will be a good one.

 

> Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for 
> ShardingSphere Parser
> --
>
> Key: COMDEV-399
> URL: https://issues.apache.org/jira/browse/COMDEV-399
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: ShardingSphere, gsoc2021, mentor
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the following definitions,
> - All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
> TRUNCATE. 
> - All the TCL (Transaction Control Language) SQL definitions for Oracle 
> - ALTER SYSTEM
> You can *learn more* 
> [here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].
> As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these target SQLs above, you will find that these 
> definitions will involve some basic elements of Oracle SQL. No doubt, these 
> elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
> 2. Have a basic understanding of Antlr g4 file
> 3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DDL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
> 2. TCL SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
> 3. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
> 2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Updated] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-17 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-399:

Description: 
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread the following definitions,

- All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
- All the TCL (Transaction Control Language) SQL definitions for Oracle 
- ALTER SYSTEM


You can *learn more* 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these target SQLs above, you will find that these 
definitions will involve some basic elements of Oracle SQL. No doubt, these 
elements are included in this task as well.

h3. Relevant Skills

1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Oracle SQLs

h3. Targets files

1. DDL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
2. TCL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
3. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]

h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]

h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]

  was:
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread the following definitions,

- All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
- All the TCL (Transaction Control Language) SQL definitions for Oracle 
- ALTER SYSTEM

You can learn more 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-data

[jira] [Updated] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-17 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-399:

Description: 
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread the following definitions,

- All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
- All the TCL (Transaction Control Language) SQL definitions for Oracle 
- ALTER SYSTEM

You can learn more 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these target SQLs above, you will find that these 
definitions will involve some basic elements of Oracle SQL. No doubt, these 
elements are included in this task as well.

h3. Relevant Skills

1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Oracle SQLs

h3. Targets files

1. DDL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
2. TCL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
3. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]

h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]

h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]

  was:
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread 
-All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
-All the TCL (Transaction Control Language) SQL definitions for Oracle 
-ALTER SYSTEM
You can learn more 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#

[jira] [Created] (COMDEV-399) Apache ShardingSphere: Proofread the DDL/TCL SQL definitions for ShardingSphere Parser

2021-02-17 Thread Juan Pan (Jira)
Juan Pan created COMDEV-399:
---

 Summary: Apache ShardingSphere: Proofread the DDL/TCL SQL 
definitions for ShardingSphere Parser
 Key: COMDEV-399
 URL: https://issues.apache.org/jira/browse/COMDEV-399
 Project: Community Development
  Issue Type: Improvement
  Components: GSoC/Mentoring ideas
Reporter: Juan Pan


h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]

h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]

h3. Task

This issue is to proofread 
-All the DDL SQL definitions for Oracle *except for* ALTER, DROP, CREATE and 
TRUNCATE. 
-All the TCL (Transaction Control Language) SQL definitions for Oracle 
-ALTER SYSTEM
You can learn more 
[here|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Types-of-SQL-Statements.html#GUID-2E008D4A-F6FD-4F34-9071-7E10419CA24D].

As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these target SQLs above, you will find that these 
definitions will involve some basic elements of Oracle SQL. No doubt, these 
elements are included in this task as well.

h3. Relevant Skills

1. Master JAVA language
2. Have a basic understanding of Antlr g4 file
3. Be familiar with Oracle SQLs

h3. Targets files

1. DDL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DDLStatement.g4]
2. TCL SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/TCLStatement.g4]
3. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]

h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]

h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Updated] (COMDEV-385) Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere Parser

2021-02-17 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-385:

Summary: Apache ShardingSphere: Proofread the DML SQL definitions for 
ShardingSphere Parser  (was: Apache ShardingSphere: Proofread the SQL 
definitions for ShardingSphere Parser)

> Apache ShardingSphere: Proofread the DML SQL definitions for ShardingSphere 
> Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: Invitation to participate with the ASF at GSoC 2021

2021-02-17 Thread Juan Pan
Hi everyone,




I am curious the issue failing subscribing mentor@c.a.o mail list has any 
update here?

Or are there any successful cases?




Thanks a lot.





 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/9/2021 16:30,Maxim Solodovnik wrote:
@All,

can anyone help?
INFRA send to dev@ mailing list:
https://issues.apache.org/jira/browse/INFRA-20205

I can try to add myself as moderator can it help?

On Thu, 4 Feb 2021 at 14:06, Vanjikumaran Sivajothy 
wrote:

I also had the same issue and I used my apache email address.

On Wed, Feb 3, 2021 at 11:04 PM Juan Pan  wrote:

Hi,




Update here.




I tried to subscribe mentors-subscr...@community.apache.org once again.

Until now, I received the `confirm reply` but no `welcome reply`.

It looks like subscribing failed just like [1] said.



[1]

https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E


----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 14:09,Juan Pan wrote:
Hi,


Looks like my email app missed the link [1] in my last email.


Sorry for that.


[1]

https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E




----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 11:26,Juan Pan wrote:
Hi Maxim,


I still ran into the same issue earlier, and my ask-for-help email did
not
get settled,
but it can show us more details now.
I do not know whether we did any changes so far?
I will try subscribing to it later and give my update.


Best wishes,
Trista


[1] [Mentor ML] How to subscribe mentor mail list?






--------
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 10:30,Maxim Solodovnik wrote:
I'm not aware of such limitation :(

@All can someone check what are the rules for mentors@community.a.o?
Maybe subscriptions should be moderated?

On Wed, 3 Feb 2021 at 07:53, Xiangdong Huang  wrote:

Hi Maxim,

I see the "Currently happening" chapter on the webpage, it is cool!
Thanks
for your huge effort.

Just want to confirm that are there some limitations for subscribing
mentors@c.a.o?
e.g., the subscriber must be Member, IPMC, or PMC, etc..
Or must use @apache.org mail address (like sending email to announce@a.g
)?
(As I have sent an email to mentors-subscribe@c.a.o, but did not receive
responses. :(.

Best,
---
Xiangdong Huang



Maxim Solodovnik  于2021年2月2日周二 下午4:55写道:

Hello Xiangdong Huang,

On Tue, 2 Feb 2021 at 15:34, Xiangdong Huang  wrote:

Hi,

According to [1], if we propose projects/tasks to GSoc, we need to
subscribe the mailing list ment...@community.apache.org.


This is still required



Are there any requirements to subscribe to the mailing list? I
remember I
failed to subscribe to it and miss all applications.


This time we will try to avoid such misbehavior
This page https://community.apache.org/gsoc.html now contains the
"Currently happening" block
so you can do sort of long pooling :)

Additionally I expect to get some early reports like "I'm not receiving
emails"
And I'll add dev@ list for your PMC to all announces (more manual work,
but
it worth so) :)



[1] http://community.apache.org/gsoc.html

Best,
---
Xiangdong Huang

Alan Carvalho de Assis  于2021年2月1日周一 下午8:05写道:

Thank you Maxim!

Nathan, do you know if our JIRA Infra is working or do we need to ask
Apache Infra to help us?

BR,

Alan

On 2/1/21, Maxim Solodovnik  wrote:
Hello Nathan,

On Mon, 1 Feb 2021 at 10:11, Nathan Hartman <
hartman.nat...@gmail.com>
wrote:

On Sun, Jan 31, 2021 at 9:53 PM Maxim Solodovnik <
solomax...@gmail.com>
wrote:

Hello Alan,

On Mon, 1 Feb 2021 at 04:36, Alan Carvalho de Assis <
acas...@gmail.com

wrote:

Thank you Sallu, Maxim and Kevin!

We will collect ideas for the projects and create a page where


please re-read these two pages:


https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this







https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html


you don't need to create separate ideas page,
just label your JIRAs and ideas will be added to this
https://s.apache.org/gsoc2021ideas list


NuttX isn't using Jira.

We are using GitHub issues.

Do you support that?

Of course, I think we *could* list on Jira the issues we'd like to
propose, for the purposes of the GSoC campaign.

Which approach do you recommend?



Re: Invitation to participate with the ASF at GSoC 2021

2021-02-03 Thread Juan Pan
Hi,




Update here.




I tried to subscribe mentors-subscr...@community.apache.org once again.

Until now, I received the `confirm reply` but no `welcome reply`.

It looks like subscribing failed just like [1] said.



[1] 
https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E


 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 14:09,Juan Pan wrote:
Hi,


Looks like my email app missed the link [1] in my last email.


Sorry for that.


[1] 
https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E




----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 11:26,Juan Pan wrote:
Hi Maxim,


I still ran into the same issue earlier, and my ask-for-help email did not get 
settled,
but it can show us more details now.
I do not know whether we did any changes so far?
I will try subscribing to it later and give my update.


Best wishes,
Trista


[1] [Mentor ML] How to subscribe mentor mail list?






----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 10:30,Maxim Solodovnik wrote:
I'm not aware of such limitation :(

@All can someone check what are the rules for mentors@community.a.o?
Maybe subscriptions should be moderated?

On Wed, 3 Feb 2021 at 07:53, Xiangdong Huang  wrote:

Hi Maxim,

I see the "Currently happening" chapter on the webpage, it is cool! Thanks
for your huge effort.

Just want to confirm that are there some limitations for subscribing
mentors@c.a.o?
e.g., the subscriber must be Member, IPMC, or PMC, etc..
Or must use @apache.org mail address (like sending email to announce@a.g)?
(As I have sent an email to mentors-subscribe@c.a.o, but did not receive
responses. :(.

Best,
---
Xiangdong Huang



Maxim Solodovnik  于2021年2月2日周二 下午4:55写道:

Hello Xiangdong Huang,

On Tue, 2 Feb 2021 at 15:34, Xiangdong Huang  wrote:

Hi,

According to [1], if we propose projects/tasks to GSoc, we need to
subscribe the mailing list ment...@community.apache.org.


This is still required



Are there any requirements to subscribe to the mailing list? I
remember I
failed to subscribe to it and miss all applications.


This time we will try to avoid such misbehavior
This page https://community.apache.org/gsoc.html now contains the
"Currently happening" block
so you can do sort of long pooling :)

Additionally I expect to get some early reports like "I'm not receiving
emails"
And I'll add dev@ list for your PMC to all announces (more manual work,
but
it worth so) :)



[1] http://community.apache.org/gsoc.html

Best,
---
Xiangdong Huang

Alan Carvalho de Assis  于2021年2月1日周一 下午8:05写道:

Thank you Maxim!

Nathan, do you know if our JIRA Infra is working or do we need to ask
Apache Infra to help us?

BR,

Alan

On 2/1/21, Maxim Solodovnik  wrote:
Hello Nathan,

On Mon, 1 Feb 2021 at 10:11, Nathan Hartman <
hartman.nat...@gmail.com>
wrote:

On Sun, Jan 31, 2021 at 9:53 PM Maxim Solodovnik <
solomax...@gmail.com>
wrote:

Hello Alan,

On Mon, 1 Feb 2021 at 04:36, Alan Carvalho de Assis <
acas...@gmail.com

wrote:

Thank you Sallu, Maxim and Kevin!

We will collect ideas for the projects and create a page where


please re-read these two pages:


https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this





https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html


you don't need to create separate ideas page,
just label your JIRAs and ideas will be added to this
https://s.apache.org/gsoc2021ideas list


NuttX isn't using Jira.

We are using GitHub issues.

Do you support that?

Of course, I think we *could* list on Jira the issues we'd like to
propose, for the purposes of the GSoC campaign.

Which approach do you recommend?


As described here:




https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html
you can use COMDEV JIRA for your GSoC tasks (JIRAs can be linked
with
GitHub issues)


Thanks,
Nathan



--
Best regards,
Maxim


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org





--
Best regards,
Maxim




--
Best regards,
Maxim


Re: Invitation to participate with the ASF at GSoC 2021

2021-02-02 Thread Juan Pan
Hi,


Looks like my email app missed the link [1] in my last email.


Sorry for that.


[1] 
https://lists.apache.org/thread.html/ra9a64c766b9bbf07ec16ce69754752eb080977df7dd46385bebf6a9e%40%3Cdev.community.apache.org%3E




 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 11:26,Juan Pan wrote:
Hi Maxim,


I still ran into the same issue earlier, and my ask-for-help email did not get 
settled,
but it can show us more details now.
I do not know whether we did any changes so far?
I will try subscribing to it later and give my update.


Best wishes,
Trista


[1] [Mentor ML] How to subscribe mentor mail list?






----
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 10:30,Maxim Solodovnik wrote:
I'm not aware of such limitation :(

@All can someone check what are the rules for mentors@community.a.o?
Maybe subscriptions should be moderated?

On Wed, 3 Feb 2021 at 07:53, Xiangdong Huang  wrote:

Hi Maxim,

I see the "Currently happening" chapter on the webpage, it is cool! Thanks
for your huge effort.

Just want to confirm that are there some limitations for subscribing
mentors@c.a.o?
e.g., the subscriber must be Member, IPMC, or PMC, etc..
Or must use @apache.org mail address (like sending email to announce@a.g)?
(As I have sent an email to mentors-subscribe@c.a.o, but did not receive
responses. :(.

Best,
---
Xiangdong Huang



Maxim Solodovnik  于2021年2月2日周二 下午4:55写道:

Hello Xiangdong Huang,

On Tue, 2 Feb 2021 at 15:34, Xiangdong Huang  wrote:

Hi,

According to [1], if we propose projects/tasks to GSoc, we need to
subscribe the mailing list ment...@community.apache.org.


This is still required



Are there any requirements to subscribe to the mailing list? I
remember I
failed to subscribe to it and miss all applications.


This time we will try to avoid such misbehavior
This page https://community.apache.org/gsoc.html now contains the
"Currently happening" block
so you can do sort of long pooling :)

Additionally I expect to get some early reports like "I'm not receiving
emails"
And I'll add dev@ list for your PMC to all announces (more manual work,
but
it worth so) :)



[1] http://community.apache.org/gsoc.html

Best,
---
Xiangdong Huang

Alan Carvalho de Assis  于2021年2月1日周一 下午8:05写道:

Thank you Maxim!

Nathan, do you know if our JIRA Infra is working or do we need to ask
Apache Infra to help us?

BR,

Alan

On 2/1/21, Maxim Solodovnik  wrote:
Hello Nathan,

On Mon, 1 Feb 2021 at 10:11, Nathan Hartman <
hartman.nat...@gmail.com>
wrote:

On Sun, Jan 31, 2021 at 9:53 PM Maxim Solodovnik <
solomax...@gmail.com>
wrote:

Hello Alan,

On Mon, 1 Feb 2021 at 04:36, Alan Carvalho de Assis <
acas...@gmail.com

wrote:

Thank you Sallu, Maxim and Kevin!

We will collect ideas for the projects and create a page where


please re-read these two pages:


https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this





https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html


you don't need to create separate ideas page,
just label your JIRAs and ideas will be added to this
https://s.apache.org/gsoc2021ideas list


NuttX isn't using Jira.

We are using GitHub issues.

Do you support that?

Of course, I think we *could* list on Jira the issues we'd like to
propose, for the purposes of the GSoC campaign.

Which approach do you recommend?


As described here:




https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html
you can use COMDEV JIRA for your GSoC tasks (JIRAs can be linked
with
GitHub issues)


Thanks,
Nathan



--
Best regards,
Maxim


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org





--
Best regards,
Maxim




--
Best regards,
Maxim


Re: Invitation to participate with the ASF at GSoC 2021

2021-02-02 Thread Juan Pan
Hi Maxim,


I still ran into the same issue earlier, and my ask-for-help email did not get 
settled, 
but it can show us more details now.
I do not know whether we did any changes so far?
I will try subscribing to it later and give my update.


Best wishes,
Trista


[1] [Mentor ML] How to subscribe mentor mail list?






 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/3/2021 10:30,Maxim Solodovnik wrote:
I'm not aware of such limitation :(

@All can someone check what are the rules for mentors@community.a.o?
Maybe subscriptions should be moderated?

On Wed, 3 Feb 2021 at 07:53, Xiangdong Huang  wrote:

Hi Maxim,

I see the "Currently happening" chapter on the webpage, it is cool! Thanks
for your huge effort.

Just want to confirm that are there some limitations for subscribing
mentors@c.a.o?
e.g., the subscriber must be Member, IPMC, or PMC, etc..
Or must use @apache.org mail address (like sending email to announce@a.g)?
(As I have sent an email to mentors-subscribe@c.a.o, but did not receive
responses. :(.

Best,
---
Xiangdong Huang



Maxim Solodovnik  于2021年2月2日周二 下午4:55写道:

Hello Xiangdong Huang,

On Tue, 2 Feb 2021 at 15:34, Xiangdong Huang  wrote:

Hi,

According to [1], if we propose projects/tasks to GSoc, we need to
subscribe the mailing list ment...@community.apache.org.


This is still required



Are there any requirements to subscribe to the mailing list? I
remember I
failed to subscribe to it and miss all applications.


This time we will try to avoid such misbehavior
This page https://community.apache.org/gsoc.html now contains the
"Currently happening" block
so you can do sort of long pooling :)

Additionally I expect to get some early reports like "I'm not receiving
emails"
And I'll add dev@ list for your PMC to all announces (more manual work,
but
it worth so) :)



[1] http://community.apache.org/gsoc.html

Best,
---
Xiangdong Huang

Alan Carvalho de Assis  于2021年2月1日周一 下午8:05写道:

Thank you Maxim!

Nathan, do you know if our JIRA Infra is working or do we need to ask
Apache Infra to help us?

BR,

Alan

On 2/1/21, Maxim Solodovnik  wrote:
Hello Nathan,

On Mon, 1 Feb 2021 at 10:11, Nathan Hartman <
hartman.nat...@gmail.com>
wrote:

On Sun, Jan 31, 2021 at 9:53 PM Maxim Solodovnik <
solomax...@gmail.com>
wrote:

Hello Alan,

On Mon, 1 Feb 2021 at 04:36, Alan Carvalho de Assis <
acas...@gmail.com

wrote:

Thank you Sallu, Maxim and Kevin!

We will collect ideas for the projects and create a page where


please re-read these two pages:


https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this





https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html


you don't need to create separate ideas page,
just label your JIRAs and ideas will be added to this
https://s.apache.org/gsoc2021ideas list


NuttX isn't using Jira.

We are using GitHub issues.

Do you support that?

Of course, I think we *could* list on Jira the issues we'd like to
propose, for the purposes of the GSoC campaign.

Which approach do you recommend?


As described here:




https://community.apache.org/use-the-comdev-issue-tracker-for-gsoc-tasks.html
you can use COMDEV JIRA for your GSoC tasks (JIRAs can be linked
with
GitHub issues)


Thanks,
Nathan



--
Best regards,
Maxim


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org





--
Best regards,
Maxim




--
Best regards,
Maxim


Re:[ASK] Using apache/cloudstack Github for submitting GSoC2021 ideas

2021-02-02 Thread Juan Pan
Hi Rohit Yadav,


I guess [1] will give your more guidance. 
Generally speaking, project teams can use `ASF community JIRA` to track GSoC 
2021 ideas if your community does not use JIRA. 
After creating GSoC 2021 issue following its title rule, your ideas will appear 
in [2].


Best wishes,
Trista




[1] http://community.apache.org/guide-to-being-a-mentor.html
[2] https://cwiki.apache.org/confluence/display/COMDEV/GSoC+2021+Ideas+list






 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 02/2/2021 16:20,Rohit Yadav wrote:
Dear community,

The Apache CloudStack project does not use JIRA anymore for issue tracking
but have moved to using Github issues. I see the comdev wiki [2] where
ideas are proposed. Can the CloudStack community edit this wiki [2] or do
you advise any other way to participate and propose ideas for GSoC 2021?

Thanks and regards.

[1] http://community.apache.org/gsoc.html
[2] https://cwiki.apache.org/confluence/display/COMDEV/GSoC+2021+Ideas+list


Re: Interested in Contributing to Apache world

2021-01-24 Thread Juan Pan
Hi Avinash,




Since you are using Apache Server and found some bugs to fix, 

I suppose you can start with fixing these bugs. 




> https://bz.apache.org/bugzilla/show_bug.cgi?id=63893

I gave it a look, and it is suggested to discuss with veterans in that 
community 

and show your willingness to make contributions. 




Best wishes,

Trista




---
Email:panj...@apache.org
Juan Pan(Trista) Apache ShardingSphere


On 01/23/2021 13:17,Avinash Sheshadri wrote:
Hi Trista,
Please let me know if i can start with below item

Thanks
Avinash


On Fri, 22 Jan 2021 at 1:38 PM, Avinash Sheshadri 
wrote:

Hi Trista/WenMing,

Hope you are doing well.
Thanks for the suggestions and information provided.

I have been working on Proxy protocol development in my organization. I
could see few of the bugs opened in apache under the same.
would be pleased to take up few of it and would be a good starting point
to dive deep into apache2 server codebase

This is one such:
https://bz.apache.org/bugzilla/show_bug.cgi?id=63893

I could see its fixed but its not, unfortunately. I am still seeing the
issue. I have the fix for the same in my local workspace which i verified
in-house.

Please let me know what are the further steps going forward.

Thanks,
Avinash


On Fri, Jan 22, 2021 at 1:31 PM Ming Wen  wrote:

Hi Avinash,

For open source projects, contributions are not only code, but documents,
test cases, articles, etc. are all very important contributions.

As Juan Pan said, choosing a suitable good first issue is a better way to
start.

Thanks,
Ming Wen, Apache APISIX PMC Chair
Twitter: _WenMing


Juan Pan  于2021年1月22日周五 下午3:56写道:

Hi Avinash,


Welcome. :)
Actually, this mail list tends to present the news or activities
concerning the Apache conference, community, culture, etc. (A little far
away from code contribution)


If you want to participate in the developers' community and make some
code
contribution with C/C++ Networking, I suggest you scan the list of
Apache
Projects and find interesting ones [1].


Generally, we will find some good-first-issue in their Jira or GitHub
pages. Or Subscribe these target projects' mail lists and iterate your
expectation there. I guess you will get replies.
That way will help you enter some of the specific Apache project
communities.
Also, show our community's welcome to you, but JAVA is our primary
developing language. :D


Anyway, please enjoy your Apache journey.


[1]http://www.apache.org/index.html#projects-list


Besh wishes,
Trista




--------
Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 01/22/2021 09:44,Avinash Sheshadri wrote:
Hello All,

I would like to be part of the Apache developers community. I have 8
years
experience in C/C++ and Networking  development.
Please guide me through this process. I would like to take up a few
existing bugs and fix them.

Thanks,
Avinash





[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-22 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17270003#comment-17270003
 ] 

Juan Pan commented on COMDEV-385:
-

Hi  Thanoshan,


Sorry for my late reply. ` SET TRANSACTION` is not so complicated, and a good 
choice. Also I scan the SQL list of Oracle and create a 
[pre-issue|https://github.com/apache/shardingsphere/issues/9129] for you. #9129 
is pretty relevant to this task but difficult. 
Definitely, both `SET TRANSACTION` and #9128 are fine with me. Just be free to 
pick up anyone you like. :)

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Comment Edited] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-22 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17269980#comment-17269980
 ] 

Juan Pan edited comment on COMDEV-385 at 1/22/21, 8:42 AM:
---

Hi Thanoshan,

 

I got your reply on 
[#9084|[https://github.com/apache/shardingsphere/pull/9084].] I suppose there 
is a lot of possibilities that we can not have pre-PRs. But this task is not an 
easy one, so that we can do some of the preparation works.

If you want to start your contribution ahead of time, I suggest you try #9129

 

Sincerely,

Trista


was (Author: panjuan):
Hi Thanoshan,
 
My memory stays that we need to work out whether GSOC allows pre-PRs or not. Do 
we have any answers?
I am happy to see your initiative but I am unsure where you want to start. This 
one or other new warm-up ones?

 

Sincerely,

Trista

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-22 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17269980#comment-17269980
 ] 

Juan Pan commented on COMDEV-385:
-

Hi Thanoshan,
 
My memory stays that we need to work out whether GSOC allows pre-PRs or not. Do 
we have any answers?
I am happy to see your initiative but I am unsure where you want to start. This 
one or other new warm-up ones?

 

Sincerely,

Trista

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re:Interested in Contributing to Apache world

2021-01-21 Thread Juan Pan
Hi Avinash,


Welcome. :)
Actually, this mail list tends to present the news or activities concerning the 
Apache conference, community, culture, etc. (A little far away from code 
contribution)


If you want to participate in the developers' community and make some code 
contribution with C/C++ Networking, I suggest you scan the list of Apache 
Projects and find interesting ones [1].


Generally, we will find some good-first-issue in their Jira or GitHub pages. Or 
Subscribe these target projects' mail lists and iterate your expectation there. 
I guess you will get replies.
That way will help you enter some of the specific Apache project communities.
Also, show our community's welcome to you, but JAVA is our primary developing 
language. :D


Anyway, please enjoy your Apache journey.


[1]http://www.apache.org/index.html#projects-list


Besh wishes,
Trista




-------- 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 01/22/2021 09:44,Avinash Sheshadri wrote:
Hello All,

I would like to be part of the Apache developers community. I have 8 years
experience in C/C++ and Networking  development.
Please guide me through this process. I would like to take up a few
existing bugs and fix them.

Thanks,
Avinash


[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-13 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17264065#comment-17264065
 ] 

Juan Pan commented on COMDEV-385:
-

Hi Thanoshan,

 

I created a small task to help you learn about this project and this issue 
more. If you want to have a try, please comment something on 
[#9081|https://github.com/apache/shardingsphere/issues/9018] so that I can 
assign it to you. 

Have a good day,

Trista

 

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-11 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17263109#comment-17263109
 ] 

Juan Pan commented on COMDEV-385:
-

Hi Thanoshan,
 
I like your suggestion. As ShardingSphere is a large project, I will try to 
find some good-first issues related to this one to help you warm up.
Please leave me some time. I will come back ASAP.
 
Best,
Trista

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Commented] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2021-01-11 Thread Juan Pan (Jira)


[ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17262484#comment-17262484
 ] 

Juan Pan commented on COMDEV-385:
-

Hi [~ThanoshanMV],

Welcome your joining.  : )

I'd like to provide any help you need. Plus, we still need some application 
process currently. 

I guess [gsoc 
2021|https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this] 
will give you some points.

Please ping me here if you have any question.

 

Best wishes,

Trista

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, ShardingSphere, gsoc2021
>
> h3. Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
>  *Page*: 
> [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
>  *Github*: [https://github.com/apache/shardingsphere]
> h3. Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object). At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
>  *More details*: 
> [https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
> h3. Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
>  but do not keep in line with [Oracle 
> DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC.
> *Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you 
> will find that these definitions will involve some basic elements of Oracle 
> SQL. No doubt, these elements are included in this task as well.
> h3. Relevant Skills
> 1. Master JAVA language
>  2. Have a basic understanding of Antlr g4 file
>  3. Be familiar with Oracle SQLs
> h3. Targets files
> 1. DML SQLs g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
>  2. Basic elements g4 file: 
> [https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
> h3. References
> 1. Oracle SQL quick reference: 
> [https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
>  2. Detailed Oracle SQL info: 
> [https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
> h3. Mentor
> Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: ASF Virtual Booth for FOSDEM 2021

2021-01-10 Thread Juan Pan
Hi Sharan,


Thanks for your work. 
I took a look at cwiki. The videos are great, and AFAIK, they are all fitting 
for this event.
Considering we have a virtual booth, the non-virtual stickers and swags are no 
longer serve.
So I suggest that we give away virtual custom stickers or badges to visitors 
(Like our event badge on Apache@Home [1]), which can be personalized.


>  In the past we have allocated timeslots on the booth to projects to talk or 
> present at specific times. If any projects are interested in doing that for 
> this virtual event then please let me know and we can setup a schedule. 


I still wonder generally how long a talk will be given for each project.


[1]https://twitter.com/trista86934690/status/1312384864285384704


Regards,
Trista




 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 01/11/2021 00:27,Sharan Foga wrote:
Hi All

As mentioned in my previous mail, I have setup a page on the wiki to help with 
the planning for our participation at FOSDEM. You can find the page here

https://cwiki.apache.org/confluence/display/COMDEV/FOSDEM+2021

so please take a look. If you have any suggestions for content we could use on 
the booth page or would like to participate then please add your name to the 
list of volunteers.

We have the virtual booth for 2 full days. In the past we have allocated 
timeslots on the booth to projects to talk or present at specific times. If any 
projects are interested in doing that for this virtual event then please let me 
know and we can setup a schedule.

I should have some more details later in the week from the FOSDEM organisers.

Thanks
Sharan

On 2021/01/06 20:09:21, Sharan Foga  wrote:
Hi Everyone

Here is the second FOSDEM post. We have some good news - we applied to have a 
virtual booth at FOSDEM 2021 and our application has been accepted. This means 
that we will need to organise and prepare something for our booth.

Normally we generally turn up with a lot of swag and stickers to give away, 
this time we'll need to think about and do something completely different.

The FOSDEM organisers have told us that we can:
- Create content for our booth on the booths website (stands.fosdem.org)
- Have access to a matrix chatroom
- Have a place to store any videos

We'll need some volunteers to help us to define and create our content, and 
also be available during FOSDEM to be in the chatroom to respond to questions 
from attendees.

I will put together a page on the Comdev wiki to start listing any content we 
could use and also the tasks around getting them added to our virtual booth.

We don't have much time as 6th and 7th February is not very far away so if you 
are interested in helping out then please let me know.

Thanks
Sharan



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:"Airflow Community 2.0 2.0 end of year celebration" - 30th December 8.30pm CEST (7.30 GMT)

2020-12-22 Thread Juan Pan
Hi Jarek Potiuk,


Your description looks interesting and funny!
This is my first time to know a community meeting is around talking with 
friends, families, and pets(haha)  rather than technique, sounds great. :)
Express my best wishes to Airflow community e-meeting!


Have a good day,
Trista




 
Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 12/22/2020 06:29,Jarek Potiuk wrote:
Hello everyone from the community,

We have several reasons to celebrate 2.0 this December.

* Airflow 2.0 is out (yay!)
* The 2020 is about to end (both good and bad things happened this year)
but I am sure 2021 will be so much better.
* This December Airflow 2nd birthday of Airflow as the Top Level Project of
the Apache Software Foundation.

Together with the rest of the PMC, we would like to invite all the members
of the community to an online (of course!) celebration of all those : 30th
of December 8.30 pm CEST (7.30 GMT).

I think it would be great to meet and talk as much face-2-face as possible,
bring a glass of wine or hot chocolate and come to say hello.

We are not going to talk about Airflow, we are going to bring our families,
pets, friends and spend some time together via Google Meet.

Calendar event (might not work for everyone):
https://calendar.google.com/event?action=TEMPLATE&tmeid=NmV2N2lhY2U3bTBmcWV0bzUya3M4dTJhOTAgamFyZWtAcG90aXVrLmNvbQ&tmsrc=jarek%40potiuk.com

Meet event: should work for everyone: https://meet.google.com/ype-vhqu-rur

We will resend it next week
J.

--
+48 660 796 129


Re:Apache Roadshow - China recap

2020-12-15 Thread Juan Pan
Hi Ted,


This summary looks so cool! 
I was glad to join this event. Thanks for the time and efforts from kaiyuanshe.
Also, I am interested in ApacheConn Asia If it is possible. : ) 


Best,
Trista




 
Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 12/15/2020 13:33,Liu Ted wrote:
Dear Rich, Sally and Craig,


Thank you for your support the Apache Roadshow - China (co-located with 
COSCon'20). Here comes the event summary. 


There were one million+ online viewers and hundreds of offline audiences across 
5 cities in China. 










Dear Craig, Thank you for your sharing which has inspired millions. 





Special thanks to ALC Beijing members, Willem Jiang, Sheng Wu, Lidong Dai, Juan 
Pan, Jiansheng Li, Liang Zhang, Xiangdong Huang, and many more volunteers and 
Aapche fans organized by ALC Beijing.





https://mp.weixin.qq.com/s?__biz=MzA5MTA2NDA5MQ==&mid=2655320841&idx=2&sn=55b2433ef9fa467485b27349820ea110&chksm=8bb2497dbcc5c06bbca2659c32e919757a417a210e090ad413562dcb5fee6fc89681f0e46aab&mpshare=1&scene=1&srcid=1214rQ6p3okxEjnikwYG2XPC&sharer_sharetime=1607996825876&sharer_shareid=24f6d3ce094d2205129bd421cf0dbe7f&exportkey=Aa66Gp47XiDYP6CQeR7Gl6E%3D&pass_ticket=Y3hi6mVayMhZU%2BaUm0iflQ3Ye8udlccmL6tmb9dtzech87d%2BSqEQOGA9tAqbC%2BFS&wx_header=0#rd





Hi Sally, It'd be great if this could be shared on ASF media channels.




Hi Rich, We, at ALC Beijing, are thinking of conducting the ApacheCon Asia next 
year in China with multiple locations as we did in 5 cities in China this year. 




Best regards,


Ted Liu
On behalf of the 2020 Apache Roadshow - China & COSCon'20 Steering Committee

Re: [Mentor ML] How to subscribe mentor mail list?

2020-11-29 Thread Juan Pan
Hi Justin,




Very appreciated your directions. I thought this ml would be unanswered any 
more...

However, the dropdown of possible mailing lists does not contain ` 
mentors@community`,

so I could not subscribe to this one automatically. 

Besides, I noticed this description on the Subscription Helper page: `The 
dropdown only shows lists to which you can automatically subscribe`.

Hence, I guess maybe ` mentors@community` need manual work?




Best,

Trista



 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/29/2020 07:28,Justin Mclean wrote:
Hi,

You might find it easier to subscribe/unsubscribe by using Whimsy:
https://whimsy.apache.org/committers/subscribe

This will also tell you what you are subscribed to:
https://whimsy.apache.org/roster/committer/__self__

Thanks,
Justin

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


[Mentor ML] How to subscribe mentor mail list?

2020-11-22 Thread Juan Pan
Hi community,


Thanks for your attention. :)


I tried to subscribe ment...@community.apache.org by sending an email to 
mentors-subscr...@community.apache.org.
I can receive the `confirm subscribe to ment...@community.apache.org` and hit 
the `reply` button to confirm.
However, there was no welcome email for my confirmation reply.
Also, I tried to copy the address and paste it into `To` field, while it didn't 
work.
At last, I sent a message to mentors-requ...@community.apache.org, referring to 
the instruction in the confirmation email. Unfortunately, any responses have 
not arrived yet. 


This email is to seek your help, as I have tried all the methods I can. Are 
there other ways to try? Does anyone succeed in subscribing to this ml recently?


Very appreciated your points and responses. : )


Best wish,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org





Re: [GSoC 2021] How to submit mentoring ideas if the Apache project does not use JIRA?

2020-11-22 Thread Juan Pan
Hello Maxim,


Thanks for your update, much clear now. : )
Besides, I gave some comments on it.


Best,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/23/2020 01:03,Maxim Solodovnik wrote:
Hello Trista,

could you please check this PR https://github.com/apache/comdev-site/pull/19
Is it more clear?

On Thu, 19 Nov 2020 at 18:36, Maxim Solodovnik  wrote:

Hello Juan Pan,

AFAIK mentors@ has the same rules as other Apache lists
Can try one more time? and/or check spam folder?

Or maybe mentors@ list moderator can help?

On Thu, 19 Nov 2020 at 10:05, Juan Pan  wrote:

Hi Maxim,


Thanks for your labeling on COMDEV-385.
I intend to kindly ping you at mentor@ml. However, I haven’t received
any welcome reply from mentors-subscr...@community.apache.org for nearly
3 days.
I am not sure whether I keep on waiting or ping you at
ment...@community.apache.org right now?
Maybe mentor@ml has a different subscribe way, I guess?


Regards,
Trista




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/16/2020 18:28,Juan Pan wrote:
Hi Maxim,


Very appreciated your explanation. : )


I will ping you on ment...@community.apache.org then.


this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)


BTW, if the info above can be appended in Apache-GSoC2021 [1], that will
much make sense for others.


[1]
https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this


Best wishes,
Trista




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/16/2020 16:43,Maxim Solodovnik wrote:
Hello Juan Pan,

On Mon, 16 Nov 2020 at 15:09, Juan Pan  wrote:

Hi, community,


ShardingSphere community is collecting mentoring ideas for GSoC 2021.
Since our project does not use JIRA, I don't know how to submit ideas.
Apache-GSoC doc[1] points me to contact here. So could anyone give me any
answer?
I appreciate any help you can provide.


Besides, the Guide-to-being-a-mentor doc[2] suggests these communities not
using JIRA can submit their ideas in the Comdev Issue Tracker for GSoC
2020.
I am unsure this rule still applies to GSoC 2021, but I tried to create
one [3].


this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)



BTW, Doc [2] seems outdated (related to GSoC 2020) now and has some
conflicts with Doc [1].
If we still want to link [1] with [2], some updates are needed to avoid
any confusion.


Thanks for the pointer, will try to correct the issues ASAP



If I missed something, please tell me. :)


Best wishes,
Trista


[1]
https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this
[2] https://community.apache.org/guide-to-being-a-mentor.html
[3] https://issues.apache.org/jira/browse/COMDEV-385




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org





--
Best regards,
Maxim



--
Best regards,
Maxim



--
Best regards,
Maxim


Re: [GSoC 2021] How to submit mentoring ideas if the Apache project does not use JIRA?

2020-11-18 Thread Juan Pan
Hi Maxim,


Thanks for your labeling on COMDEV-385. 
I intend to kindly ping you at mentor@ml. However, I haven’t received any 
welcome reply from mentors-subscr...@community.apache.org for nearly 3 days. 
I am not sure whether I keep on waiting or ping you at 
ment...@community.apache.org right now?
Maybe mentor@ml has a different subscribe way, I guess?


Regards,
Trista




 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/16/2020 18:28,Juan Pan wrote:
Hi Maxim,


Very appreciated your explanation. : )


I will ping you on ment...@community.apache.org then.


this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)


BTW, if the info above can be appended in Apache-GSoC2021 [1], that will much 
make sense for others.


[1]https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this


Best wishes,
Trista




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/16/2020 16:43,Maxim Solodovnik wrote:
Hello Juan Pan,

On Mon, 16 Nov 2020 at 15:09, Juan Pan  wrote:

Hi, community,


ShardingSphere community is collecting mentoring ideas for GSoC 2021.
Since our project does not use JIRA, I don't know how to submit ideas.
Apache-GSoC doc[1] points me to contact here. So could anyone give me any
answer?
I appreciate any help you can provide.


Besides, the Guide-to-being-a-mentor doc[2] suggests these communities not
using JIRA can submit their ideas in the Comdev Issue Tracker for GSoC
2020.
I am unsure this rule still applies to GSoC 2021, but I tried to create
one [3].


this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)



BTW, Doc [2] seems outdated (related to GSoC 2020) now and has some
conflicts with Doc [1].
If we still want to link [1] with [2], some updates are needed to avoid
any confusion.


Thanks for the pointer, will try to correct the issues ASAP



If I missed something, please tell me. :)


Best wishes,
Trista


[1]
https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this
[2] https://community.apache.org/guide-to-being-a-mentor.html
[3] https://issues.apache.org/jira/browse/COMDEV-385




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org





--
Best regards,
Maxim


Re: [GSoC 2021] How to submit mentoring ideas if the Apache project does not use JIRA?

2020-11-16 Thread Juan Pan
Hi Maxim,


Very appreciated your explanation. : )


I will ping you on ment...@community.apache.org then.


> this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)


BTW, if the info above can be appended in Apache-GSoC2021 [1], that will much 
make sense for others.


[1]https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this


Best wishes,
Trista




 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/16/2020 16:43,Maxim Solodovnik wrote:
Hello Juan Pan,

On Mon, 16 Nov 2020 at 15:09, Juan Pan  wrote:

Hi, community,


ShardingSphere community is collecting mentoring ideas for GSoC 2021.
Since our project does not use JIRA, I don't know how to submit ideas.
Apache-GSoC doc[1] points me to contact here. So could anyone give me any
answer?
I appreciate any help you can provide.


Besides, the Guide-to-being-a-mentor doc[2] suggests these communities not
using JIRA can submit their ideas in the Comdev Issue Tracker for GSoC
2020.
I am unsure this rule still applies to GSoC 2021, but I tried to create
one [3].


this is correct
create comdev JIRA, then ping me at  ment...@community.apache.org (please
subscribe first)
I'll update the list :) (this is manual process)



BTW, Doc [2] seems outdated (related to GSoC 2020) now and has some
conflicts with Doc [1].
If we still want to link [1] with [2], some updates are needed to avoid
any confusion.


Thanks for the pointer, will try to correct the issues ASAP



If I missed something, please tell me. :)


Best wishes,
Trista


[1]
https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this
[2] https://community.apache.org/guide-to-being-a-mentor.html
[3] https://issues.apache.org/jira/browse/COMDEV-385




Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org





--
Best regards,
Maxim


[jira] [Updated] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2020-11-16 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-385:

Description: 
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]
h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
h3. Task

This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL definitions 
for Oracle. As we have a basic [Oracle SQL syntax 
definitions|https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle]
 but do not keep in line with [Oracle 
DOC|https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3],
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you will 
find that these definitions will involve some basic elements of Oracle SQL. No 
doubt, these elements are included in this task as well.
h3. Relevant Skills

1. Master JAVA language
 2. Have a basic understanding of Antlr g4 file
 3. Be familiar with Oracle SQLs
h3. Targets files

1. DML SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
 2. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
 2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, [mailto:panj...@apache.org]

  was:
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]
h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
h3. Task

This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL definitions 
for Oracle. As we have a basic [Oracle SQL syntax 
definitions]([https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle])
 but do not keep in line with [Oracle 
DOC]([https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3]),
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you will 
find that these definitions will involve some basic elements of Oracle SQL. No 
doubt, these elements are included in this task as well.
h3. Relevant Skills

1. Master JAVA language
 2. Have a basic understanding of Antlr g4 file
 3. Be familiar with Oracle SQLs
h3. Targets files

1. DML SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
 2. Basic elements g4 file: 
[https://github.com/ap

[GSoC 2021] How to submit mentoring ideas if the Apache project does not use JIRA?

2020-11-16 Thread Juan Pan
Hi, community,


ShardingSphere community is collecting mentoring ideas for GSoC 2021. 
Since our project does not use JIRA, I don't know how to submit ideas. 
Apache-GSoC doc[1] points me to contact here. So could anyone give me any 
answer? 
I appreciate any help you can provide.


Besides, the Guide-to-being-a-mentor doc[2] suggests these communities not 
using JIRA can submit their ideas in the Comdev Issue Tracker for GSoC 2020. 
I am unsure this rule still applies to GSoC 2021, but I tried to create one [3].


BTW, Doc [2] seems outdated (related to GSoC 2020) now and has some conflicts 
with Doc [1]. 
If we still want to link [1] with [2], some updates are needed to avoid any 
confusion. 


If I missed something, please tell me. :)


Best wishes,
Trista


[1] https://community.apache.org/gsoc.html#prospective-asf-mentors-read-this
[2] https://community.apache.org/guide-to-being-a-mentor.html
[3] https://issues.apache.org/jira/browse/COMDEV-385




 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org





[jira] [Updated] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2020-11-15 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-385:

Description: 
h3. Apache ShardingSphere

Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
 *Page*: [https://shardingsphere.apache.org|https://shardingsphere.apache.org/]
 *Github*: [https://github.com/apache/shardingsphere]
h3. Background

ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object). At present, 
this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, `SQLServer` and 
`Oracle`, which means we have to understand different database dialect SQLs.
 *More details*: 
[https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/]
h3. Task

This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL definitions 
for Oracle. As we have a basic [Oracle SQL syntax 
definitions]([https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle])
 but do not keep in line with [Oracle 
DOC]([https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3]),
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC.

*Notice*, when you review these DML(SELECT/UPDATE/DELETE/INSERT) SQLs, you will 
find that these definitions will involve some basic elements of Oracle SQL. No 
doubt, these elements are included in this task as well.
h3. Relevant Skills

1. Master JAVA language
 2. Have a basic understanding of Antlr g4 file
 3. Be familiar with Oracle SQLs
h3. Targets files

1. DML SQLs g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4]
 2. Basic elements g4 file: 
[https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4]
h3. References

1. Oracle SQL quick reference: 
[https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A]
 2. Detailed Oracle SQL info: 
[https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008]
h3. Mentor

Juan Pan, PMC of Apache ShardingSphere, panj...@apache.org

  was:


### Apache ShardingSphere
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
Page: https://shardingsphere.apache.org
Github: https://github.com/apache/shardingsphere

### Background
ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object).  At 
present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
`SQLServer` and `Oracle`, which means we have to understand different database 
dialect SQLs.
More details: 
https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/

### Task
This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL definitions 
for Oracle. As we have a basic [Oracle SQL syntax 
definitions](https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle)
 but do not keep in line with [Oracle 
DOC](https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3),
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC. 

Notice, when you review these DML(SELECT/UPDATE/DELETE/INSERT)  SQLs, you will 
find that these definitions will involve some basic elements of Oracle SQL. No 
doubt, these elements are included in this task as well.

### Relevant Skills
1.Master JAVA language
2.Have a basic understanding of Antlr g4 file
3.Be familiar with Oracle SQLs

### Targets files
1.DML SQLs g4 file: 
https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4
2.Basic elements g4 file: 
https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsp

[jira] [Updated] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2020-11-15 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-385:

Description: 


### Apache ShardingSphere
Apache ShardingSphere is a distributed database middleware ecosystem, including 
2 independent products, ShardingSphere JDBC and ShardingSphere Proxy presently. 
They all provide functions of data sharding, distributed transaction, and 
database orchestration.
Page: https://shardingsphere.apache.org
Github: https://github.com/apache/shardingsphere

### Background
ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
Syntax Tree) and visit this tree to get SQLStatement (Java Object).  At 
present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
`SQLServer` and `Oracle`, which means we have to understand different database 
dialect SQLs.
More details: 
https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/

### Task
This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL definitions 
for Oracle. As we have a basic [Oracle SQL syntax 
definitions](https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle)
 but do not keep in line with [Oracle 
DOC](https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3),
 we need you to find out the vague SQL grammar definitions and correct them 
referring to Oracle DOC. 

Notice, when you review these DML(SELECT/UPDATE/DELETE/INSERT)  SQLs, you will 
find that these definitions will involve some basic elements of Oracle SQL. No 
doubt, these elements are included in this task as well.

### Relevant Skills
1.Master JAVA language
2.Have a basic understanding of Antlr g4 file
3.Be familiar with Oracle SQLs

### Targets files
1.DML SQLs g4 file: 
https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/DMLStatement.g4
2.Basic elements g4 file: 
https://github.com/apache/shardingsphere/blob/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle/BaseRule.g4

### References
1.Oracle SQL quick reference: 
https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-1FA35EAD-AED2-4619-BFEE-348FF05D1F4A
2. Detailed Oracle SQL info: 
https://docs.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19/sqlqr&id=SQLRF008

### Mentor
Juan Pan, PMC of Apache ShardingSphere, panj...@apache.org



> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, gsoc2021
>
> ### Apache ShardingSphere
> Apache ShardingSphere is a distributed database middleware ecosystem, 
> including 2 independent products, ShardingSphere JDBC and ShardingSphere 
> Proxy presently. They all provide functions of data sharding, distributed 
> transaction, and database orchestration.
> Page: https://shardingsphere.apache.org
> Github: https://github.com/apache/shardingsphere
> ### Background
> ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract 
> Syntax Tree) and visit this tree to get SQLStatement (Java Object).  At 
> present, this parser engine can handle SQLs for `MySQL`, `PostgreSQL`, 
> `SQLServer` and `Oracle`, which means we have to understand different 
> database dialect SQLs.
> More details: 
> https://shardingsphere.apache.org/document/current/en/features/sharding/principle/parse/
> ### Task
> This issue is to proofread the DML(SELECT/UPDATE/DELETE/INSERT) SQL 
> definitions for Oracle. As we have a basic [Oracle SQL syntax 
> definitions](https://github.com/apache/shardingsphere/tree/master/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-oracle/src/main/antlr4/imports/oracle)
>  but do not keep in line with [Oracle 
> DOC](https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlqr/SQL-Statements.html#GUID-CE009C87-4AA6-45BF-9A0D-2B2C5FFB47B3),
>  we need you to find out the vague SQL grammar definitions and correct them 
> referring to Oracle DOC. 
> Notice, when you review these DML(SELECT/UPDATE/DELETE/INSERT)  SQLs, you 
> will find that these defini

[jira] [Updated] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2020-11-15 Thread Juan Pan (Jira)


 [ 
https://issues.apache.org/jira/browse/COMDEV-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Juan Pan updated COMDEV-385:

Labels: Mentor gsoc2021  (was: Mentor gsoc2020)

> Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser
> --
>
> Key: COMDEV-385
> URL: https://issues.apache.org/jira/browse/COMDEV-385
> Project: Community Development
>  Issue Type: Improvement
>  Components: GSoC/Mentoring ideas
>    Reporter: Juan Pan
>Priority: Major
>  Labels: Mentor, gsoc2021
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



[jira] [Created] (COMDEV-385) Apache ShardingSphere: Proofread the SQL definitions for ShardingSphere Parser

2020-11-15 Thread Juan Pan (Jira)
Juan Pan created COMDEV-385:
---

 Summary: Apache ShardingSphere: Proofread the SQL definitions for 
ShardingSphere Parser
 Key: COMDEV-385
 URL: https://issues.apache.org/jira/browse/COMDEV-385
 Project: Community Development
  Issue Type: Improvement
  Components: GSoC/Mentoring ideas
Reporter: Juan Pan






--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re:[ANNOUNCE] Welcome to our new committers

2020-11-03 Thread Juan Pan
Congrats to everyone of you. :-)


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 11/2/2020 14:18,Swapnil M Mane wrote:
Hello all,
The ComDev PMC has invited Aditya, Priya, Tomasz, and Willem
to become committers and we are glad to announce that
they have accepted the nomination.

Please join me in welcoming our new committers.

# Aditya Sharma
Aditya is the ALC Indore chapter lead and part of the core team since
the beginning.
He had also delivered various talks for spreading the awareness of
Apache in various events.
His recent talk (in Hindi language) in ApaceCon on the topic Apache Incubator,
& How incubator communities are built? is live at https://youtu.be/Y131zsjsU_Y

# Priya Sharma
Priya is the core member of ALC Indore from its inception and you
might have seen her various mail regarding the events. She is very
active in planning and executing events for ALC.
She also delivered numerous talk on the Open Source and the Apache Way
in ALC events also active on our ComDev list to help people.
Her recent talk on Apache Local Community (in Hindi language)
in ApacheCon can be found at https://youtu.be/V-oI5_C1oys

# Tomasz Urbaszek
Tomasz is the ALC Warsaw chapter lead and very actively working for
spreading awareness through ALC Warsaw events. Along with this,
he also participated in various threads of ALC to provide his inputs.
You should check out his recent talk in ApacheCon on
'Growing with the Open-Source Community' at https://youtu.be/YGd8XyAC41A

# Willem Ning Jiang
Willem is also an ASF member and in PMC of various Apache Projects.
He is the chapter lead of ALC Beijing and, the ALC Beijing team is
doing inspiring
& amazing work in spreading Apache awareness.
Willem has a great understanding of Apache Way and the community.

Many congratulations all, and thank you so much for your contributions!

Best regards,
Swapnil M Mane,
On behalf of the ComDev PMC

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:Apache Roadshow China CFP opens!

2020-09-15 Thread Juan Pan
Hi Ted,


Thanks for your news, I will submit my talk ASAP.


Hope everything goes well!


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 09/15/2020 22:39,Liu Ted wrote:
Hi everyone, 
This is the virtual Apache season. Many ASF fans in China will enjoy the 
upcoming ApacheCon@Home (including the Mandarin tracks). In order to cover more 
sharing sessions and audiences in this region, the Apache Roadshow China 
(co-located with the 2020 China Open Source Conference -- COSCon'20) will be 
held on Oct. 24-25. The event will mostly be online (virtual).
Additionally, we also prepared venues in 5 cities, including Beijing, Shanghai, 
Shenzhen, Chengdu and Changsha, where speakers can deliver their speeches in a 
live broadcast-ready environment where some local audiences will be able to 
meet up with the speakers on-site.
You are cordially invited to participate and/or sharing. We are looking for 
talks in open source areas, such as AI, Blockchain, Cloud Native and 
Micro-service, Data Technology (Big Data, Open Data...), Operating System, 
Hardware, Education & Philanthropy, Community & Governance, Women for Open 
Source, Social / Economy / Legal Compliance / Culture. 
Please submit your proposal before October 1st, 2020. After the review process 
from the coordinators, we will publish the full program in early October. For 
international speakers, due to timezone and potential live broadcast latency 
issues, please preare a pre-recorded video clip along with the presentation 
slides and submit them as early as possible for our review and translation.
Important dates:。Submission deadline: September 30, 2020。Full programme & 
agenda will published around October 10, 2020。COSCon'20 dates: Oct. 24-25

COSCon'20 & Apache Roadshow - China (Virtual) Call for 
Paperhttps://www.wenjuan.com/s/uUzMZjj/?share_device=m
We look forward to your participation and sharing.

Best regards,
Ted Liu, on behalf of the COSCon'20 | Apache Roadshow China steering committee

Re: [ALC]ALC Beijing Meetup August 16

2020-08-11 Thread Juan Pan
Hi Jiansheng,


Thanks for your good news!
I am glad to see our first ALC Beijing meet-up is coming soon.
Also, thanks for the help from all the members of ALC Beijing and KAIYUANSHE.
With their help, we could have a chance to give many valuable talkings and 
discussions on our first meet-up.


Hope our audiences and attendees can enjoy it.


Best wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 08/12/2020 11:54,适兕 wrote:
Hi, Craig,

Thanks for your email.

Yes , you are right. This meetup will be speaking in Chinese only and the
time zone is Beijing time.

Best Regards!

On Wed, Aug 12, 2020 at 3:05 AM Craig Russell  wrote:

Hi,

Just for my understanding:

is the event 14:00 ~ 17:30 in Beijing time?
is the event in Chinese?

Thanks,
Craig

On Aug 10, 2020, at 8:53 PM, 适兕  wrote:

Hello everyone,

The ALC [1] Beijing Chapter [2] will host a meetup (support online
participation)  this weekend.

This time we choose the topic : “How to remove the roadblocks on the open
source journey”

We invited Apache Flink and Apache DolphinScheduler(Incubating) PPMC to
share their stories. and invited 5 guests to discuss this topic ,They are
all very experienced in open source.

more information ( time,location and online url etc.) please go to [3],
or
reply to this email.

Welcome to join us !

[1] https://s.apache.org/alc
[2] https://s.apache.org/alc-beijing
[3]

https://cwiki.apache.org/confluence/pages/editpage.action?pageId=158868125
--
Welcome to http://opensourceway.community! The open source way:
Dedicated
to the exploration of ideas, knowledge and values related to open source.

Craig L Russell
c...@apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards!


Re: ApacheCon@Home - All Speakers Please Register in Hopin

2020-08-08 Thread Juan Pan
Hi Sharan  and Rich,


Thanks for your explanation. 
I got your idea and will be patient for updates.


Thanks for your work on ApacheConn.


Best  wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 08/7/2020 23:14,Sharan Foga wrote:
Hi Trista

We are in the process of loading the complete schedule onto the ApacheCon 
website with all the dates, times and speakers for each talk.

https://www.apachecon.com/acah2020/tracks/

So if your session isn't published yet then please check back later as updates 
are happening all the time.

Thanks
Sharan

On 2020/08/07 06:35:00, "Juan Pan"  wrote:
Hi Sharan,


Thanks for your kind reminder. :)
That’s also my question.
BTW, after registering, we just wait for the exact session time set for each 
speaker, right?


Cheers,
Trista


Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 08/7/2020 11:56,Jeff Zhang wrote:
Hi Sharan,

Can I make a video recording for my talk or I have to be online at that
time ?

Sharan Foga  于2020年8月7日周五 上午12:25写道:

Hi Everyone

Those of you who have had talks accepted talks for the Community Track for
ApacheCon@Home - congratulations as you should have received your
notifications by now.
We need all speakers to register in Hopin which is the platform we will be
using. So please go to the following link and register yourself to attend.

https://hopin.to/events/apachecon-home

If you don't register then we can't include you in the schedule. Also if
you are not registered it could also mean that you are not available to
present - so to help avoid any confusion please spend a few minutes to
register.

Thanks
Sharan



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: Translated ASF blog - Success at Apache: Asynchronous Decision Making

2020-08-06 Thread Juan Pan
Hi Bertrand,


Thanks for your sharing and interesting Chinese-To-French double-check. :)
My mandarin told me it is a great Chinese version of your blog post.
Thanks for KAIYUANSHE team’s effort. @Ted


Best,
Trista




 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 08/5/2020 23:31,Bertrand Delacretaz wrote:
Hi Ted,

On Wed, Jun 24, 2020 at 6:27 PM Liu Ted  wrote:
We, at KAIYUANSHE, a ground-up open source alliance in China, have kept on 
translating Apache blogs,
such as "Success at Apache" series, to advocate the Apache Way. Enjoy reading 
either the great original
article written by Bertrand Delacretaz or the translated one...

Thank you for this, I (belatedly) read the Chinese version using a
machine translation to French (my mother tongue) and even after that
it sounds faithful to the original blog post, so I guess the Chinese
translation is great!

-Bertrand

Original blog:
https://blogs.apache.org/foundation/entry/success-at-apache-asynchronous-decision

Translated in Chinese:
https://mp.weixin.qq.com/s?__biz=MzA5MTA2NDA5MQ==&mid=2655317062&idx=1&sn=93088c7dd2c6a9afe4dc4cde4000&chksm=8bb25e32bcc5d724d8728f06e777f8532a8a1d824cf24732fe50e0ae270868ee7e67008c1335&mpshare=1&srcid=&sharer_sharetime=1593006297465&sharer_shareid=50db726169328285261995c2c9f8bc31&from=groupmessage&scene=1&subscene=1&clicktime=1593015027&enterid=1593015027&ascene=1&devicetype=android-29&version=27000f51&nettype=WIFI&abtest_cookie=AAACAA%3D%3D&lang=zh_TW&exportkey=AQfb3toDi7Jm%2F5mbjj%2FTbYM%3D&pass_ticket=Eqo5F1aJCeFxela6dhR%2F2vXmyuyHsaPsDpXJ7D8kFutVWRWgr5%2BUj9EWg02A%2Farf&wx_header=1


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: ApacheCon@Home - All Speakers Please Register in Hopin

2020-08-06 Thread Juan Pan
Hi Sharan,


Thanks for your kind reminder. :)
That’s also my question.
BTW, after registering, we just wait for the exact session time set for each 
speaker, right?


Cheers,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 08/7/2020 11:56,Jeff Zhang wrote:
Hi Sharan,

Can I make a video recording for my talk or I have to be online at that
time ?

Sharan Foga  于2020年8月7日周五 上午12:25写道:

Hi Everyone

Those of you who have had talks accepted talks for the Community Track for
ApacheCon@Home - congratulations as you should have received your
notifications by now.
We need all speakers to register in Hopin which is the platform we will be
using. So please go to the following link and register yourself to attend.

https://hopin.to/events/apachecon-home

If you don't register then we can't include you in the schedule. Also if
you are not registered it could also mean that you are not available to
present - so to help avoid any confusion please spend a few minutes to
register.

Thanks
Sharan



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang


Re:Apache Software Foundation, Trillions and Trillions Served with Chinese subtitle LIVE!

2020-07-18 Thread Juan Pan
Hi  Sheng,


Thanks for your information.


It is pleasing to see this video with Chinese subtitles online.
I also learned more of the interesting stories and valuable beliefs 
when I was doing its translation.


Thanks for everyone’s support. 


Best,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/17/2020 09:39,Sheng Wu wrote:
Hi Sally, Michael, Dominik, DevCom, and ALC Beijing

First of all, thank you to make the video `Apache Software Foundation,
Trillions and Trillions Served`, provide helps to me.
I am here glad to share, with the supports from the SkyWalking community,
ALC Beijing community, and Kaiyuanshe, we have this video online hosted on
bilibili which is China's local friendly platform. And we have provided
Chinese subtitles on that.

https://www.bilibili.com/video/BV1Uz411i7MH

In this short time, we already have 200+ watches, and we expect more.
Thank you all to make this happens.

Sheng Wu 吴晟
Twitter, wusheng1108


Re: ApacheCon @Home CFP Submissions in Different Languages

2020-07-12 Thread Juan Pan
Hi Rich, 


Thanks for your clarification, much clear now.


Cheers,
Trista




 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/13/2020 00:05,Rich Bowen wrote:


On 7/12/20 8:23 AM, Juan Pan wrote:
Hi Sharan,


It looks a good news. :-)
Besides, two questions confused me,
1. If one wants to post a topic talking in other languages,  any categories on 
CFP is ok? Or some specific ones?

Submit the talk for the topic that it's about.

2. If there is no sufficient talkings in one language for that timezone,what 
will happen?

I'm not sure I understand the question. We will not be adding additional
timeslots for these talks.

--
Rich Bowen - rbo...@rcbowen.com
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: ApacheCon @Home CFP Submissions in Different Languages

2020-07-12 Thread Juan Pan
Hi Sheng,


Thanks for your efforts, today is the final day for submission.


Hope everything goes well.


Best wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/12/2020 20:53,Sheng Wu wrote:
Juan

We will have a track for Mandarin at least, I have requested to add an
Apache@China track.
If Rich can't make it online(due to the CFP closed shortly),
I will collect the topics to you all(ALC Beijing and Projects I have known
have active contributors from China) to prepare the track.

Sheng Wu 吴晟
Twitter, wusheng1108


Juan Pan  于2020年7月12日周日 下午8:23写道:

Hi Sharan,


It looks a good news. :-)
Besides, two questions confused me,
1. If one wants to post a topic talking in other languages,  any
categories on CFP is ok? Or some specific ones?
2. If there is no sufficient talkings in one language for that
timezone,what will happen?


Looking forward to your help, and if I missed something, please tell me.


Best wishes,
Trista


Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/11/2020 15:43,Sharan Foga wrote:

Hi All

We are looking for talks in other languages than English for ApacheCon
@Home. As the conference will be online it means that we can run tracks for
specific time zones. Initial thoughts are something that could be US
friendly, EU friendly and China friendly.

This means that as well as English we could run specific community content
in other languages for the timezone (eg Spanish, French for US and EU time
zone). Apache communities are diverse and global so if you are interested
in (or more comfortable) submitting a talk in languages other than English
then please do.

There is currently a proposal to run a Mandarin track initially focussed
on various Apache projects but I think it might be good to get some
community related talks too. So if you would like to do an Apache Way or
community related talk in Mandarin then please submit it to CFP.

Also if any of our ALCs are interested in putting together a track in
their audience language then please let me know as this could be another
potential way us to have additional content.

Through ApacheCon @Home we have a great opportunity to reach out to a
wider audience so let's make use of all the ways we can.

Thanks
Sharan

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



Re: ApacheCon @Home CFP Submissions in Different Languages

2020-07-12 Thread Juan Pan
Hi Sharan,


Much appreciated your detailed explanation, 
which also helps others learn more about this proposal I think. :-)
Make sense to me now. Thanks.


Cheers,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/12/2020 23:00,Sharan Foga wrote:
Hi Trista

Have included some comments inline.

On 2020/07/12 12:23:00, "Juan Pan"  wrote:
Hi Sharan,


It looks a good news. :-)
Besides, two questions confused me,
1. If one wants to post a topic talking in other languages,  any categories on 
CFP is ok? Or some specific ones?

You can submit your talk to any category so please choose the one that best 
fits the talk.
All the track chairs (i.e.the people selecting and preparing the tracks) can 
see everything that has been submitted. This means that if we see anything that 
is better in another category - we can contact each other to discuss it and get 
things moved.

As Sheng Wu mentions the proposal for a track in Mandarin is receiving a lot of 
support. So if someone submits a community talk in Mandarin then it might be 
good to see if it fits in the existing track. If we get 5 or more submissions 
for community related talks in Mandarin then it might be simpler to run a 
second Mandarin track focussed on community topics so this could run in 
parallel to the first one.


2. If there is no sufficient talkings in one language for that timezone,what 
will happen?


If we get no talks submitted or selected for a specific language then we cannot 
run anything for that timezone. If we get at least one submission that is 
selected, then we can run it no problem. What we might try to do is combine the 
talks in specific languages together so they can come from any category.


Looking forward to your help, and if I missed something, please tell me.


Hope this answers your questions. If you need any more clarification then 
please let me know ;-)

Thanks
Sharan


Best wishes,
Trista


Juan Pan (Trista)

Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/11/2020 15:43,Sharan Foga wrote:

Hi All

We are looking for talks in other languages than English for ApacheCon @Home. 
As the conference will be online it means that we can run tracks for specific 
time zones. Initial thoughts are something that could be US friendly, EU 
friendly and China friendly.

This means that as well as English we could run specific community content in 
other languages for the timezone (eg Spanish, French for US and EU time zone). 
Apache communities are diverse and global so if you are interested in (or more 
comfortable) submitting a talk in languages other than English then please do.

There is currently a proposal to run a Mandarin track initially focussed on 
various Apache projects but I think it might be good to get some community 
related talks too. So if you would like to do an Apache Way or community 
related talk in Mandarin then please submit it to CFP.

Also if any of our ALCs are interested in putting together a track in their 
audience language then please let me know as this could be another potential 
way us to have additional content.

Through ApacheCon @Home we have a great opportunity to reach out to a wider 
audience so let's make use of all the ways we can.

Thanks
Sharan

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:ApacheCon @Home CFP Submissions in Different Languages

2020-07-12 Thread Juan Pan
Hi Sharan,


It looks a good news. :-) 
Besides, two questions confused me,
1. If one wants to post a topic talking in other languages,  any categories on 
CFP is ok? Or some specific ones?
2. If there is no sufficient talkings in one language for that timezone,what 
will happen? 


Looking forward to your help, and if I missed something, please tell me.


Best wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 07/11/2020 15:43,Sharan Foga wrote:

Hi All

We are looking for talks in other languages than English for ApacheCon @Home. 
As the conference will be online it means that we can run tracks for specific 
time zones. Initial thoughts are something that could be US friendly, EU 
friendly and China friendly.

This means that as well as English we could run specific community content in 
other languages for the timezone (eg Spanish, French for US and EU time zone). 
Apache communities are diverse and global so if you are interested in (or more 
comfortable) submitting a talk in languages other than English then please do.

There is currently a proposal to run a Mandarin track initially focussed on 
various Apache projects but I think it might be good to get some community 
related talks too. So if you would like to do an Apache Way or community 
related talk in Mandarin then please submit it to CFP.

Also if any of our ALCs are interested in putting together a track in their 
audience language then please let me know as this could be another potential 
way us to have additional content.

Through ApacheCon @Home we have a great opportunity to reach out to a wider 
audience so let's make use of all the ways we can.

Thanks
Sharan

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:Feathercast interview schedule

2020-06-21 Thread Juan Pan
Hi Rich,


I have responded to your previous thread, 
but I am unsure whether I need to reply to this email again.
In case, here is my info,


Project name  Apache ShardingSphere
Your name  Juan Pan (Trista)
Your email address panj...@apache.org
Your time zone UTC/GMT +8 (Beijing, China)


Best wishes,
Trista




 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 06/19/2020 23:20,Rich Bowen wrote:
Hi again, folks,

I have allowed my backlog of recorded Feathercast interviews to run dry,
and I need to schedule some more. If you are interested in doing a
Feathercast for your project, please respond (preferably offlist) with

Project name
Your name
Your email address
Your time zone

and I'll add you to my spreadsheet. Thanks.

--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re:Trillions and Trillions Served, is hosted on the China Local Video Platform

2020-06-15 Thread Juan Pan
Thanks Sheng,


I watched and gave my like to this video on Youtube! 
Spectacular scenes and valuable sharing. :-)


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 06/16/2020 10:32,Sheng Wu wrote:
Hi ALC Beijing, Sally, Michael, Dominik and All

I am glad to share, the video, Trillions and Trillions Served[1], has been
online at the China local platform[2], hosted by Apache SkyWalking account,

https://www.bilibili.com/video/BV1Uz411i7MH

Also, in order to get more people to watch it, I have reached Jiansheng(ALC
Beijing) and Ted Liu(ASF Member) to see what we could do to provide Chinese
subtitles for this.

Thanks all for helping me.

[1] https://www.youtube.com/watch?v=JUt2nb0mgwg&feature=youtu.be
[2] Notice, as Youtube is not accessible inside China, we organized this.


Sheng Wu 吴晟
Twitter, wusheng1108


Re: [ALC Beijing][Podcast] Inivite APISIX community member talking to open source and project.

2020-06-09 Thread Juan Pan
Look forward to listening to the story of the APISIX community. :-)


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 06/9/2020 15:46,Ming Wen wrote:
Hi, jiansheng,
I am Apache APISIX PPMC member, I am interested this topic.

Thanks,
Ming Wen, Apache APISIX & Apache SkyWalking
Twitter: _WenMing


适兕  于2020年6月9日周二 下午3:26写道:

Hi:
APISIX  member, committer , PMC ,

ALC  Beijing [1] podcast is a spread apache way and open source, and we
have already recorded 3 issues [2]. This weekend we want to record new
episode. We inviting  project APISIX developer  and advocator to
participate.

If you are interested this, Please let me know.

Notes:
1. because limited resource, only 1~2 member attend this. first come first
served.
2. Mandarin only

[1] https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2] https://alc-beijing.github.io/alc-site/

Best regards!



Re:Fwd: Multilingual Content (forwarded from apachecon planners discussion)

2020-05-31 Thread Juan Pan
Hi


+1 from me.
It is a great idea to have multilingual tracks or presentations for 
no-so-fluent English speakers, 
which will help those easily understand the talking. 
Also, it needs more effort to do so, especially multilingual recordings. 
But for me, I am in favor of it. Maybe we can try to pick up some easy or 
important ones for starting.


Best wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 05/30/2020 07:32,Craig Russell wrote:
I think this may be worth a discussion here. I am totally in favor of being 
more inclusive by having presentations about Apache in multiple languages.

There have been many presentations to non-English-native-listeners about Apache 
topics.

I am a small bit concerned that translations of presentations might not fully 
capture the content of the original. Seeing a presentation in English by an 
English speaker and seeing the translated presentation in e.g. Chinese by a 
Chinese speaker is possibly not a good way to verify that the message was 
completely translated.

Would it be too much to ask for such presentations to include on each slide 
both the English and Chinese? I understand that there are challenges with this 
approach but it would perhaps make it easier to verify that the translation is 
topic-by-topic. It might also make "the same talk in two recordings" easier to 
implement.

Regards,
Craig

Begin forwarded message:

From: Julian Feinauer 
Subject: Multilangual Content
Date: May 29, 2020 at 4:10:04 AM PDT
To: "plann...@apachecon.com" 
Reply-To: plann...@apachecon.com

Hi all,

I considered organizing a Track for the IoTDB project. This project is (like 
others also) with strong community in China. And we are „bilateral“ in the 
project as we try to provide enough information in both languages that also the 
not-so-fluent english speaking Chinese Community can follow.

Would it be possible to have presentations / videos in other Languages? Or 
probably the same talk in two recordings?
Are there general objections with the idea? I think this could be really cool 
for projects like IoTDB to reach the Chinese Community.

Julian

Craig L Russell
c...@apache.org



Re: Lightning Talk at Microsoft Build 2020 and generic Apache Presentation Template

2020-05-26 Thread Juan Pan
Hi Piergiorgio,


Thanks for your extra effort for this generic Template. 


I gave a look at it, and It seems simple and helpful for people who plan to 
share. :-)


Best,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 05/26/2020 17:51,Piergiorgio Lucidi wrote:
Hi,

I have just created a new page in our wiki to collect some generic Apache
Presentation Templates [1].
If you have any generic presentation templates that you think can be useful
for anyone, please upload it in this page.

Cheers,
PJ

[1] -
https://cwiki.apache.org/confluence/display/COMDEV/Apache+Presentation+Templates


Il giorno ven 15 mag 2020 alle ore 17:48 Piergiorgio Lucidi <
piergior...@apache.org> ha scritto:

Hi,

I was invited by Microsoft to keep a session during the Virtual Build
conference.
They are arranging a specific branch of the conference the next Wednesday
and it will be in italian language. My session will be during the Open
Source slot, I'll talk about the Foundation basics in around 5 minutes :-P

After me there will be also Alessio Biancalana talking about Apache
CouchDB, Alessio became a Committer of the project in February.

Considering this new involvement, I have just created a generic template
for our presentations that could be available for everyone who wants to
prepare any Apache related session at conferences. The template is a new
version of the last one found in the speaker FAQ page of ApacheConNA19:
https://www.apachecon.com/acna19/ApacheCon.pptx
<https://www.apachecon.com/acna19/speaker_faq.html>

So I started from this template and I created a new one more generic,
practically I only changed the ApacheCon logo with the Foundation logo and
the ApacheCon feather with an Apache Way feather. You can take a look at
the new template from this Google Drive shared folder where you will find
two formats (pptx and odp):
https://drive.google.com/open?id=1AVczZBIc8SpN7VFRk1wth5-dhri8ppJG

I'm wondering if it can be published in our wiki or privately comdev or
committers folder.

Please let me know your feedback.
Have a nice day.

Cheers,
PJ

--
Piergiorgio



--
Piergiorgio


Re: Feathercast scheduling

2020-05-13 Thread Juan Pan
Hi Rich,


Thanks for your reply, and it looks like many of us look forward to your coming 
back. :-)


Regards,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 05/13/2020 22:26,Rich Bowen wrote:


On 5/12/20 10:50 PM, Juan Pan wrote:
Hi Rich,


I watched Feathercast on youtu.be, and they are interesting!
As PMC of Apache ShardingSphere, I’d like to share our story if you get back to 
be available.

Thank you. I have added you to my running spreadsheet, and will be in
touch the next time I have available interview times.



Best wishes,
Trista


Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 04/14/2020 00:45,Rich Bowen wrote:
I see your request for access to the doc. I need to figure out what
recording times I have available this week and (possibly) next week, and
make those available. I'll get back to you.

--Rich

On 4/13/20 12:30 PM, Dmitriy Pavlov wrote:
Dear Com.Devs,

I would be happy to say a couple of words about Apache Ignite.

I've requested permissions to add myself to the list. Thank you.

Sincerely,
Dmitriy Pavlov

ср, 1 апр. 2020 г. в 19:49, Rich Bowen :

I should clarify - I'll do a second scheduling once I've cleared the queue.
There will be other opportunities.

Shosholoza,
Rich


On Wed, Apr 1, 2020, 12:03 Rich Bowen  wrote:

I'm not sure who Gian is, who wishes to speak for Druid. Thanks for your
willingness. However, the times listed in that document are the only
times that I have available. Please don't add extra times to the list,
since I won't be available then.

Thanks.
--Rich

On 3/31/20 12:51 PM, Rich Bowen wrote:
Hi, friends,

I'm hoping to reboot Feathercast (yeah, I know, I've said this before)
next week, around the original theme of "Yeah, but what does it *DO*?"
that we used to do in the old days.

To that end, I have a list of all of the projects (as of today,
anyways!) here:


https://docs.google.com/spreadsheets/d/1jXP89WzTDiOS2QaSeKGyz6M_z71HI0lYOzVFnnZ-EAo/edit?usp=sharing


And I have a boilerplate script, here:


https://docs.google.com/document/d/1FZzloEiCf2qxm9Q4Ipq6i-2mkykdKfvuNaqOpRf901w/edit?usp=sharing


What I'd like, short term, is a couple of "friendly" projects that I
can
get started with. Perhaps people who are excited about their project,
are used to being interviews, and can get us off on a good start.

If you are interested in volunteering for this, please let me know, and
we'll schedule something.

Thanks!


--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen




--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: Feathercast scheduling

2020-05-12 Thread Juan Pan
Hi Rich,


I watched Feathercast on youtu.be, and they are interesting!
As PMC of Apache ShardingSphere, I’d like to share our story if you get back to 
be available.


Best wishes,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 04/14/2020 00:45,Rich Bowen wrote:
I see your request for access to the doc. I need to figure out what
recording times I have available this week and (possibly) next week, and
make those available. I'll get back to you.

--Rich

On 4/13/20 12:30 PM, Dmitriy Pavlov wrote:
Dear Com.Devs,

I would be happy to say a couple of words about Apache Ignite.

I've requested permissions to add myself to the list. Thank you.

Sincerely,
Dmitriy Pavlov

ср, 1 апр. 2020 г. в 19:49, Rich Bowen :

I should clarify - I'll do a second scheduling once I've cleared the queue.
There will be other opportunities.

Shosholoza,
Rich


On Wed, Apr 1, 2020, 12:03 Rich Bowen  wrote:

I'm not sure who Gian is, who wishes to speak for Druid. Thanks for your
willingness. However, the times listed in that document are the only
times that I have available. Please don't add extra times to the list,
since I won't be available then.

Thanks.
--Rich

On 3/31/20 12:51 PM, Rich Bowen wrote:
Hi, friends,

I'm hoping to reboot Feathercast (yeah, I know, I've said this before)
next week, around the original theme of "Yeah, but what does it *DO*?"
that we used to do in the old days.

To that end, I have a list of all of the projects (as of today,
anyways!) here:


https://docs.google.com/spreadsheets/d/1jXP89WzTDiOS2QaSeKGyz6M_z71HI0lYOzVFnnZ-EAo/edit?usp=sharing


And I have a boilerplate script, here:


https://docs.google.com/document/d/1FZzloEiCf2qxm9Q4Ipq6i-2mkykdKfvuNaqOpRf901w/edit?usp=sharing


What I'd like, short term, is a couple of "friendly" projects that I
can
get started with. Perhaps people who are excited about their project,
are used to being interviews, and can get us off on a good start.

If you are interested in volunteering for this, please let me know, and
we'll schedule something.

Thanks!


--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen




--
Rich Bowen - rbo...@rcbowen.com
http://rcbowen.com/
@rbowen

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: [ALC Beijing][Podcast] Episode 2-An incubator journey of Apache ShardingSphere community

2020-05-08 Thread Juan Pan
Hi Sheng,


At present, five committers have expressed their desire 
to participate on the dev thread of Apache ShardingSphere.
Although five committers are enough, 
welcome if you would like, our important member! :)


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 05/8/2020 20:51,Sheng Wu wrote:
Hi Juan

I will be there, but, if any new committer wants to be a guest, I prefer he
could replace me :)
The new committer ASF experience should be more interesting, mine is more
about the incubator process and watching a successful community from a
prototype author.

How about sending this invitation to the dev mail list?

Sheng Wu 吴晟
Twitter, wusheng1108


Juan Pan  于2020年5月8日周五 下午2:56写道:

Hi everyone,




As an interesting part of ALC Beijing activities,

we invite Apache ShardingSphere community to be the honored guest to share
their incubator story

in our Podcast episode 2.




Here is a brief introduction,




Activity: Podcast episode 2

Honored guests: Liang Zhang (John), Jinwei Qin(Kimming), Juan Pan(Trista),
Sheng wu

Hosts: Willem Jiang, Jiansheng Li

Scheduled time: May 10th (GMT+8)

Zoom room: Pending

Language: Chinese




@Jiansheng, could you give more updates later?




BTW, our first Podcast concerning Apache Skywalking is now live,

and the following link will redirect you to the show.

https://www.bilibili.com/audio/au1533358?type=3




Last but not least, if you'd like to take part in this kind of activity,

please hand up with an email in ml or an issue at
https://github.com/alc-beijing.




Best wishes,

Trista




Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org






Re: [ALC Beijing][Podcast] Episode 2-An incubator journey of Apache ShardingSphere community

2020-05-08 Thread Juan Pan
Hi Jiansheng,


Thanks for your kind preparation, and see you then!


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 05/9/2020 10:15,适兕 wrote:
Hi, Juan

Thanks !

Because of  Zoom in China , My personal account  can not use anymore. So we
need switch to other online solution. So we try Tencent meeting this time.

Blow is login/attend information: ( Please download client/App before join
us. https://meeting.tencent.com )

适兕 邀请您参加腾讯会议
会议主题:ALC Beijing PodCast Episode #2 Talk
会议时间:2020/5/10 21:00-22:00

点击链接直接加入会议:
https://meeting.tencent.com/s/55nHl6xcd2a0

会议 ID:762 971 492
会议密码:0101

手机一键拨号入会
+867553655,,762971492# (中国大陆)
+85230018898,,,2,762971492# (中国香港)

根据您的位置拨号
+867553655 (中国大陆)
+85230018898 (中国香港)

Feedback is gift.


On Fri, May 8, 2020 at 8:51 PM Sheng Wu  wrote:

Hi Juan

I will be there, but, if any new committer wants to be a guest, I prefer he
could replace me :)
The new committer ASF experience should be more interesting, mine is more
about the incubator process and watching a successful community from a
prototype author.

How about sending this invitation to the dev mail list?

Sheng Wu 吴晟
Twitter, wusheng1108


Juan Pan  于2020年5月8日周五 下午2:56写道:

Hi everyone,




As an interesting part of ALC Beijing activities,

we invite Apache ShardingSphere community to be the honored guest to
share
their incubator story

in our Podcast episode 2.




Here is a brief introduction,




Activity: Podcast episode 2

Honored guests: Liang Zhang (John), Jinwei Qin(Kimming), Juan
Pan(Trista),
Sheng wu

Hosts: Willem Jiang, Jiansheng Li

Scheduled time: May 10th (GMT+8)

Zoom room: Pending

Language: Chinese




@Jiansheng, could you give more updates later?




BTW, our first Podcast concerning Apache Skywalking is now live,

and the following link will redirect you to the show.

https://www.bilibili.com/audio/au1533358?type=3




Last but not least, if you'd like to take part in this kind of activity,

please hand up with an email in ml or an issue at
https://github.com/alc-beijing.




Best wishes,

Trista




Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org







--
Welcome to http://opensourceway.community! The open source way:  Dedicated
to the exploration of ideas, knowledge and values related to open source.


[ALC Beijing][Podcast] Episode 2-An incubator journey of Apache ShardingSphere community

2020-05-07 Thread Juan Pan
Hi everyone,




As an interesting part of ALC Beijing activities, 

we invite Apache ShardingSphere community to be the honored guest to share 
their incubator story 

in our Podcast episode 2.




Here is a brief introduction,




Activity: Podcast episode 2

Honored guests: Liang Zhang (John), Jinwei Qin(Kimming), Juan Pan(Trista), 
Sheng wu

Hosts: Willem Jiang, Jiansheng Li

Scheduled time: May 10th (GMT+8)

Zoom room: Pending

Language: Chinese




@Jiansheng, could you give more updates later?




BTW, our first Podcast concerning Apache Skywalking is now live, 

and the following link will redirect you to the show.

https://www.bilibili.com/audio/au1533358?type=3




Last but not least, if you'd like to take part in this kind of activity, 

please hand up with an email in ml or an issue at 
https://github.com/alc-beijing.




Best wishes,

Trista




 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org





Re:[ALC Beijing][DISUCSS] How about make a Podcast for Apache APISIX?

2020-04-26 Thread Juan Pan
I am glad to see more our fellows stand up, welcome!
AFAIK, our first podcast was online, and the next one is under preparation, so 
it is better to ask Jiansheng for schedule. :)


Best,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 04/27/2020 09:12,Ming Wen wrote:
Hello, ALC Beijing community,
I'm an Apache APISIX PPMC member, and although I'm not in Beijing, quite a
few of the Apache APISIX contributors are in China.
I'd like to talk about Apache APISIX on the ALC Beijing podcast with APISIX
committers, what do you think?

Thanks,
Ming Wen, Apache APISIX & Apache SkyWalking
Twitter: _WenMing


Re: [ALC Beijing][Podcast] invite SkyWalking community member talking all about SkyWalking

2020-04-05 Thread Juan Pan
Hi Jianshen


Maybe we can consider raising the interview questions firstly. And then Sheng, 
Willem and Zhenxu could give us their intended date for preparation. Besides we 
should set aside some time for other things, like promotion preparation or 
discussing the detail? 


I'd like to listen to your idea, as you are a veteran.


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org


On 04/05/2020 20:20, Sheng Wu wrote:
When the questions will be ready to review/discuss?
Sunday evening, 9-10 pm?

Zhenxu
When are you available? Is Sunday a good option?

Sheng Wu 吴晟
Twitter, wusheng1108


Juan Pan  于2020年4月5日周日 下午8:18写道:

> Hi  Jianshen,
>
>
> I am available on April 12th(Sunday), and i'd like to  listen to others'
> reply.
> BTW, this time is for our podcast, right? That is, it is supposed to
> finish our preparation during next weekday?
>
>
> Cheers,
> Trista
>
>
>  Juan Pan (Trista)
>
> Senior DBA & PPMC of Apache ShardingSphere(Incubating)
> E-mail: panj...@apache.org
>
>
> On 04/04/2020 10:47, 适兕 wrote:
> Hi, Trista
>
> I think it is ok.
> next, let us discuss the time , When it is going?  next weekend?  4.11 pm
> 9:00~ 10:00
>
> If this time is not suitable for you,Please let me know.
>
>
> On Thu, Apr 2, 2020 at 12:31 PM Juan Pan  wrote:
>
> > Hi Jianshen,
> >
> >
> > So we have three honor guests and remain two hosts, you and me?
> >
> >
> >  Juan Pan (Trista)
> >
> > Senior DBA & PPMC of Apache ShardingSphere(Incubating)
> > E-mail: panj...@apache.org
> >
> >
> >
> >
> > On 04/1/2020 20:37,Sheng Wu wrote:
> > Seems we have 3 SkyWalking PMC members in place :)
> >
> > - Sheng Wu, Project Founder, VP and PMC
> > - Willem Jiang, Incubator mentor, and PMC
> > - Zhenxu Ke, PMC, and one of the top 5 contributors joined much later
> than
> > initial committers.
> >
> > Jianshen
> > Once you have the draft of this broadcast, please let's know.
> >
> > Sheng Wu 吴晟
> > Twitter, wusheng1108
> >
> >
> > Willem Jiang  于2020年4月1日周三 下午12:46写道:
> >
> > I can give a hand on this podcast to share my experience from mentor
> > perspective.
> > Please let me know what I need to do next.
> >
> > Willem Jiang
> >
> > Twitter: willemjiang
> > Weibo: 姜宁willem
> >
> > On Tue, Mar 31, 2020 at 11:07 AM 适兕  wrote:
> >
> > Hi:
> > SkyWalking member, committer , PMC ,
> >
> > As you know , ALC  Beijing [1] is ready,  we want to do lots of things ,
> > podcast is one of them , others like write/promote articles, organize
> > local/online event etc.
> >
> > As (ALC  Beijing  Podcast ) first show,we hope invite SkyWalking project
> > as Podcast Episode 1 : Let's talk about SkyWalking. (
> > 让我们聊聊SkyWalking有趣的事)
> > If you are interested this, Please let me know.
> >
> > notes: because limited resource, only 1~2 member attend this. first come
> > first served.
> >
> > [1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
> > [2]
> >
> >
> >
> https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq
> >
> >
> > --
> > Welcome to http://opensourceway.community! The open source way:
> > Dedicated
> > to the exploration of ideas, knowledge and values related to open source.
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
> > For additional commands, e-mail: dev-h...@community.apache.org
> >
> >
> >
>
> --
> Welcome to http://opensourceway.community! The open source way:  Dedicated
> to the exploration of ideas, knowledge and values related to open source.
>


Re: [ALC Beijing][Podcast] invite SkyWalking community member talking all about SkyWalking

2020-04-05 Thread Juan Pan
Hi  Jianshen,


I am available on April 12th(Sunday), and i'd like to  listen to others' reply.
BTW, this time is for our podcast, right? That is, it is supposed to finish our 
preparation during next weekday?


Cheers,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org


On 04/04/2020 10:47, 适兕 wrote:
Hi, Trista

I think it is ok.
next, let us discuss the time , When it is going?  next weekend?  4.11 pm
9:00~ 10:00

If this time is not suitable for you,Please let me know.


On Thu, Apr 2, 2020 at 12:31 PM Juan Pan  wrote:

> Hi Jianshen,
>
>
> So we have three honor guests and remain two hosts, you and me?
>
>
>  Juan Pan (Trista)
>
> Senior DBA & PPMC of Apache ShardingSphere(Incubating)
> E-mail: panj...@apache.org
>
>
>
>
> On 04/1/2020 20:37,Sheng Wu wrote:
> Seems we have 3 SkyWalking PMC members in place :)
>
> - Sheng Wu, Project Founder, VP and PMC
> - Willem Jiang, Incubator mentor, and PMC
> - Zhenxu Ke, PMC, and one of the top 5 contributors joined much later than
> initial committers.
>
> Jianshen
> Once you have the draft of this broadcast, please let's know.
>
> Sheng Wu 吴晟
> Twitter, wusheng1108
>
>
> Willem Jiang  于2020年4月1日周三 下午12:46写道:
>
> I can give a hand on this podcast to share my experience from mentor
> perspective.
> Please let me know what I need to do next.
>
> Willem Jiang
>
> Twitter: willemjiang
> Weibo: 姜宁willem
>
> On Tue, Mar 31, 2020 at 11:07 AM 适兕  wrote:
>
> Hi:
> SkyWalking member, committer , PMC ,
>
> As you know , ALC  Beijing [1] is ready,  we want to do lots of things ,
> podcast is one of them , others like write/promote articles, organize
> local/online event etc.
>
> As (ALC  Beijing  Podcast ) first show,we hope invite SkyWalking project
> as Podcast Episode 1 : Let's talk about SkyWalking. (
> 让我们聊聊SkyWalking有趣的事)
> If you are interested this, Please let me know.
>
> notes: because limited resource, only 1~2 member attend this. first come
> first served.
>
> [1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
> [2]
>
>
> https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq
>
>
> --
> Welcome to http://opensourceway.community! The open source way:
> Dedicated
> to the exploration of ideas, knowledge and values related to open source.
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
> For additional commands, e-mail: dev-h...@community.apache.org
>
>
>

--
Welcome to http://opensourceway.community! The open source way:  Dedicated
to the exploration of ideas, knowledge and values related to open source.


Re:[VOTE] ALC Website with Git/Hugo framework

2020-04-01 Thread Juan Pan
+1 (non-binding)


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 04/1/2020 13:30,Swapnil M Mane wrote:
Hello team,

We had a discussion on setting up the Apache Local Community (ALC) [1]
initiative website at
https://s.apache.org/4ge6w

Here is the summary for the discussion,

1. ALC website will be hosted at alc.apache.org
2. Each chapter will have subpage like alc.apache.org/beijing
And a new post can be contributed by ALC Chapter to their spaces.
3. The Hugo framework will be used for building the website.

Looking at the thread seems a majority of people are in agreement with
setting up the site.
I would like to initiate a formal vote for establishing the ALC
Website with Git/Hugo.

Please vote:
[ ] +1 to setup ALC Website with Git/Hugo
[ ] -1 for not having ALC Website


[1] https://s.apache.org/alc

Best regards,
Swapnil M Mane,
www.apache.org

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: [ALC Beijing][Podcast] invite SkyWalking community member talking all about SkyWalking

2020-04-01 Thread Juan Pan
Hi Jianshen,


So we have three honor guests and remain two hosts, you and me?


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 04/1/2020 20:37,Sheng Wu wrote:
Seems we have 3 SkyWalking PMC members in place :)

- Sheng Wu, Project Founder, VP and PMC
- Willem Jiang, Incubator mentor, and PMC
- Zhenxu Ke, PMC, and one of the top 5 contributors joined much later than
initial committers.

Jianshen
Once you have the draft of this broadcast, please let's know.

Sheng Wu 吴晟
Twitter, wusheng1108


Willem Jiang  于2020年4月1日周三 下午12:46写道:

I can give a hand on this podcast to share my experience from mentor
perspective.
Please let me know what I need to do next.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Tue, Mar 31, 2020 at 11:07 AM 适兕  wrote:

Hi:
SkyWalking member, committer , PMC ,

As you know , ALC  Beijing [1] is ready,  we want to do lots of things ,
podcast is one of them , others like write/promote articles, organize
local/online event etc.

As (ALC  Beijing  Podcast ) first show,we hope invite SkyWalking project
as Podcast Episode 1 : Let's talk about SkyWalking. (
让我们聊聊SkyWalking有趣的事)
If you are interested this, Please let me know.

notes: because limited resource, only 1~2 member attend this. first come
first served.

[1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2]

https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq


--
Welcome to http://opensourceway.community! The open source way:
Dedicated
to the exploration of ideas, knowledge and values related to open source.

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org




Re: [ALC Beijing][Podcast] invite SkyWalking community member talking all about SkyWalking

2020-03-31 Thread Juan Pan
Great, make sense to me.


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/31/2020 12:21,适兕 wrote:
Hi, Trista

Thanks for your reply,

As Host , We need prepare for some questions, especially when it comes to
specific technical details, community building  and architecture.

About time, I think when we invited guest speakers , then make a decision
after discuss. Any day in April.



On Tue, Mar 31, 2020 at 11:59 AM Juan Pan  wrote:

Hi
I gave a quick look on [1], however i did not find the exact time and
preparation todo list for us.
If I missed something, please correct me.
Thanks.


[1]
https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq


Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/31/2020 11:09,适兕 wrote:
Hi:
SkyWalking member, committer , PMC ,

As you know , ALC  Beijing [1] is ready,  we want to do lots of things ,
podcast is one of them , others like write/promote articles, organize
local/online event etc.

As (ALC  Beijing  Podcast ) first show,we hope invite SkyWalking project
as Podcast Episode 1 : Let's talk about SkyWalking. ( 让我们聊聊SkyWalking有趣的事)
If you are interested this, Please let me know.

notes: because limited resource, only 1~2 member attend this. first come
first served.

[1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2]

https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq


--
Welcome to http://opensourceway.community! The open source way:  Dedicated
to the exploration of ideas, knowledge and values related to open source.



--
Welcome to http://opensourceway.community! The open source way:  Dedicated
to the exploration of ideas, knowledge and values related to open source.


Re:[ALC Beijing][Podcast] invite SkyWalking community member talking all about SkyWalking

2020-03-30 Thread Juan Pan
Hi
I gave a quick look on [1], however i did not find the exact time and 
preparation todo list for us. 
If I missed something, please correct me. 
Thanks.


[1] 
https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/31/2020 11:09,适兕 wrote:
Hi:
SkyWalking member, committer , PMC ,

As you know , ALC  Beijing [1] is ready,  we want to do lots of things ,
podcast is one of them , others like write/promote articles, organize
local/online event etc.

As (ALC  Beijing  Podcast ) first show,we hope invite SkyWalking project
as Podcast Episode 1 : Let's talk about SkyWalking. ( 让我们聊聊SkyWalking有趣的事)
If you are interested this, Please let me know.

notes: because limited resource, only 1~2 member attend this. first come
first served.

[1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing
[2]
https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit#heading=h.vc1v9p9ru4sq


--
Welcome to http://opensourceway.community! The open source way:  Dedicated
to the exploration of ideas, knowledge and values related to open source.


Re:[ALC Beijing] Proposal: Set up ALC Beijing Podcast (Mandarin)

2020-03-23 Thread Juan Pan
Glad to see many communities get together,  ShardingSphere community is willing 
to interact with other communities. :)
+1


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 18:00,适兕 wrote:
Hi,apache community members

I was host podcast, Talking about open source related in Mandarin. Have
some experience, and the effect is also good, it is a good spread channel.
So I write an document[2] for set up ALC  Beijing Podcast.

Any input is welcome!

[1].
http://opensourceway.community/posts/opensource_talking/2020-done-and-plan-index/
[2].
https://docs.google.com/document/d/1vT07pdk9AnDKilCOTaKkQfQEAMR-4gkatOOd8OFsjNY/edit?usp=sharing


Re: How about we hold a online meeting of ALC Beijing this thursday?

2020-03-23 Thread Juan Pan
Sorry, to correct it, i.e,  bi-weekly meeting at 10:00PM looks good to me.


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 19:12,Juan Pan wrote:
Thanks, bi-weekly meeting at 10:30PM, LGTM.






 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 18:35,Willem Jiang wrote:
It's bi-weekly meeting, I will update the meeting page for it.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 6:30 PM Juan Pan  wrote:

BTW, is it regular meeting at firm time every week, or held when needed?
Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 17:08,Willem Jiang wrote:
+1, I think we can hold the meeting around 10 PM.
Any thought?

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 4:57 PM Jeff Zhang  wrote:

How about make it at 10 pm or 10:30 pm ? because I am afraid more people
are unavailable on weekend days.


zhangli...@apache.org  于2020年3月23日周一 下午4:49写道:

Hi,

How about change the meeting to another time? I want join the meeting but I
am not free on night of working day.

--

Liang Zhang (John)
Apache ShardingSphere & Dubbo


Sheng Wu  于2020年2月25日周二 下午1:52写道:

Same for me. Let's keep this on the mail list, even on slack.
There are too many talks on the WeChat, I have no time to follow.

Sheng Wu 吴晟
Twitter, wusheng1108


适兕  于2020年2月25日周二 上午11:38写道:

Hi,
Jeff

I don't think we need create wechat group. It's not a good idea.

wechat group is not friendship for last join. and it's can't archive
,btw,
Google search nothing.  WeChat is not open.

Should we setup a webchat group first ?

Jeff Zhang  于2020年2月25日周二 上午8:55写道:

Works for me if it is 9:30

Xiangdong Huang  于2020年2月24日周一 下午11:54写道:

Hi,

It would be great if we can put off half an hour...
I have a short 10-minute meeting at 9 o'clock.

Best,
---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院


Willem Jiang  于2020年2月24日周一 下午11:23写道:

Hi,

I think we could hold a online meeting through Zoom this Thursday
(27th Feb) night around 9:00 PM Beijing time.
It could be great if we introduce each other and talk about the
meetup
plan in the coming up month. We will send a mail to the mailing
list
to summarize the discussion we have.

Please let me know if the time works for you.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang



--
Best Regards

Jeff Zhang



--
独立之思想,自由之精神。
--陈寅恪





--
Best Regards

Jeff Zhang

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: How about we hold a online meeting of ALC Beijing this thursday?

2020-03-23 Thread Juan Pan
Thanks, bi-weekly meeting at 10:30PM, LGTM.






 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 18:35,Willem Jiang wrote:
It's bi-weekly meeting, I will update the meeting page for it.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 6:30 PM Juan Pan  wrote:

BTW, is it regular meeting at firm time every week, or held when needed?
Juan Pan (Trista)

Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 17:08,Willem Jiang wrote:
+1, I think we can hold the meeting around 10 PM.
Any thought?

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 4:57 PM Jeff Zhang  wrote:

How about make it at 10 pm or 10:30 pm ? because I am afraid more people
are unavailable on weekend days.


zhangli...@apache.org  于2020年3月23日周一 下午4:49写道:

Hi,

How about change the meeting to another time? I want join the meeting but I
am not free on night of working day.

--

Liang Zhang (John)
Apache ShardingSphere & Dubbo


Sheng Wu  于2020年2月25日周二 下午1:52写道:

Same for me. Let's keep this on the mail list, even on slack.
There are too many talks on the WeChat, I have no time to follow.

Sheng Wu 吴晟
Twitter, wusheng1108


适兕  于2020年2月25日周二 上午11:38写道:

Hi,
Jeff

I don't think we need create wechat group. It's not a good idea.

wechat group is not friendship for last join. and it's can't archive
,btw,
Google search nothing.  WeChat is not open.

Should we setup a webchat group first ?

Jeff Zhang  于2020年2月25日周二 上午8:55写道:

Works for me if it is 9:30

Xiangdong Huang  于2020年2月24日周一 下午11:54写道:

Hi,

It would be great if we can put off half an hour...
I have a short 10-minute meeting at 9 o'clock.

Best,
---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院


Willem Jiang  于2020年2月24日周一 下午11:23写道:

Hi,

I think we could hold a online meeting through Zoom this Thursday
(27th Feb) night around 9:00 PM Beijing time.
It could be great if we introduce each other and talk about the
meetup
plan in the coming up month. We will send a mail to the mailing
list
to summarize the discussion we have.

Please let me know if the time works for you.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang



--
Best Regards

Jeff Zhang



--
独立之思想,自由之精神。
--陈寅恪





--
Best Regards

Jeff Zhang

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: How about we hold a online meeting of ALC Beijing this thursday?

2020-03-23 Thread Juan Pan
BTW, is it regular meeting at firm time every week, or held when needed?
 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 17:08,Willem Jiang wrote:
+1, I think we can hold the meeting around 10 PM.
Any thought?

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 4:57 PM Jeff Zhang  wrote:

How about make it at 10 pm or 10:30 pm ? because I am afraid more people
are unavailable on weekend days.


zhangli...@apache.org  于2020年3月23日周一 下午4:49写道:

Hi,

How about change the meeting to another time? I want join the meeting but I
am not free on night of working day.

--

Liang Zhang (John)
Apache ShardingSphere & Dubbo


Sheng Wu  于2020年2月25日周二 下午1:52写道:

Same for me. Let's keep this on the mail list, even on slack.
There are too many talks on the WeChat, I have no time to follow.

Sheng Wu 吴晟
Twitter, wusheng1108


适兕  于2020年2月25日周二 上午11:38写道:

Hi,
Jeff

I don't think we need create wechat group. It's not a good idea.

wechat group is not friendship for last join. and it's can't archive
,btw,
Google search nothing.  WeChat is not open.

Should we setup a webchat group first ?

Jeff Zhang  于2020年2月25日周二 上午8:55写道:

Works for me if it is 9:30

Xiangdong Huang  于2020年2月24日周一 下午11:54写道:

Hi,

It would be great if we can put off half an hour...
I have a short 10-minute meeting at 9 o'clock.

Best,
---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院


Willem Jiang  于2020年2月24日周一 下午11:23写道:

Hi,

I think we could hold a online meeting through Zoom this Thursday
(27th Feb) night around 9:00 PM Beijing time.
It could be great if we introduce each other and talk about the
meetup
plan in the coming up month. We will send a mail to the mailing
list
to summarize the discussion we have.

Please let me know if the time works for you.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang



--
Best Regards

Jeff Zhang



--
独立之思想,自由之精神。
--陈寅恪





--
Best Regards

Jeff Zhang

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: How about we hold a online meeting of ALC Beijing this thursday?

2020-03-23 Thread Juan Pan
10:30 PM is late for me, 10 PM is ok.


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 17:08,Willem Jiang wrote:
+1, I think we can hold the meeting around 10 PM.
Any thought?

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Mon, Mar 23, 2020 at 4:57 PM Jeff Zhang  wrote:

How about make it at 10 pm or 10:30 pm ? because I am afraid more people
are unavailable on weekend days.


zhangli...@apache.org  于2020年3月23日周一 下午4:49写道:

Hi,

How about change the meeting to another time? I want join the meeting but I
am not free on night of working day.

--

Liang Zhang (John)
Apache ShardingSphere & Dubbo


Sheng Wu  于2020年2月25日周二 下午1:52写道:

Same for me. Let's keep this on the mail list, even on slack.
There are too many talks on the WeChat, I have no time to follow.

Sheng Wu 吴晟
Twitter, wusheng1108


适兕  于2020年2月25日周二 上午11:38写道:

Hi,
Jeff

I don't think we need create wechat group. It's not a good idea.

wechat group is not friendship for last join. and it's can't archive
,btw,
Google search nothing.  WeChat is not open.

Should we setup a webchat group first ?

Jeff Zhang  于2020年2月25日周二 上午8:55写道:

Works for me if it is 9:30

Xiangdong Huang  于2020年2月24日周一 下午11:54写道:

Hi,

It would be great if we can put off half an hour...
I have a short 10-minute meeting at 9 o'clock.

Best,
---
Xiangdong Huang
School of Software, Tsinghua University

黄向东
清华大学 软件学院


Willem Jiang  于2020年2月24日周一 下午11:23写道:

Hi,

I think we could hold a online meeting through Zoom this Thursday
(27th Feb) night around 9:00 PM Beijing time.
It could be great if we introduce each other and talk about the
meetup
plan in the coming up month. We will send a mail to the mailing
list
to summarize the discussion we have.

Please let me know if the time works for you.

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Best Regards

Jeff Zhang



--
Best Regards

Jeff Zhang



--
独立之思想,自由之精神。
--陈寅恪





--
Best Regards

Jeff Zhang

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


Re: [ALC] Request to setup ALC in Beijing

2020-03-22 Thread Juan Pan
Hi Zhenxu and Yu,


Welcome your join, and I am glad to see our team keeps growing. :)


Cheers,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/23/2020 11:19,Yu Li wrote:
Sorry, forgot to mention my apache id: liyu

Best Regards,
Yu


On Mon, 23 Mar 2020 at 11:15, Yu Li  wrote:

Dear all,

May I also join? I'm a PMC member of Apache HBase and committer of Apache
Flink, and locate in Beijing. Thanks.

Best Regards,
Yu


On Sun, 22 Mar 2020 at 19:49, Sheng Wu  wrote:

Invited him into the slack.

Willem Jiang 于2020年3月22日 周日下午7:25写道:

Hi Zhenxu,

Thanks for reaching out,here are some information[1] about ALC-Beijing
and you can join the alc channel and hang out with us.

[1]https://cwiki.apache.org/confluence/display/COMDEV/ALC+Beijing

Willem Jiang

Twitter: willemjiang
Weibo: 姜宁willem

On Sun, Mar 22, 2020 at 6:42 PM Zhenxu Ke 
wrote:

Hi the community, I'm very interested in taking part to help promote
the
Apache culture, learn the Apache Way in depth, and contribute to the
community, now I'm a PMC member of the SkyWalking project and a
committer
of the Dubbo project, please let me know if there's anything that I can
help.

Thanks.

GitHub ID: kezhenxu94
Apache ID: kezhenxu94

On 2019/12/03 02:50:52, Willem Jiang  wrote:
Hi,

I'm Apache member and there are bunch of Apache project developers
in
Beijing I know.  ALC just give us a very good excuse to hand out and
hold meetup together.

Regards,

Willem


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org

--
Sheng Wu 吴晟

Apache SkyWalking
Apache Incubator
Apache ShardingSphere, ECharts, DolphinScheduler podlings
Zipkin
Twitter, wusheng1108




Re: Tools for online meetups and conferences

2020-03-15 Thread Juan Pan
Thanks for sharing, which is convincing. :)


Cheers,
Trista


 Juan Pan (Trista)
 
Senior DBA & PPMC of Apache ShardingSphere(Incubating)
E-mail: panj...@apache.org




On 03/15/2020 05:43,Ross Gardler wrote:
At work I teleconference about 50% of my meetings, often with people in 
bandwidth constrained environments. There are only two truly reliable platforms 
in my experience. Zoom and Teams. Everything else seems to have connectivity 
issues for at least one participant. Hangouts is pretty good in a "broadcast" 
scenario, i.e. one person speaking at a time, but I don't find it reliable in a 
meeting scenario. If you really want to meet many people in a broadcast 
scenario I think people should be looking to Twitch, Mixer or YouTube 
Streaming. All three have been proven to work with large numbers of watchers - 
though I have no personal experience.

I'll not list the ones that don't work in my experience, but I've not seen them 
mentioned in this thread yet (I've not used OpenMeetings in anything other than 
a quick test).

Ross



From: Tomasz Urbaszek 
Sent: Saturday, March 14, 2020 6:10 AM
To: dev
Subject: Re: Tools for online meetups and conferences

There's also an interesting possibility for G Suite users:

Through July 1, 2020, G Suite customers can use advanced Hangouts Meet video 
conference features like larger meetings (up to 250 participants), live 
streaming, and recording.

https://support.google.com/meet/answer/9760270?hl=en

T.


On Wed, Mar 11, 2020 at 6:13 PM Tomasz Urbaszek  wrote:

There's a whole list of interesting tools:
https://techagainstcoronavirus.com

T.

On Tue, Mar 10, 2020 at 3:25 PM Martijn Dashorst  
wrote:

The VJUG (Virtual Java User Group) does this all the time. AFAIK they use
youtube streaming.

https://virtualjug.com

Martijn


On Tue, Mar 10, 2020 at 2:27 PM Tomasz Urbaszek 
wrote:

Hi all,

The current situation with COVID19 pushes a lot of conferences and
meetups into digital space. I am wondering if any of you have already
experience in hosting such events online? Are there any OSS (or not)
tools that are worth mentioning?

It will be nice to hear suggestions, tips, and opinions from those who
organized or participated in such events :)

Thanks in advance,
Tomek Urbaszek

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org



--
Become a Wicket expert, learn from the best: http://wicketinaction.com

-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org


  1   2   >