├── HPC ├── gemini │ ├── Gemini A Computation-Centric Distributed.pdf │ └── notes.md ├── mlsys_roc │ ├── mlsys_roc.pdf │ └── notes.md ├── neugraph │ ├── NeuGraph_ATC_2019.pdf │ └── notes.md ├── nts │ └── notes.md └── pregel │ ├── 1807167.1807184.pdf │ └── notes.md ├── README.md ├── db ├── ARIES │ ├── aries.pdf │ └── aries_note.md ├── ARIES:IM │ ├── ARIES:IM.pdf │ └── notes.md ├── A_Comparison_of_Adaptive_Radix_Trees_and_Hash_Tables │ ├── alverez-icde2015.pdf │ └── notes.md ├── A_Critique_of_Snapshot_Isolation │ └── 2168836.2168853.pdf ├── Access_Path_Selection_in_Main_Memory_Optimized_Data_Systems_Should_I_Scan_or_Should_I_Probe │ ├── kester-sigmod17.pdf │ └── notes.md ├── Amazon-Aurora-Design-Considerations-for-High-Throughput-Cloud-Native-Relational-Databases │ └── aurora.pdf ├── An_Analysis_of_Concurrency_Control_Protocols_for_in-Memory_Databases_with_CCBench │ ├── notes.md │ └── p3531-tanabe.pdf ├── An_Empirical_Evaluation_of_In_Memory_Multi_Version_Concurrency_Control │ ├── notes.md │ └── wu-vldb2017.pdf ├── An_Evaluation_of_Concurrency_Control_with_One_Thousand_Cores │ ├── notes.md │ └── p209-yu.pdf ├── CockroachDB_The_Resilient_Geo_Distributed_SQL_Database │ ├── 3318464.3386134.pdf │ └── notes.md ├── Dont_Hold_My_Data_Hostage_A_Case_For_Client_Protocol_Redeesign │ ├── notes.md │ └── p1022-muehleisen.pdf ├── ERMIA_Fast_Memory_Optimized_Database_System_for_Heterogeneous_Workloads │ ├── ermia.pdf │ └── notes.md ├── Efficiently_Compiling_Efficient_Query_Plans_for_Modern_Hardware │ ├── notes.md │ └── p539-neumann.pdf ├── High_Performance_Concurrency_Control_Mechanisms_for_Main_Memory_Databases │ ├── notes.md │ └── p298-larson.pdf ├── Integrating_Compression_and_Execution_in_Column-Oriented_Database_Systems │ ├── abadi-sigmod2006.pdf │ └── notes.md ├── LLAMA_A_Cache_Storage_Subsystem_for_Modern_Hardware │ ├── llama-vldb2013.pdf │ └── notes.md ├── Magma-A-High-Data-Density-Storage-Engine-Used-in-Couchbase │ └── magma.pdf ├── Morsel_Driven_Parallelism_A_NUMA_Aware_Query_Evaluation_Framework_for_the_Many_Core_Age │ ├── notes.md │ └── p743-leis.pdf ├── Opportuinities_for_Optimism_in_Contented_Main_Memory_Multicore_Transactions │ ├── notes.md │ └── p629-huang.pdf ├── Serializable_Snapshot_Isolation_in_PostgreSQL │ ├── notes.md │ └── p1850_danrkports_vldb2012.pdf ├── Socrates-The-New-SQL-Server-in-the-Cloud │ └── socrates.pdf ├── TicToc_Time_Travling_Optimisitc_Concurrency_Control │ ├── notes.md │ └── tictoc.pdf ├── architecture_of_database_system │ ├── linziyu-Architecture of a Database System(Chinese Version)-ALL.pdf │ └── notes.md ├── arkdb_a_key_value_engine_for_scalable_cloud_storage_services │ ├── ArkDB.pdf │ └── notes.md ├── bw-tree-cmu │ ├── mod342-wangA.pdf │ └── notes.md ├── bw-tree-ms │ └── bwtree-ms.pdf ├── constant_time_recovery_in_Azure_SQL_Database │ ├── notes.md │ └── p2143-antonopoulos.pdf ├── fast_serializable_mvcc │ ├── notes.md │ └── p677-neumann.pdf ├── high-performance-transactions-in-deuteronomy │ └── high-performance-transactions-in-Deuteronomy.pdf ├── htap-tutorial │ ├── htap database.pdf │ └── htap.md ├── optimal_column_layout_for_hybrid_workloads │ ├── notes.md │ └── p2393-athanassoulis.pdf ├── scalable_garbage_collection_for_in_memory_mvcc_systems │ ├── notes.md │ └── p128-bottcher.pdf └── whatgoesaround-stonebraker.pdf └── distribute ├── GentleRain_Cheap_and_Scalable_Causal_Consistency_with_Physical_Clocks ├── 2670979.2670983.pdf └── notes.md ├── bigtable ├── 68a74a85e1662fe02ff3967497f31fda7f32225c.pdf └── notes.md ├── chubby ├── chubby-osdi06.pdf └── notes.md ├── gfs ├── gfs.pdf └── notes.md ├── mapreduce ├── mapreduce.pdf └── notes.md ├── more-gfs └── notes.md ├── more-raft ├── link.txt ├── notes.md └── stanford.pdf ├── percolator ├── Percolator.pdf └── notes.md ├── raft ├── notes.md └── raft-extended.pdf ├── session_guarantee_for_weak_consistent_replicated_data ├── SessionGuaranteesPDIS.pdf └── notes.md └── time_clocks_and_ordering_of_events ├── Time-Clocks-and-the-Ordering-of-Events-in-a-Distributed-System.pdf └── notes.md /HPC/gemini/Gemini A Computation-Centric Distributed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/gemini/Gemini A Computation-Centric Distributed.pdf -------------------------------------------------------------------------------- /HPC/gemini/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/gemini/notes.md -------------------------------------------------------------------------------- /HPC/mlsys_roc/mlsys_roc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/mlsys_roc/mlsys_roc.pdf -------------------------------------------------------------------------------- /HPC/mlsys_roc/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/mlsys_roc/notes.md -------------------------------------------------------------------------------- /HPC/neugraph/NeuGraph_ATC_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/neugraph/NeuGraph_ATC_2019.pdf -------------------------------------------------------------------------------- /HPC/neugraph/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/neugraph/notes.md -------------------------------------------------------------------------------- /HPC/nts/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/nts/notes.md -------------------------------------------------------------------------------- /HPC/pregel/1807167.1807184.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/pregel/1807167.1807184.pdf -------------------------------------------------------------------------------- /HPC/pregel/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/HPC/pregel/notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/README.md -------------------------------------------------------------------------------- /db/ARIES/aries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ARIES/aries.pdf -------------------------------------------------------------------------------- /db/ARIES/aries_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ARIES/aries_note.md -------------------------------------------------------------------------------- /db/ARIES:IM/ARIES:IM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ARIES:IM/ARIES:IM.pdf -------------------------------------------------------------------------------- /db/ARIES:IM/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ARIES:IM/notes.md -------------------------------------------------------------------------------- /db/A_Comparison_of_Adaptive_Radix_Trees_and_Hash_Tables/alverez-icde2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/A_Comparison_of_Adaptive_Radix_Trees_and_Hash_Tables/alverez-icde2015.pdf -------------------------------------------------------------------------------- /db/A_Comparison_of_Adaptive_Radix_Trees_and_Hash_Tables/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/A_Comparison_of_Adaptive_Radix_Trees_and_Hash_Tables/notes.md -------------------------------------------------------------------------------- /db/A_Critique_of_Snapshot_Isolation/2168836.2168853.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/A_Critique_of_Snapshot_Isolation/2168836.2168853.pdf -------------------------------------------------------------------------------- /db/Access_Path_Selection_in_Main_Memory_Optimized_Data_Systems_Should_I_Scan_or_Should_I_Probe/kester-sigmod17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Access_Path_Selection_in_Main_Memory_Optimized_Data_Systems_Should_I_Scan_or_Should_I_Probe/kester-sigmod17.pdf -------------------------------------------------------------------------------- /db/Access_Path_Selection_in_Main_Memory_Optimized_Data_Systems_Should_I_Scan_or_Should_I_Probe/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Access_Path_Selection_in_Main_Memory_Optimized_Data_Systems_Should_I_Scan_or_Should_I_Probe/notes.md -------------------------------------------------------------------------------- /db/Amazon-Aurora-Design-Considerations-for-High-Throughput-Cloud-Native-Relational-Databases/aurora.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Amazon-Aurora-Design-Considerations-for-High-Throughput-Cloud-Native-Relational-Databases/aurora.pdf -------------------------------------------------------------------------------- /db/An_Analysis_of_Concurrency_Control_Protocols_for_in-Memory_Databases_with_CCBench/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Analysis_of_Concurrency_Control_Protocols_for_in-Memory_Databases_with_CCBench/notes.md -------------------------------------------------------------------------------- /db/An_Analysis_of_Concurrency_Control_Protocols_for_in-Memory_Databases_with_CCBench/p3531-tanabe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Analysis_of_Concurrency_Control_Protocols_for_in-Memory_Databases_with_CCBench/p3531-tanabe.pdf -------------------------------------------------------------------------------- /db/An_Empirical_Evaluation_of_In_Memory_Multi_Version_Concurrency_Control/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Empirical_Evaluation_of_In_Memory_Multi_Version_Concurrency_Control/notes.md -------------------------------------------------------------------------------- /db/An_Empirical_Evaluation_of_In_Memory_Multi_Version_Concurrency_Control/wu-vldb2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Empirical_Evaluation_of_In_Memory_Multi_Version_Concurrency_Control/wu-vldb2017.pdf -------------------------------------------------------------------------------- /db/An_Evaluation_of_Concurrency_Control_with_One_Thousand_Cores/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Evaluation_of_Concurrency_Control_with_One_Thousand_Cores/notes.md -------------------------------------------------------------------------------- /db/An_Evaluation_of_Concurrency_Control_with_One_Thousand_Cores/p209-yu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/An_Evaluation_of_Concurrency_Control_with_One_Thousand_Cores/p209-yu.pdf -------------------------------------------------------------------------------- /db/CockroachDB_The_Resilient_Geo_Distributed_SQL_Database/3318464.3386134.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/CockroachDB_The_Resilient_Geo_Distributed_SQL_Database/3318464.3386134.pdf -------------------------------------------------------------------------------- /db/CockroachDB_The_Resilient_Geo_Distributed_SQL_Database/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/CockroachDB_The_Resilient_Geo_Distributed_SQL_Database/notes.md -------------------------------------------------------------------------------- /db/Dont_Hold_My_Data_Hostage_A_Case_For_Client_Protocol_Redeesign/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Dont_Hold_My_Data_Hostage_A_Case_For_Client_Protocol_Redeesign/notes.md -------------------------------------------------------------------------------- /db/Dont_Hold_My_Data_Hostage_A_Case_For_Client_Protocol_Redeesign/p1022-muehleisen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Dont_Hold_My_Data_Hostage_A_Case_For_Client_Protocol_Redeesign/p1022-muehleisen.pdf -------------------------------------------------------------------------------- /db/ERMIA_Fast_Memory_Optimized_Database_System_for_Heterogeneous_Workloads/ermia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ERMIA_Fast_Memory_Optimized_Database_System_for_Heterogeneous_Workloads/ermia.pdf -------------------------------------------------------------------------------- /db/ERMIA_Fast_Memory_Optimized_Database_System_for_Heterogeneous_Workloads/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/ERMIA_Fast_Memory_Optimized_Database_System_for_Heterogeneous_Workloads/notes.md -------------------------------------------------------------------------------- /db/Efficiently_Compiling_Efficient_Query_Plans_for_Modern_Hardware/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Efficiently_Compiling_Efficient_Query_Plans_for_Modern_Hardware/notes.md -------------------------------------------------------------------------------- /db/Efficiently_Compiling_Efficient_Query_Plans_for_Modern_Hardware/p539-neumann.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Efficiently_Compiling_Efficient_Query_Plans_for_Modern_Hardware/p539-neumann.pdf -------------------------------------------------------------------------------- /db/High_Performance_Concurrency_Control_Mechanisms_for_Main_Memory_Databases/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/High_Performance_Concurrency_Control_Mechanisms_for_Main_Memory_Databases/notes.md -------------------------------------------------------------------------------- /db/High_Performance_Concurrency_Control_Mechanisms_for_Main_Memory_Databases/p298-larson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/High_Performance_Concurrency_Control_Mechanisms_for_Main_Memory_Databases/p298-larson.pdf -------------------------------------------------------------------------------- /db/Integrating_Compression_and_Execution_in_Column-Oriented_Database_Systems/abadi-sigmod2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Integrating_Compression_and_Execution_in_Column-Oriented_Database_Systems/abadi-sigmod2006.pdf -------------------------------------------------------------------------------- /db/Integrating_Compression_and_Execution_in_Column-Oriented_Database_Systems/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Integrating_Compression_and_Execution_in_Column-Oriented_Database_Systems/notes.md -------------------------------------------------------------------------------- /db/LLAMA_A_Cache_Storage_Subsystem_for_Modern_Hardware/llama-vldb2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/LLAMA_A_Cache_Storage_Subsystem_for_Modern_Hardware/llama-vldb2013.pdf -------------------------------------------------------------------------------- /db/LLAMA_A_Cache_Storage_Subsystem_for_Modern_Hardware/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/LLAMA_A_Cache_Storage_Subsystem_for_Modern_Hardware/notes.md -------------------------------------------------------------------------------- /db/Magma-A-High-Data-Density-Storage-Engine-Used-in-Couchbase/magma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Magma-A-High-Data-Density-Storage-Engine-Used-in-Couchbase/magma.pdf -------------------------------------------------------------------------------- /db/Morsel_Driven_Parallelism_A_NUMA_Aware_Query_Evaluation_Framework_for_the_Many_Core_Age/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Morsel_Driven_Parallelism_A_NUMA_Aware_Query_Evaluation_Framework_for_the_Many_Core_Age/notes.md -------------------------------------------------------------------------------- /db/Morsel_Driven_Parallelism_A_NUMA_Aware_Query_Evaluation_Framework_for_the_Many_Core_Age/p743-leis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Morsel_Driven_Parallelism_A_NUMA_Aware_Query_Evaluation_Framework_for_the_Many_Core_Age/p743-leis.pdf -------------------------------------------------------------------------------- /db/Opportuinities_for_Optimism_in_Contented_Main_Memory_Multicore_Transactions/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Opportuinities_for_Optimism_in_Contented_Main_Memory_Multicore_Transactions/notes.md -------------------------------------------------------------------------------- /db/Opportuinities_for_Optimism_in_Contented_Main_Memory_Multicore_Transactions/p629-huang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Opportuinities_for_Optimism_in_Contented_Main_Memory_Multicore_Transactions/p629-huang.pdf -------------------------------------------------------------------------------- /db/Serializable_Snapshot_Isolation_in_PostgreSQL/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Serializable_Snapshot_Isolation_in_PostgreSQL/notes.md -------------------------------------------------------------------------------- /db/Serializable_Snapshot_Isolation_in_PostgreSQL/p1850_danrkports_vldb2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Serializable_Snapshot_Isolation_in_PostgreSQL/p1850_danrkports_vldb2012.pdf -------------------------------------------------------------------------------- /db/Socrates-The-New-SQL-Server-in-the-Cloud/socrates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/Socrates-The-New-SQL-Server-in-the-Cloud/socrates.pdf -------------------------------------------------------------------------------- /db/TicToc_Time_Travling_Optimisitc_Concurrency_Control/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/TicToc_Time_Travling_Optimisitc_Concurrency_Control/notes.md -------------------------------------------------------------------------------- /db/TicToc_Time_Travling_Optimisitc_Concurrency_Control/tictoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/TicToc_Time_Travling_Optimisitc_Concurrency_Control/tictoc.pdf -------------------------------------------------------------------------------- /db/architecture_of_database_system/linziyu-Architecture of a Database System(Chinese Version)-ALL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/architecture_of_database_system/linziyu-Architecture of a Database System(Chinese Version)-ALL.pdf -------------------------------------------------------------------------------- /db/architecture_of_database_system/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/architecture_of_database_system/notes.md -------------------------------------------------------------------------------- /db/arkdb_a_key_value_engine_for_scalable_cloud_storage_services/ArkDB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/arkdb_a_key_value_engine_for_scalable_cloud_storage_services/ArkDB.pdf -------------------------------------------------------------------------------- /db/arkdb_a_key_value_engine_for_scalable_cloud_storage_services/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/arkdb_a_key_value_engine_for_scalable_cloud_storage_services/notes.md -------------------------------------------------------------------------------- /db/bw-tree-cmu/mod342-wangA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/bw-tree-cmu/mod342-wangA.pdf -------------------------------------------------------------------------------- /db/bw-tree-cmu/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/bw-tree-cmu/notes.md -------------------------------------------------------------------------------- /db/bw-tree-ms/bwtree-ms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/bw-tree-ms/bwtree-ms.pdf -------------------------------------------------------------------------------- /db/constant_time_recovery_in_Azure_SQL_Database/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/constant_time_recovery_in_Azure_SQL_Database/notes.md -------------------------------------------------------------------------------- /db/constant_time_recovery_in_Azure_SQL_Database/p2143-antonopoulos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/constant_time_recovery_in_Azure_SQL_Database/p2143-antonopoulos.pdf -------------------------------------------------------------------------------- /db/fast_serializable_mvcc/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/fast_serializable_mvcc/notes.md -------------------------------------------------------------------------------- /db/fast_serializable_mvcc/p677-neumann.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/fast_serializable_mvcc/p677-neumann.pdf -------------------------------------------------------------------------------- /db/high-performance-transactions-in-deuteronomy/high-performance-transactions-in-Deuteronomy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/high-performance-transactions-in-deuteronomy/high-performance-transactions-in-Deuteronomy.pdf -------------------------------------------------------------------------------- /db/htap-tutorial/htap database.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/htap-tutorial/htap database.pdf -------------------------------------------------------------------------------- /db/htap-tutorial/htap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/htap-tutorial/htap.md -------------------------------------------------------------------------------- /db/optimal_column_layout_for_hybrid_workloads/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/optimal_column_layout_for_hybrid_workloads/notes.md -------------------------------------------------------------------------------- /db/optimal_column_layout_for_hybrid_workloads/p2393-athanassoulis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/optimal_column_layout_for_hybrid_workloads/p2393-athanassoulis.pdf -------------------------------------------------------------------------------- /db/scalable_garbage_collection_for_in_memory_mvcc_systems/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/scalable_garbage_collection_for_in_memory_mvcc_systems/notes.md -------------------------------------------------------------------------------- /db/scalable_garbage_collection_for_in_memory_mvcc_systems/p128-bottcher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/scalable_garbage_collection_for_in_memory_mvcc_systems/p128-bottcher.pdf -------------------------------------------------------------------------------- /db/whatgoesaround-stonebraker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/db/whatgoesaround-stonebraker.pdf -------------------------------------------------------------------------------- /distribute/GentleRain_Cheap_and_Scalable_Causal_Consistency_with_Physical_Clocks/2670979.2670983.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/GentleRain_Cheap_and_Scalable_Causal_Consistency_with_Physical_Clocks/2670979.2670983.pdf -------------------------------------------------------------------------------- /distribute/GentleRain_Cheap_and_Scalable_Causal_Consistency_with_Physical_Clocks/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/GentleRain_Cheap_and_Scalable_Causal_Consistency_with_Physical_Clocks/notes.md -------------------------------------------------------------------------------- /distribute/bigtable/68a74a85e1662fe02ff3967497f31fda7f32225c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/bigtable/68a74a85e1662fe02ff3967497f31fda7f32225c.pdf -------------------------------------------------------------------------------- /distribute/bigtable/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/bigtable/notes.md -------------------------------------------------------------------------------- /distribute/chubby/chubby-osdi06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/chubby/chubby-osdi06.pdf -------------------------------------------------------------------------------- /distribute/chubby/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/chubby/notes.md -------------------------------------------------------------------------------- /distribute/gfs/gfs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/gfs/gfs.pdf -------------------------------------------------------------------------------- /distribute/gfs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/gfs/notes.md -------------------------------------------------------------------------------- /distribute/mapreduce/mapreduce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/mapreduce/mapreduce.pdf -------------------------------------------------------------------------------- /distribute/mapreduce/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/mapreduce/notes.md -------------------------------------------------------------------------------- /distribute/more-gfs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/more-gfs/notes.md -------------------------------------------------------------------------------- /distribute/more-raft/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/more-raft/link.txt -------------------------------------------------------------------------------- /distribute/more-raft/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/more-raft/notes.md -------------------------------------------------------------------------------- /distribute/more-raft/stanford.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/more-raft/stanford.pdf -------------------------------------------------------------------------------- /distribute/percolator/Percolator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/percolator/Percolator.pdf -------------------------------------------------------------------------------- /distribute/percolator/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/percolator/notes.md -------------------------------------------------------------------------------- /distribute/raft/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/raft/notes.md -------------------------------------------------------------------------------- /distribute/raft/raft-extended.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/raft/raft-extended.pdf -------------------------------------------------------------------------------- /distribute/session_guarantee_for_weak_consistent_replicated_data/SessionGuaranteesPDIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/session_guarantee_for_weak_consistent_replicated_data/SessionGuaranteesPDIS.pdf -------------------------------------------------------------------------------- /distribute/session_guarantee_for_weak_consistent_replicated_data/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/session_guarantee_for_weak_consistent_replicated_data/notes.md -------------------------------------------------------------------------------- /distribute/time_clocks_and_ordering_of_events/Time-Clocks-and-the-Ordering-of-Events-in-a-Distributed-System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/time_clocks_and_ordering_of_events/Time-Clocks-and-the-Ordering-of-Events-in-a-Distributed-System.pdf -------------------------------------------------------------------------------- /distribute/time_clocks_and_ordering_of_events/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysj1173886760/paper_notes/HEAD/distribute/time_clocks_and_ordering_of_events/notes.md --------------------------------------------------------------------------------