{"id":50864288,"url":"https://github.com/gsaini/yugabyte-getting-started","last_synced_at":"2026-06-14T23:34:34.252Z","repository":{"id":360351483,"uuid":"1246244356","full_name":"gsaini/yugabyte-getting-started","owner":"gsaini","description":"A self-paced learning project for YugabyteDB — distributed SQL concepts, architecture deep-dives, hands-on YSQL/YCQL exercises, and a Node.js + Fastify sample app.","archived":false,"fork":false,"pushed_at":"2026-05-26T02:52:05.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-14T23:34:31.829Z","etag":null,"topics":["acid-transactions","database","distributed-sql","distributed-systems","docker","fastify","learning-project","nodejs","postgresql","raft","ycql","ysql","yugabytedb"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gsaini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-22T02:32:39.000Z","updated_at":"2026-05-26T02:52:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gsaini/yugabyte-getting-started","commit_stats":null,"previous_names":["gsaini/yugabyte-getting-started"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gsaini/yugabyte-getting-started","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Fyugabyte-getting-started","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Fyugabyte-getting-started/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Fyugabyte-getting-started/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Fyugabyte-getting-started/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gsaini","download_url":"https://codeload.github.com/gsaini/yugabyte-getting-started/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Fyugabyte-getting-started/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34342089,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acid-transactions","database","distributed-sql","distributed-systems","docker","fastify","learning-project","nodejs","postgresql","raft","ycql","ysql","yugabytedb"],"created_at":"2026-06-14T23:34:33.558Z","updated_at":"2026-06-14T23:34:34.234Z","avatar_url":"https://github.com/gsaini.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YugabyteDB — Getting Started\n\n![YugabyteDB](https://img.shields.io/badge/YugabyteDB-2024-FF6600?style=for-the-badge\u0026logo=yugabytedb\u0026logoColor=white)\n![PostgreSQL](https://img.shields.io/badge/PostgreSQL-Compatible-4169E1?style=for-the-badge\u0026logo=postgresql\u0026logoColor=white)\n![Node.js](https://img.shields.io/badge/Node.js-24-339933?style=for-the-badge\u0026logo=node.js\u0026logoColor=white)\n![Fastify](https://img.shields.io/badge/Fastify-4.x-000000?style=for-the-badge\u0026logo=fastify\u0026logoColor=white)\n![Docker](https://img.shields.io/badge/Docker-Compose-2496ED?style=for-the-badge\u0026logo=docker\u0026logoColor=white)\n![License](https://img.shields.io/badge/License-MIT-green?style=for-the-badge)\n\nA self-paced learning project to understand **YugabyteDB** end-to-end: what it is, how it works internally, and how to build against it.\n\nYugabyteDB is a **distributed SQL** database that combines PostgreSQL-compatible APIs with the horizontal scalability and resilience of NoSQL systems like Cassandra and Google Spanner.\n\n## Learning Roadmap\n\nWork through these in order. Each phase has reading material in [docs/](docs/) and hands-on exercises in [exercises/](exercises/).\n\n### Phase 1 — Foundations\n\n- [What is YugabyteDB?](docs/01-introduction.md) — distributed SQL, history, when to use it\n- [Architecture overview](docs/02-architecture.md) — YB-TServer, YB-Master, DocDB, Raft\n\n### Phase 2 — APIs\n\n- [YSQL vs YCQL](docs/03-ysql-vs-ycql.md) — the two query layers and when to choose each\n- Exercises: [YSQL basics](exercises/ysql/) and [YCQL basics](exercises/ycql/)\n\n### Phase 3 — Internals\n\n- [Sharding and replication](docs/04-sharding-replication.md) — tablets, leader/follower, Raft groups\n- [Distributed transactions](docs/05-transactions.md) — hybrid logical clocks, isolation levels\n\n### Phase 4 — Operations\n\n- [Performance \u0026 tuning](docs/06-performance.md) — tablet splitting, colocation, indexes\n- [Setup guide](setup/README.md) — Docker, native install, multi-node clusters\n\n### Phase 5 — Application\n\n- [Sample app](sample-app/) — a Node.js + Fastify service that uses YSQL for an order-management workflow\n\n## Quick start\n\n```bash\n# Spin up a single-node YugabyteDB locally with Docker\ncd setup \u0026\u0026 docker compose up -d\n\n# Connect via ysqlsh (PostgreSQL-compatible shell)\ndocker exec -it yugabyte ysqlsh -h yugabyte\n```\n\nThen jump into [exercises/ysql/01_basics.sql](exercises/ysql/01_basics.sql).\n\n## Reference\n\n- [Cheatsheet](notes/cheatsheet.md) — common commands and SQL patterns\n- [Resources](notes/resources.md) — official docs, talks, deep-dive blog posts\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgsaini%2Fyugabyte-getting-started","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgsaini%2Fyugabyte-getting-started","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgsaini%2Fyugabyte-getting-started/lists"}