Re:[VOTE]: Release Apache ShardingSphere (Incubating) 4.0.0-RC1 [ROUND 3]

2019-04-14 Thread Sion Yang
+1 approveChecked:[√] Download links are valid. [√] Checksums and PGP signatures are valid. [√] DISCLAIMER is included. [√] Source code artifacts have correct names matching the current release. [√] LICENSE and NOTICE files are correct for each ShardingSphere repo. [√] All files have license

Re:[VOTE] Accept OpenShardingUI Donation

2019-06-09 Thread Sion Yang
+1 -- Yi Yang(Sion) Apache ShardingSphere At 2019-06-08 11:16:49, "Chen QingYang" wrote: >Dear Apache ShardingSphere Incubator Community , > >After some discussions on the OpenShardingUI donation proposal, I would >like to start a vote on accepting OpenShardingUI into the Apache Incubator

Re:Re: [VOTE] Release Apache ShardingSphere (Incubating) 4.0.0-RC2 [ROUND 2]

2019-07-16 Thread Sion Yang
+1 approve, I checked: [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] DISCLAIMER is included. [X] Source code artifacts have correct names matching the current release. [X] LICENSE and NOTICE files are correct for each ShardingSphere repo. [X] All files have

Re:Boardcast select returns all records from all sharded databases

2019-07-01 Thread Sion Yang
Use `broadcastTables` please. Configuration like this: shardingRule: tables: other sharding table configuration broadcastTables: - your table Detail see https://shardingsphere.apache.org/document/current/en/manual/sharding-jdbc/configuration/config-yaml/ -- Yi

Re:[DISCUSS] Apache ShardingSphere (Incubating) 4.0.0-RC2 release [ROUND 1]

2019-07-01 Thread Sion Yang
I've just finish a set of tests for Sharding-Proxy with MySQL protocol on this release. I think there be not block issue, so we can continue to do release. -- Yi Yang(Sion) Apache ShardingSphere At 2019-06-27 15:54:30, "Zhang Yonglun" wrote: >Hello ShardingSphere Community, > >This is a

Re:[VOTE] Release Apache ShardingSphere (Incubating) 4.0.0-RC2 [ROUND 4]

2019-08-18 Thread Sion Yang
+1 The following checking items have been done. [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] DISCLAIMER is included. [X] Source code artifacts have correct names matching the current release. [X] LICENSE and NOTICE files are correct for each ShardingSphere

Re:[DISCUSS] Apache ShardingSphere (Incubating) 4.0.0-RC2 release [ROUND 4]

2019-08-13 Thread Sion Yang
I execute all examples. Most of examples execute successfully except encrypt in JPA with SpringBoot. The bug has marked `TODO` in example, and only affects part of encrypt. So i think we can continue to prepare our version 4.0.0-RC2. -- Yi Yang(Sion) Apache ShardingSphere At 2019-08-09

Re:Re:[DISCUSS] Apache ShardingSphere (Incubating) 4.0.0-RC2 release [ROUND 4]

2019-08-16 Thread Sion Yang
There are another issue[1] for encrypt in 4.0.0-RC2. Encrypt may replace table name with column so that the column in SQL become `column.column`. [1] https://github.com/apache/incubator-shardingsphere/issues/2883 -- Yi Yang(Sion) Apache ShardingSphere At 2019-08-13 18:38:13, "Sion

Re:Re:Re:[DISCUSS] Apache ShardingSphere (Incubating) 4.0.0-RC2 release [ROUND 4]

