Re: [VOTE] Apache AGE 1.0.0-rc1 Release

2022-03-31 Thread VUONG QUOC Viet
+1 Checked - The LICENSE, NOTICE and DISCLAIMER files exist. - The word "incubating" is in the release file name. - The Download links work. - All the files have license headers if required. Thanks. On Thu, Mar 31, 2022 at 9:59 AM Young Seung Andrew Ko < youngseung.and...@gmail.com> wrote:

Re: [VOTE] Apache AGE 1.0.0 Release

2022-03-31 Thread VUONG QUOC Viet
+1 On Thu, Mar 31, 2022 at 3:04 AM John Gemignani wrote: > Hi Dmitry, > > We do very much appreciate your activity however,... > > This is a thread for voting on a specific release and whether all the files > meet Apache's criteria. Please do not reply to it with anything unrelated > to the

Re: [DISCUSS] AGE Versioning in Master

2022-03-02 Thread VUONG QUOC Viet
Hi Josh, I agree with your idea. Best regards, Viet. On Thu, Mar 3, 2022, 3:58 AM Josh Innis wrote: > Hi All, > > For every release of AGE we update the version number. The team is > currently researching how to support upgrading between versions and an > issue about the order of updating the

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

2022-02-28 Thread VUONG QUOC Viet
+1 On Mon, Feb 28, 2022 at 11:35 PM Josh Innis wrote: > +1 > > On Sat, Feb 26, 2022 at 9:20 AM Eya Badal wrote: > > > Looks good to me. > > +1 > > > > Checked the following: > > *Download links valid. > > *Checksums, PGP signatures valid. > > *LICENSE, NOTICE, and DISCLAIMER files exist. > >

On reverse() function

2021-10-01 Thread VUONG QUOC Viet
HI everyone, While working on writing reverse(), I have a few questions that I hope you guys can confirm the answer to make sure I'm heading in the right direction. The function I'm writing takes a list, and returns a reverse list. However, I should declare the function to take an agtype and

combining multiple cypher queries into one query

2021-09-13 Thread VUONG QUOC Viet
Hi guys, I've followed John's suggestion on Friday, which was to combined multiple cypher queries into 1 long query, like this: SELECT * FROM cypher('test_graph', $$ CREATE(:Person{id: 123, name: 'Andres', title: 'Developer', city: 'Seattle'}) CREATE(:Person{id: 123, name: 'Brian', title:

Benchmarking result

2021-09-09 Thread VUONG QUOC Viet
Hi Joe and Muhammad, I've finished the benchmarking experiments after listening to Muhammad's suggestions to improve the process: 1. to create 2 separate repos for original code and optimized code and 2. place the create_graph at the beginning and drop_graph at the end of each sql file. The

[AGE2-333] Benchmarking performance of the code after optimizing

2021-09-06 Thread VUONG QUOC Viet
Hi guys, I've been doing the benchmarking task coming with AGE2-333, which requires me to do some code optimization. I created a shell script which executes 140 queries consecutively and calculates the mean execution time. I run the scripts with both of the original code and the optimized code 20