Yifan Cai website_and_docs last 3 years


 14 Collaborator
Štefan Miklošovič , Ekaterina Dimitrova , Andrés de la Peña , Benjamin Lerer , Josh McKenzie , Francisco Guerrero , Dinesh Joshi , Jon Meredith , Yuki Morishita , Shailaja Koppu , Jyothsna Konisa , Bernardo Botella , jkonisa , Andres De la Pena

 4 Patch  8 Review
933137fb14d4ebfe38d0d2c8e23b765aa1c89333, 26dd119679605bf61ad3caa24a70509e5be5aac9, 8fc39685fbb6c963cf0d86fd458069ab80bbcece, c48906394e01460382f4070ecc34f6f9754fc567 ca729f6fad70eb07dcf590274e8664b865af2d42, 933137fb14d4ebfe38d0d2c8e23b765aa1c89333, f078c02cb58bddd735490b07548f7352f0eb09aa, 83c169ec9e36324f27bf562951362f4a03c3c688, c8c8635a4c902ef051a46845919a5430f8d71e3f, 1ad8bf67a9c82cbb5ff38e5cf785f9fe2516d009, 61be4d836213f708d9a29e59b9ef1df0bebef29a, 945a4fc23ac1f60b8380be3b60aef89caf3daba2

ca729f6fad70eb07dcf590274e8664b865af2d42 | Author: Bernardo Botella <contacto@bernardobotella.com>
 | 2024-06-07 11:44:31-07:00

    CASSANDRA-19685 - Add auto_hints_cleanup_enabled to web documentation
    
    patch by Bernardo Botella; reviewed by Francisco Guerrero, Yifan Cai for CASSANDRA-19685

933137fb14d4ebfe38d0d2c8e23b765aa1c89333 | Author: Shailaja Koppu <s_koppu@apple.com>
 | 2023-06-13 17:18:29+01:00

    CIDR filtering authorizer
    
    Patch by Shailaja Koppu, Yifan Cai; Reviewed by Dinesh Joshi, Yifan Cai for CASSANDRA-18592
    
    Co-Authored-By: Yifan Cai <ycai@apache.org>

f078c02cb58bddd735490b07548f7352f0eb09aa | Author: jkonisa <jkonisa@apple.com>
 | 2023-05-22 22:15:22-07:00

    Adding Mutual TLS authenticators for client & internode connections
    
    Patch by Jyothsna Konisa & Dinesh Joshi; reviewed by Yifan Cai, Jon Meredith,
    Yuki Morishita & Dinesh Joshi for CASSANDRA-18554
    
    Co-Authored-By: Dinesh Joshi <djoshi@apache.org>

83c169ec9e36324f27bf562951362f4a03c3c688 | Author: Francisco Guerrero <frank.guerrero@gmail.com>
 | 2022-08-19 10:20:57-07:00

    Fix BulkLoader to load entireSSTableThrottle and entireSSTableInterDcThrottle
    
    patch by Francisco Guerrero; reviewed by Ekaterina Dimitrova, Yifan Cai for CASSANDRA-17677

c8c8635a4c902ef051a46845919a5430f8d71e3f | Author: Andrés de la Peña <a.penya.garcia@gmail.com>
 | 2022-06-17 11:45:43+01:00

    Add ability to read the TTLs and write times of the elements of a collection and/or UDT
    
    patch by Andrés de la Peña; reviewed by Yifan Cai and Benjamin Lerer for CASSANDRA-8877

26dd119679605bf61ad3caa24a70509e5be5aac9 | Author: Yifan Cai <ycai@apache.org>
 | 2022-05-18 10:27:16-07:00

    Add new CQL function maxWritetime
    
    patch by Yifan Cai; reviewed by Andres de la Peña, Francisco Guerrero for CASSANDRA-17425

8fc39685fbb6c963cf0d86fd458069ab80bbcece | Author: Yifan Cai <ycai@apache.org>
 | 2022-05-05 14:15:49-07:00

    Fix testCDCIndexFileWriteOnSync and document cdc index file read edge case
    
    Patch by Yifan Cai; reviewed by Josh McKenzie for CASSANDRA-17416

c48906394e01460382f4070ecc34f6f9754fc567 | Author: Yifan Cai <ycai@apache.org>
 | 2022-05-05 14:15:49-07:00

    Fix testCDCIndexFileWriteOnSync and document cdc index file read edge case
    
    Patch by Yifan Cai; reviewed by Josh McKenzie for CASSANDRA-17416

61be4d836213f708d9a29e59b9ef1df0bebef29a | Author: Francisco Guerrero <frank.guerrero@gmail.com>
 | 2022-03-16 01:31:00+01:00

    expose gossip information in system_views.gossip_info virtual table
    
    patch by Francisco Guerrero; reviewed by Stefan Miklosovic and Yifan Cai for CASSANDRA-17002
    
    This commit adds a new virtual table that exposes the gossip information in tabular format.
    
    The information is the same as the information presented through the `nodetool gossipinfo`
    command, but the virtual table splits the version and value from `VersionedValue` into two
    different columns. This is intented to help clients reading the vtable without the need of
    parsing the version:value information (as it currently stands in gossipinfo).
    
    The token value does not have a column. This is consistent with the gossipinfo output which
    always renders ":<hidden>" for the Token value. Only the token_version column is available.

945a4fc23ac1f60b8380be3b60aef89caf3daba2 | Author: Shailaja Koppu <s_koppu@apple.com>
 | 2022-02-01 09:53:49-08:00

    Add a virtual table for exposing prepared statements metrics
    
    patch by Shailaja Koppu; reviewed by Ekaterina Dimitrova, Francisco Guerrero, Yifan Cai for CASSANDRA-17224

1ad8bf67a9c82cbb5ff38e5cf785f9fe2516d009 | Author: Benjamin Lerer <b.lerer@gmail.com>
 | 2021-11-04 16:47:16+01:00

    Allow to aggregate by time intervals
    
    Patch by Benjamin Lerer; review by Andres De la Pena and Yifan Cai for CASSANDRA-11871
    
    The patch allow to use pure monotonic functions on the last attribute of the GROUP BY clause and introduce some floor functions that can be use to group by time range.
    
    A function is pure if:
        1. The function return values are identical for identical arguments
        2. The function application has no side effects
    
    A function is monotonic if it is either entirely nonincreasing or nondecreasing.