2019-08-16 Thread Sion Yang
-shardingsphere/issues/2884 -- Yi Yang(Sion) Apache ShardingSphere At 2019-08-16 17:09:48, "Sion Yang" wrote: >There are another issue[1] for encrypt in 4.0.0-RC2. >Encrypt may replace table name with column so that the column in SQL become >`column.column`. > > >[

Re:Re: [DISCUSS] Do we have to resolve issue #2884 in 4.0.0-RC2

2019-08-20 Thread Sion Yang
I think so, DML for encrypt can work well now. Users can create table by themselves instead of by JPA to solve the problem. We can complete DDL for encrypt at next release. -- Yi Yang(Sion) Apache ShardingSphere 在 2019-08-21 12:08:42,"zhangli...@apache.org" 写道: >Because it is not a

Re:How to use sharding jdbc with hint(如何在sharding jdbc中使用hint)

2019-09-01 Thread Sion Yang
Hi, It looks like you don't add shardingValue to `HintManager`. As the document show, you should add your shardingValue to `HintManager` before your execute your SQL. These codes come from document: ``` // Sharding database and table with using hintManager. String sql = "SELECT *

Re:Would sharded database has data integrity issue when a shard fail

2019-09-08 Thread Sion Yang
Hi, There are three kinds of distributed transaction in ShardingSphere, local, two phase commit and BASE. Default is local transaction. For local transaction, if the SQL execute failed before commit, all sharding data node will be rollback. If failed in commit, the other sharding data node

Re:Re: Would sharded database has data integrity issue when a shard fail

2019-09-08 Thread Sion Yang
-09-09 10:28:42, "Eric" wrote: >Hi Sion, > >Thank you. The document uses TransactionTypeHolder to modify transaction >type in Java. Is it possible to set it in proxy yaml file? > >Regards, >Eric Poon > >On Mon, Sep 9, 2019 at 8:45 AM Sion Yang wrote: &g

Re:Re: Re: Would sharded database has data integrity issue when a shard fail

2019-09-09 Thread Sion Yang
Is >it a custom Java program, command prompt, or inside a configuration file? > >Please help. > >Best Regards, >Eric Poon > >On Mon, Sep 9, 2019 at 10:52 AM Sion Yang wrote: > >> Do you use sharding-proxy? >> >> >> If you use sharding-proxy, you can se

Re:[DISCUSS] Apache ShardingSphere (Incubating) 4.0.0-RC2 release [ROUND 3]

2019-07-28 Thread Sion Yang
I notice a bug about distinct SQL, and create a new issue #2777. I think we should fix it in RC-2. -- Yi Yang(Sion) Apache ShardingSphere At 2019-07-24 17:36:34, "Zhang Yonglun" wrote: >Hello ShardingSphere Community, > >This is a call for the 3rd round of discussion to release Apache

Re:How to apply sharding on all tables globally by using proxy

2019-07-21 Thread Sion Yang
Hi Eric Poon, ShardingSphere requires users to configure which tables need to be shard currently. If there are no sharding-rule for sharding tables, ShardingSphere will use default-datasource to execute it. So it should not work with dynamic table names for now. -- Yi Yang(Sion) Apache

Re:回复:config rules to exclude some unnecessary code for unit codecoverage?

2019-09-26 Thread Sion Yang
. In community document[1], you can see the `Covenant Unit Test of Conduct` [1] https://shardingsphere.apache.org/community/en/contribute/code-conduct/ -- Yi Yang(Sion) Apache ShardingSphere 在 2019-09-27 09:25:49,"王喜春" 写道: >Hi, Sion Yang: > > >the method's whole implementati

Re:config rules to exclude some unnecessary code for unit code coverage?

2019-09-26 Thread Sion Yang
Hi, sluk3r. How to judge these codes are unnecessary or little necessary? -- Yi Yang(Sion) Apache ShardingSphere At 2019-09-27 05:40:16, "王喜春" wrote: Hi, for example, the code shown in the following pic, method of getDataSources return "backendDataSource.getDataSourceParameters()"

Re:[Proposal] ShardingScaling donation

2019-11-10 Thread Sion Yang
Proposal has some update. The newest version can be view in https://cwiki.apache.org/confluence/display/SHARDINGSPHERE/ShardingScaling+Donation+Proposal -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-09 09:06:09, "Sion Yang" wrote: > > >## Abstract > > >Sh

Re:Re: Re: Re: Re: [Proposal] ShardingScaling donation

2019-11-09 Thread Sion Yang
, "Sheng Wu" wrote: >My point is, this WIKI link is not showing up in the proposal page. > >Sheng Wu 吴晟 > >Apache SkyWalking >Apache Incubator >Apache ShardingSphere, ECharts, DolphinScheduler podlings >Zipkin >Twitter, wusheng1108 > > >Sion Yang 于2019年1

Re:Add email signature

2019-11-13 Thread Sion Yang
Done -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-14 12:05:56, "zhangli...@apache.org" wrote: >Hi ShardingSphere's community, > >In order to let everybody know who you are, could you add email signature? > >The format just like: > >``` >-- >Your name, for example:

Move ShardingScaling project to apache-incubator/shardingsphere repo

2019-11-16 Thread Sion Yang
Dear Apache ShardingSphere Incubator Community, Accept ShardingScaling Donation vote has passed. ML is https://lists.apache.org/thread.html/f7cf7f6d0d503080511f9c3bdc6bda25db8aad0cce2b03d2338484d2@%3Cdev.shardingsphere.apache.org%3E Now, Initial committers' icla files has submitted to

Re:[VOTE] Accept ShardingScaling Donation ROUND2

2019-11-16 Thread Sion Yang
t;Zonglei Dong >Apache ShardingSphere > > >------原始邮件-- >发件人:"Sion Yang"发送时间:2019年11月13日(星期三) 上午9:57 >收件人:"dev" >主题:[VOTE] Accept ShardingScaling Donation ROUND2 > > > >Dear Apache ShardingSphere Incubator Community , >

Re:Re: [VOTE] Release Apache ShardingSphere (Incubating) 4.0.0-RC3 ROUND 4

2019-11-17 Thread Sion Yang
Hi Craig, I generally compared the KEYS, it is the same as My local KEYS which I used to check 4.0.0-RC3. -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-18 09:02:30, "Craig Russell" wrote: >I'm having trouble downloading the public key from the KEYS file. > >Does this KEYS file look

Re:Re: [VOTE] Accept ShardingScaling Donation

2019-11-12 Thread Sion Yang
o: 姜宁willem > >On Tue, Nov 12, 2019 at 3:23 PM Sion Yang wrote: >> >> Dear Apache ShardingSphere Incubator Community , >> >> >> After some discussions on the ShardingScaling donation proposal, I would >> like to start a vote on accepting ShardingScaling

Re:Re:Re: [VOTE] Accept ShardingScaling Donation

2019-11-12 Thread Sion Yang
Proposal has updated in wiki. https://cwiki.apache.org/confluence/display/SHARDINGSPHERE/ShardingScaling+Donation+Proposal -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-12 18:04:40, "Sion Yang" wrote: >Sorry, I miss the contributor, I will update the proposal, and start new

Re:[ANNOUNCE] New committer: Zhiyi Yan

2019-11-12 Thread Sion Yang
Congratulation and welcome to join us. -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-13 11:19:39, "Juan Pan" wrote: >Hi folks, > >TheProjectManagementCommittee(PMC)forApache ShardingSphere >hasinvited Zhiyi Yan tobecomeacommitterandwearepleasedtoannouncethat she >hasaccepted. > >Welcome

Re:Re: [VOTE] Release Apache ShardingSphere (Incubating) 4.0.0-RC3 ROUND 3

2019-11-07 Thread Sion Yang
+1. I checked: [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] DISCLAIMER is included. [X] Source code artifacts have correct names matching the current release. [X] LICENSE and NOTICE files are correct for each ShardingSphere repo. [X] All files have license

Re:Re: [ShardingScaling][Discuss] Http request APIS about shardingscaling

2019-12-04 Thread Sion Yang
When create job, the job_id do not generate, so can't input . Progress is part information of job, so I think progress word show in url is better. -- Yi Yang(Sion) Apache ShardingSphere At 2019-12-04 16:31:34, "xia Yanick" wrote: >Hi Xiang: > That's exactly what I needed,

Re:Re: [ShardingScaling][Discuss] Http request APIS about shardingscaling

2019-12-04 Thread Sion Yang
Agree. [PUT] /job/ with stop status in body is not as clear as using `stop` on uri directly, I think. -- Yi Yang(Sion) Apache ShardingSphere At 2019-12-05 09:29:20, "sushixiang" wrote: >Hi, PUT may be used for modification, but we really not modify anything. And I >think this may be not

Re:[DISCUSS] The DataBase UNSIGNED INT and UNSIGNED BIGINT column return value discuss

2019-10-16 Thread Sion Yang
It's sounds great. -- Yi Yang(Sion) Apache ShardingSphere At 2019-10-16 21:51:32, "董。" <598363...@qq.com> wrote: >Hi ALL: > > We discuss a code implementation about a issue and a PR. > > > the issue is: https://github.com/apache/incubator-shardingsphere/issues/3231 > > > the PR is:

Re:Re: Move ShardingScaling project to apache-incubator/shardingsphere repo

2019-11-24 Thread Sion Yang
>Good news, hope merge to apache repo soon > >On 2019/11/17 02:33:54, "Sion Yang" wrote: >> Dear Apache ShardingSphere Incubator Community, >> >> Accept ShardingScaling Donation vote has passed. >> ML is >> https://lists.apache.org/thread.ht

[ShardingScaling][Discuss] The basic features including in the first beta release version

2019-11-28 Thread Sion Yang
Hi ShardingSphere community, ShardingScaling sub-project has been merged into ShardingSphere. Now It can migrate data and scaling out for MySQL with sharding-proxy. So I think it's not enough to release and usage. There are following items and features we need to complete in the first beta

Re:Re: [VOTE] Release Apache ShardingSphere (Incubating) 4.0.0-RC3 ROUND 4

2019-11-11 Thread Sion Yang
+1, I checked: [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] DISCLAIMER is included. [X] Source code artifacts have correct names matching the current release. [X] LICENSE and NOTICE files are correct for each ShardingSphere repo. [X] All files have license

[VOTE] Accept ShardingScaling Donation

2019-11-11 Thread Sion Yang
Dear Apache ShardingSphere Incubator Community , After some discussions on the ShardingScaling donation proposal, I would like to start a vote on accepting ShardingScaling into the Apache Incubator as ShardingSphere's sub-project. Discussion in ML

[VOTE] Accept ShardingScaling Donation ROUND2

2019-11-12 Thread Sion Yang
Dear Apache ShardingSphere Incubator Community , With the help and effort of our community, the previous issues were fixed already. I am glad to invite everyone to start a vote on accepting ShardingScaling into the Apache Incubator as ShardingSphere's sub-project ROUND 2. Discussion in ML

Re: Move ShardingScaling project to apache-incubator/shardingsphere repo

2019-11-25 Thread Sion Yang
Merging has completed in branch `sharding-scaling`[1]. [1] https://github.com/apache/incubator-shardingsphere/tree/sharding-scaling -- Yi Yang(Sion) Apache ShardingSphere At 2019-11-25 11:18:10, "Sion Yang" wrote: > > >Dear Apache ShardingSphere Incubator Communit

[ISSUE] Can't getClob for LongVarchar type data.

2019-10-10 Thread Sion Yang
Hi all the contributors and committers,Recently, some of issues like #2956[1] #3017[2] feedback exception when getClob for longVarchar type data.After investigation, this problem is be caused by getting value according to the metadata.ShardingSphere use `getString` to get LongVarchar type data,

Re:Re:[ISSUE] Can't getClob for LongVarchar type data.

2019-10-10 Thread Sion Yang
dle the `Clob` conversion. > > >| | >sunbufu >| >| >邮箱:sunyoub...@163.com >email:sunb...@apache.com >| >签名由网易邮箱大师定制 > > >On 10/10/2019 15:25,Sion Yang wrote: >Hi all the contributors and committers,Recently, some of issues like #2956[1] >#3017[2] feedb

Re:[ISSUE] Can't getClob for LongVarchar type data.

2019-10-10 Thread Sion Yang
[1] issue#2956 https://github.com/apache/incubator-shardingsphere/issues/2956 [2] issue#2956 https://github.com/apache/incubator-shardingsphere/issues/3017 -- Yi Yang(Sion) Apache ShardingSphere At 2019-10-10 15:25:59, "Sion Yang" wrote: >Hi all the contributors and commit

Re:[VOTE] Release Apache ShardingSphere (Incubating) 4.0.1

2020-02-25 Thread Sion Yang
+1, I checked following checklist: [x] Download links are valid. [x] Checksums and PGP signatures are valid. [x] DISCLAIMER is included. [x] Source code artifacts have correct names matching the current release. [x] LICENSE and NOTICE files are correct for each ShardingSphere repo. [x] All

Re:回复:[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-03-04 Thread Sion Yang
gt;I'm sorry > > >I don't understand your email > > >Do I need to mention this question or do I need answers here > > > >------原始邮件-- >发件人:"Sion Yang"发送时间:2020年3月4日(星期三) 晚上7:09 >收件人:"dev" >主题:Re:[Scaling] Preparin

Re:Re:[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-03-04 Thread Sion Yang
Merge work has completed by PR#4605[1], PR#4606[2] [1] https://github.com/apache/incubator-shardingsphere/pull/4605 [2] https://github.com/apache/incubator-shardingsphere/pull/4606 -- Yi Yang(Sion) Apache ShardingSphere At 2020-03-04 19:09:14, "Sion Yang" wrote: >Hello S

Re:Re: [VOTE] Graduate Apache ShardingSphere (incubating)

2020-03-04 Thread Sion Yang
+1 -- Yi Yang(Sion) Apache ShardingSphere At 2020-03-05 12:16:53, "zhangli...@apache.org" wrote: >Please vote on the proposal for ShardingSphere graduation to TLP to submit >to >the Incubator PMC. > >Vote: >[ ] +1 - Recommend Graduation of Apache ShardingSphere as a TLP >[ ] -1 - Do not

Re:[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-03-04 Thread Sion Yang
://github.com/apache/incubator-shardingsphere/issues/4510 -- Yi Yang(Sion) Apache ShardingSphere At 2020-02-28 15:12:13, "Sion Yang" wrote: >Hello ShardingSphere Community, > > > > >ShardingScaling has finish some basic function for migrating and scaling out, >d

Re:[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-03-04 Thread Sion Yang
[1] https://github.com/apache/incubator-shardingsphere/issues/4510 -- Yi Yang(Sion) Apache ShardingSphere At 2020-02-28 15:12:13, "Sion Yang" wrote: >Hello ShardingSphere Community, > > > > >ShardingScaling has finish some basic function for migrating and scali

[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-02-27 Thread Sion Yang
Hello ShardingSphere Community, ShardingScaling has finish some basic function for migrating and scaling out, detail see #3598[1] . I think it is already available to merge into master branch. So I'd like to open a discussion and do some checks for merging

Re:Re:[Scaling] Preparing to merge sharding-scaling and sharding-scaling-ui into master

2020-02-28 Thread Sion Yang
Thanks for your feedback, I will open [VOTE] mail list after this preparing and checking finished. -- Yi Yang(Sion) Apache ShardingSphere

Re:Re: Talk about graduation as TLP for Apache ShardingSphere(Incubator)

2020-02-05 Thread Sion Yang
I think these statistics are enough. -- Yi Yang(Sion) Apache ShardingSphere At 2020-02-06 11:28:02, "zhangli...@apache.org" wrote: >I can statistics some data for all PPMCs and committers, which can >include count of mails, issues, pull requests, code addition and deletion >after we goto

Re:[IMPORTANT][PPMC] Invitation to be ShardingSphere PMC member

2020-02-11 Thread Sion Yang
Yes, I am willing to be part of PMC. -- Yi Yang(Sion) Apache ShardingSphere At 2020-02-11 15:40:26, "zhangli...@apache.org" wrote: >Dear ShardingSphere PPMC members, > >ShardingSphere community is discussing the graduation of ShardingSphere to >be a Top Level project of Apache Software

Re:[DISCUSS] 4.0.1 stable version release plan

2020-02-09 Thread Sion Yang
Should we add the fix of Issue#4182[1] into 4.0.1? [1] https://github.com/apache/incubator-shardingsphere/issues/4182 -- Yi Yang(Sion) Apache ShardingSphere At 2020-02-09 15:44:05, "zhaojun" wrote: >Hi, ShardingSphere community, > >I’d like to be the release manager of 4.0.1 version. >We

Re:[DISCUSS] merge docs and example repos into trunk repo

2020-01-16 Thread Sion Yang
Nice idea. This can reduce the difference between example and trunk repo. -- Yi Yang(Sion) Apache ShardingSphere At 2020-01-17 12:15:29, "zhangli...@apache.org" wrote: >Hi ShardingSphere community, > >I'd like to discuss about merge docs[1] and examples[2] repos into the >trunk repo[3]. >

Re:Re: Discussion of pluggable platform of ShardingSphere

2020-01-02 Thread Sion Yang
I prefer Plan A too. -- Yi Yang(Sion) Apache ShardingSphere At 2020-01-03 00:13:07, "zhangli...@apache.org" wrote: >I have 2 ideas for the pluggable platform. > >Plan A: > >Design a unify DataSource to process all rules, it should be a transparent >DataSource if no rule provided (but

Re:[VOTE] Release Apache ShardingSphere (Incubating) 4.0.0 round 2

2019-12-30 Thread Sion Yang
+1 I checked the LICENSE, NOTICE, Checksums, PGP signatures and installing source code. No problem happened. -- Yi Yang(Sion) Apache ShardingSphere At 2019-12-30 21:43:37, "zhangli...@apache.org" wrote: >Hello ShardingSphere Community, > >This is a call for vote to release Apache

Re:Re:[VOTE] Release Apache ShardingSphere (Incubating) 4.0.0

2019-12-26 Thread Sion Yang
/befefeb3a81c940b51b5059e097e620dbdbef7cff4539fe1cb1f7902%40%3Cdev.shardingsphere.apache.org%3E -- Yi Yang(Sion) Apache ShardingSphere At 2019-12-24 18:06:45, "Sion Yang" wrote: >+1I checked the LICENSE, NOTICE, Checksums, PGP signatures and installing >source code.No problem happened

Re:4.0.0 stable version release plan

2019-12-26 Thread Sion Yang
I think issue #3770[1] need to be fixed before 4.0.0 stable version. The issue is caused by PR#3663[2]. If we revert PR#3663[2], the encrypt can't only work in JPA with auto-ddl on, and users can avoid this problem by create tables manually. But issue #3770[1] may cause encrypt can't work

Re:[VOTE] Release Apache ShardingSphere (Incubating) 4.0.0

2019-12-24 Thread Sion Yang
+1I checked the LICENSE, NOTICE, Checksums, PGP signatures and installing source code.No problem happened. Checklist: [x] Download links are valid. [x] Checksums and PGP signatures are valid. [x] DISCLAIMER is included. [x] Source code artifacts have correct names matching the current release.

Re:[ShardingScaling][Discuss] Add datasources check before start scaling job

2020-01-06 Thread Sion Yang
Nice idea. We need to consider that implementing the check privileges function according to the database type, and loaded by SPI. And for each type database, what's privileges we need to check. -- Yi Yang(Sion) Apache ShardingSphere At 2020-01-06 17:02:30, "sushixiang" wrote: >Hi

Re:[ANNOUNCE] New committer: Xiaofeng Jiang

2020-01-07 Thread Sion Yang
Welcome! -- Yi Yang(Sion) Apache ShardingSphere At 2020-01-08 14:02:52, "Juan Pan" wrote: >Hi everyone, > >TheProjectManagementCommittee(PMC)forApache ShardingSphere hasinvited Xiaofeng >Jiang tobecomeacommitterandwearepleasedtoannouncethathehasaccepted. > >Xiaofeng is being active in

[Discuss][Scaling] Re-design for Sharding-Scaling Job

2020-04-08 Thread Sion Yang
Dear ShardingSphere Community, I am glad to discuss a new design for Sharding-Scaling Job. Same issue in GitHub [Issue#5106](https://github.com/apache/incubator-shardingsphere/issues/5106). ## Current Job Design Sharding-Scaling will extract `datasources` and `actualDataNodes`

Re:Re: [VOTE] Release Apache ShardingSphere 4.1.0 Round 2

2020-04-27 Thread Sion Yang
+1, I checked: [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] Source code distributions have correct names matching the current [X] LICENSE and NOTICE files are correct for each ShardingSphere repo. [X] All files have license headers if necessary. [X] No

Re:Re: [DISCUSS]About a hotfix release version 4.1.1

2020-05-14 Thread Sion Yang
+1 , I think we should solve some sharding-scaling bug and issue in 4.1.1 version. And there is a enhancement in scaling for 5.0.0 before, I think it also can be enhance in 4.1.1 list: [1] https://github.com/apache/shardingsphere/issues/5390 [2]

Re:[Vote] ElasticJob donation

2020-05-25 Thread Sion Yang
+1, ElasticJob has great potential in scenarios that required asynchronous scheduling. -- Yi Yang(Sion) Apache ShardingSphere At 2020-05-24 21:55:39, "zhangli...@apache.org" wrote: >Hi ShardingSphere community, > >After we discuss fully about donate ElasticJob as a subproject of Apache

Re:Re: [VOTE] Release Apache ShardingSphere UI 5.0.0-alpha [Round 2]

2020-11-21 Thread Sion Yang
+1 I checked: [X] Download links are valid. [X] Checksums and PGP signatures are valid. [X] Source code distributions have correct names matching the current release. [X] LICENSE and NOTICE files are correct for each ShardingSphere repo. [X] All files have license headers if necessary. [X]

Re:[VOTE] Release Apache ShardingSphere ElasticJob-3.0.0

2021-07-05 Thread Sion Yang
+1 I checked : [x] Download source can work well. [x] sha512 exist and check correctly. [x] asc check correctly [x] version check correctly. -- Yi Yang(Sion) Apache ShardingSphere At 2021-06-26 20:44:50, "吴伟杰" wrote: >Hello ShardingSphere Community, > >This is a call for vote to