{"id":13797505,"url":"https://github.com/steveniemitz/littletable","last_synced_at":"2025-10-26T19:15:28.217Z","repository":{"id":54308624,"uuid":"167598558","full_name":"steveniemitz/littletable","owner":"steveniemitz","description":"In-memory JVM-based Bigtable emulator","archived":false,"fork":false,"pushed_at":"2022-07-27T16:00:41.000Z","size":173,"stargazers_count":13,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-28T10:11:24.110Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/steveniemitz.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}},"created_at":"2019-01-25T19:02:54.000Z","updated_at":"2024-01-13T23:59:25.000Z","dependencies_parsed_at":"2022-08-13T11:40:16.664Z","dependency_job_id":null,"html_url":"https://github.com/steveniemitz/littletable","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/steveniemitz/littletable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steveniemitz%2Flittletable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steveniemitz%2Flittletable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steveniemitz%2Flittletable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steveniemitz%2Flittletable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/steveniemitz","download_url":"https://codeload.github.com/steveniemitz/littletable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steveniemitz%2Flittletable/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269185519,"owners_count":24374616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-06T02:00:09.910Z","response_time":99,"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":[],"created_at":"2024-08-04T00:00:22.219Z","updated_at":"2025-10-26T19:15:23.175Z","avatar_url":"https://github.com/steveniemitz.png","language":"Java","funding_links":[],"categories":["Tools"],"sub_categories":["Emulators"],"readme":"# LittleTable\n\n[![Build Status](https://github.com/steveniemitz/littletable/actions/workflows/ci.yml/badge.svg)](https://github.com/steveniemitz/littletable/actions/workflows/ci.yml)\n[![Maven Version](https://img.shields.io/maven-central/v/com.steveniemitz/littletable_2.12?label=littletable_2.12)](http://search.maven.org/#search|gav|1|g:\"com.steveniemitz\")\n[![Mentioned in Awesome Bigtable](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/zrosenbauer/awesome-bigtable)\n\n## Overview\n\nLittleTable is an emulator for [Google Cloud Bigtable](https://cloud.google.com/bigtable/), intended\nto replace the emulator distributed with the `gcloud` utility.\n\nIt aims to provide full compatibility with the Cloud Bigtable API,\nand fill the gaps in the Go-based emulator, such as the `sink` filter.\n\n## Getting the emulator\n\nMaven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.steveniemitz\u003c/groupId\u003e\n  \u003cartifactId\u003elittletable_2.12\u003c/artifactId\u003e\n  \u003cversion\u003e1.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nGradle:\n```gradle\ncompile 'com.steveniemitz:littletable_2.12:1.0.0'\n```\n\nsbt:\n```sbt\nlibraryDependencies += \"com.steveniemitz\" %% \"littletable\" % \"1.0.0\"\n```\n\n### Other Dependencies\n\nLittleTable assumes you'll \"bring your own\" dependencies for gRPC as well as [`bigtable-client-core`](https://mvnrepository.com/artifact/com.google.cloud.bigtable/bigtable-client-core).\nBy default, `bigtable-client-core` will also include the required gRPC dependencies, so adding a\ndependency to that is all that's required.\n\nSee [`build.sbt`](build.sbt) for reasonable defaults.\n\n## Usage\n \n`BigtableEmulator.newBuilder` (or `BigtableEmulators.newBuilder` in Java) can be used to obtain an \nemulator builder.  The builder can configure an in-process gRPC transport, or a TCP transport \n(or both).  When using the in-process emulator, the session provided by the built emulator must be \nused.  For advanced usage, `BigtableEmulator.Builder.configureServerBuilder` can be used to \nconfigure a user-provided gRPC server builder.\n\n```scala\nval emulator = \n  BigtableEmulator.newBuilder\n    .withInProcess\n    .build()\n\n// Start the emulator    \nemulator.start()\n\n// Use the client\nval session = emulator.session\nval rows = session.getDataClient.readFlatRowsList(...)\n```\n\nSee the [`BigtableTestSuite`](src/test/scala/com/steveniemitz/littletable/BigtableTestSuite.scala) for a full example.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteveniemitz%2Flittletable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteveniemitz%2Flittletable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteveniemitz%2Flittletable/lists"}