{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":34761665,"defaultBranch":"master","name":"gohbase","ownerLogin":"tsuna","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-04-28T23:39:20.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/128281?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1710367553.0","currentOid":""},"activityList":{"items":[{"before":"fa78846cafc9be9d25050f1f514c446d68c62910","after":"ce0b353129b4e831537357d5854ac59fb3d3d8d6","ref":"refs/heads/master","pushedAt":"2024-05-08T18:26:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"aaronbee","name":"Aaron Beitch","path":"/aaronbee","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/199899?s=80&v=4"},"commit":{"message":"cache: added region cache warmup (#250)\n\nThis change adds an option in gohbase to prepopulate its region\r\ncache. It does a single scan of the meta table and cache all\r\nregions.","shortMessageHtmlLink":"cache: added region cache warmup (#250)"}},{"before":"1676ef7e233d45d80f645efee4b363c9d89e198a","after":"fa78846cafc9be9d25050f1f514c446d68c62910","ref":"refs/heads/master","pushedAt":"2024-04-25T23:24:23.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"aaronbee","name":"Aaron Beitch","path":"/aaronbee","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/199899?s=80&v=4"},"commit":{"message":"Expose Dialers inside Zk and Region (#249)\n\nThis change allows for overriding the default dialers used by\r\nthe ZooKeeper client and the Region client to connect to their\r\nrespective servers. Proxy-aware dialers can be installed by people\r\nwho need them.\r\n\r\nCo-authored-by: marcinromaszewicz ","shortMessageHtmlLink":"Expose Dialers inside Zk and Region (#249)"}},{"before":"4366f27e2eafcc29c0f2a1370e60afa31590ba69","after":null,"ref":"refs/heads/dependabot/go_modules/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T22:05:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"}},{"before":"c88d1874ba569a831f4e72f3f5de5c1d9d1c0b11","after":"1676ef7e233d45d80f645efee4b363c9d89e198a","ref":"refs/heads/master","pushedAt":"2024-03-13T22:05:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"build(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0\n\nBumps google.golang.org/protobuf from 1.28.1 to 1.33.0.\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/protobuf\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0"}},{"before":null,"after":"4366f27e2eafcc29c0f2a1370e60afa31590ba69","ref":"refs/heads/dependabot/go_modules/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T21:59:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0\n\nBumps google.golang.org/protobuf from 1.28.1 to 1.33.0.\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/protobuf\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0"}},{"before":"02796953269f0e9f1cb822d53c15c0896b6014da","after":null,"ref":"refs/heads/snapshot","pushedAt":"2023-12-12T14:12:28.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"tsuna","name":"Benoit Sigoure","path":"/tsuna","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128281?s=80&v=4"}},{"before":"642db041784ff431171ee980a0bdfe0ece97403c","after":"c88d1874ba569a831f4e72f3f5de5c1d9d1c0b11","ref":"refs/heads/master","pushedAt":"2023-12-12T14:12:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tsuna","name":"Benoit Sigoure","path":"/tsuna","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128281?s=80&v=4"},"commit":{"message":"hrpc/snapshot: keep version unset if not specified\n\nHBase has 2 snapshot formats: version 0 and version 2. Version 2\nis more efficient as it doesn't require the creation of thousand of\nempty files and instead create a single manifest file[1].\n\nThe snapshot format version is dependent of the SnapshotDescription.\nWhen the version is not set, HBase will use the default version. In\nHBase 1.x/2.x, the default version is 2.\n\nUnfortunately, gohbase implementation always set the version to 0, even\nwhen the caller didn't explicitly set the version. This is is because\ninternally gohbase use an int32 (not a pointer) which default to 0\nimplicitly.\n\nThis change switch the internal storage to a pointer, to match the\n\"optional\" behaviour on the protobuf side.\n\n[1] More details at:\n- https://issues.apache.org/jira/browse/HBASE-7987\n- https://github.com/apache/hbase/commit/a669c765f7de5b8445229c8ff9274051df7b794c","shortMessageHtmlLink":"hrpc/snapshot: keep version unset if not specified"}},{"before":"b125fc74df3703fac8a2e1efb0085a7e5455c5ab","after":"02796953269f0e9f1cb822d53c15c0896b6014da","ref":"refs/heads/snapshot","pushedAt":"2023-12-12T13:18:16.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/snapshot: keep version unset if not specified\n\nHBase has 2 snapshot formats: version 0 and version 2. Version 2\nis more efficient as it doesn't require the creation of thousand of\nempty files and instead create a single manifest file[1].\n\nThe snapshot format version is dependent of the SnapshotDescription.\nWhen the version is not set, HBase will use the default version. In\nHBase 1.x/2.x, the default version is 2.\n\nUnfortunately, gohbase implementation always set the version to 0, even\nwhen the caller didn't explicitly set the version. This is is because\ninternally gohbase use an int32 (not a pointer) which default to 0\nimplicitly.\n\nThis change switch the internal storage to a pointer, to match the\n\"optional\" behaviour on the protobuf side.\n\n[1] More details at:\n- https://issues.apache.org/jira/browse/HBASE-7987\n- https://github.com/apache/hbase/commit/a669c765f7de5b8445229c8ff9274051df7b794c","shortMessageHtmlLink":"hrpc/snapshot: keep version unset if not specified"}},{"before":"f21cee2399d303210095787a9257af453006bb4d","after":"b125fc74df3703fac8a2e1efb0085a7e5455c5ab","ref":"refs/heads/snapshot","pushedAt":"2023-12-12T13:17:14.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/snapshot: keep version unset if not specified\n\nHBase has 2 snapshot formats: version 0 and version 2. Version 2\nis more efficient as it doesn't require the creation of thousand of\nempty files and instead create a single manifest file[1].\n\nThe snapshot format version is dependent of the SnapshotDescription.\nWhen the version is not set, HBase will use the default version. In\nHBase 1.x/2.x, the default version is 2.\n\nUnfortunately, gohbase implementation always set the version to 0, even\nwhen the caller didn't explicitely set the version. This is is because\ninternally gohbase use an int32 (not a pointer) which default to 0\nimplicitly.\n\nThis change switch the internal format to a pointer, to match the\n\"optional\" behaviour of the protobuf side.\n\n[1] More details at:\n- https://issues.apache.org/jira/browse/HBASE-7987\n- https://github.com/apache/hbase/commit/a669c765f7de5b8445229c8ff9274051df7b794c","shortMessageHtmlLink":"hrpc/snapshot: keep version unset if not specified"}},{"before":null,"after":"f21cee2399d303210095787a9257af453006bb4d","ref":"refs/heads/snapshot","pushedAt":"2023-12-12T13:08:08.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/snapshot: keep version unset if not specified\n\nHBase has 2 snapshot format version: version 0 and version 2. Version 2\nis more efficient as it doesn't require the creation of thousand of\nempty files and instead create a single manifest file[1].\n\nThe snapshot format version is dependent of the SnapshotDescription.\nWhen the version is not set, HBase will use the default version. In\nHBase 1.x/2.x, the default version is 2.\n\nUnfortunately, gohbase implementation always set the version to 0, even\nwhen the caller didn't explicitely set the version. This is is because\ninternally gohbase use an int32 (not a pointer) which default to 0\nimplicitely.\n\nThis change switch the internal format to a pointer, to match the\n\"optional\" behaviour of the protobuf side.\n\n[1] More details at:\n- https://issues.apache.org/jira/browse/HBASE-7987\n- https://github.com/apache/hbase/commit/a669c765f7de5b8445229c8ff9274051df7b794c","shortMessageHtmlLink":"hrpc/snapshot: keep version unset if not specified"}},{"before":"6b4edea33724cc89f0fd91242bcc55b5602521ea","after":null,"ref":"refs/heads/region-cache-metric","pushedAt":"2023-11-17T18:14:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"}},{"before":"e40c231483c7c906c79d233032bc208b318759b8","after":"642db041784ff431171ee980a0bdfe0ece97403c","ref":"refs/heads/master","pushedAt":"2023-11-17T18:14:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"cache: add a metric for the region cache size (#242)","shortMessageHtmlLink":"cache: add a metric for the region cache size (#242)"}},{"before":"4d0de19bca3bcec9d80ff4896ffe6932852c8eaa","after":"6b4edea33724cc89f0fd91242bcc55b5602521ea","ref":"refs/heads/region-cache-metric","pushedAt":"2023-11-17T11:02:52.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"cache: add a metric for the region cache size","shortMessageHtmlLink":"cache: add a metric for the region cache size"}},{"before":"c6b9547a424411b4177e1e18cffd93b219a9f8ac","after":"4d0de19bca3bcec9d80ff4896ffe6932852c8eaa","ref":"refs/heads/region-cache-metric","pushedAt":"2023-11-16T19:43:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"cache: add a metric for the region cache size","shortMessageHtmlLink":"cache: add a metric for the region cache size"}},{"before":null,"after":"c6b9547a424411b4177e1e18cffd93b219a9f8ac","ref":"refs/heads/region-cache-metric","pushedAt":"2023-11-16T19:04:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"cache: add a metric for the region cache size","shortMessageHtmlLink":"cache: add a metric for the region cache size"}},{"before":"c4dd77b6f84ecd5941b99ef7654c271be65c2f74","after":"e40c231483c7c906c79d233032bc208b318759b8","ref":"refs/heads/master","pushedAt":"2023-11-14T19:31:11.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"aaronbee","name":"Aaron Beitch","path":"/aaronbee","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/199899?s=80&v=4"},"commit":{"message":"region: Reduce allocations in marshalProto\n\ngoos: darwin\ngoarch: amd64\npkg: github.com/tsuna/gohbase/region\ncpu: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz\n │ before.txt │ after.txt │\n │ sec/op │ sec/op vs base │\nSendScanRequest/marshalProto-16 1003.5n ± 3% 983.3n ± 5% ~ (p=0.184 n=10)\nMultiToProto/cellblocks_marshalProto-16 2.445µ ± 3% 2.388µ ± 4% -2.31% (p=0.050 n=10)\nMultiToProto/no_cellblocks_marshalProto-16 3.054µ ± 3% 2.999µ ± 1% -1.82% (p=0.001 n=10)\nMultiToProtoLarge/marshalProto-16 256.9µ ± 1% 248.5µ ± 1% -3.28% (p=0.000 n=10)\ngeomean 6.623µ 6.467µ -2.36%\n\n │ before.txt │ after.txt │\n │ B/op │ B/op vs base │\nSendScanRequest/marshalProto-16 252.0 ± 0% 152.0 ± 0% -39.68% (p=0.000 n=10)\nMultiToProto/cellblocks_marshalProto-16 492.0 ± 0% 392.0 ± 0% -20.33% (p=0.000 n=10)\nMultiToProto/no_cellblocks_marshalProto-16 476.0 ± 0% 376.0 ± 0% -21.01% (p=0.000 n=10)\nMultiToProtoLarge/marshalProto-16 64.17Ki ± 0% 64.13Ki ± 0% -0.06% (p=0.000 n=10)\ngeomean 1.370Ki 1.076Ki -21.52%\n\n │ before.txt │ after.txt │\n │ allocs/op │ allocs/op vs base │\nSendScanRequest/marshalProto-16 6.000 ± 0% 4.000 ± 0% -33.33% (p=0.000 n=10)\nMultiToProto/cellblocks_marshalProto-16 7.000 ± 0% 5.000 ± 0% -28.57% (p=0.000 n=10)\nMultiToProto/no_cellblocks_marshalProto-16 6.000 ± 0% 4.000 ± 0% -33.33% (p=0.000 n=10)\nMultiToProtoLarge/marshalProto-16 7.000 ± 0% 5.000 ± 0% -28.57% (p=0.000 n=10)\ngeomean 6.481 4.472 -30.99%","shortMessageHtmlLink":"region: Reduce allocations in marshalProto"}},{"before":"dd71e1062b32d17713492bf71c84ddef907a9de0","after":null,"ref":"refs/heads/scan-attribute","pushedAt":"2023-11-02T17:25:43.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"}},{"before":"75354d5aa6462585e1b8f7e1efc944e64fd96edd","after":"c4dd77b6f84ecd5941b99ef7654c271be65c2f74","ref":"refs/heads/master","pushedAt":"2023-11-02T17:25:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/scan: add support for scan attribute (#238)","shortMessageHtmlLink":"hrpc/scan: add support for scan attribute (#238)"}},{"before":"5b376613e95d123b4878881fb913b0289473b4a0","after":"dd71e1062b32d17713492bf71c84ddef907a9de0","ref":"refs/heads/scan-attribute","pushedAt":"2023-11-02T16:52:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/scan: add support for scan attribute","shortMessageHtmlLink":"hrpc/scan: add support for scan attribute"}},{"before":"7def64c1c02c02211fd5a8ffbed575cb34545525","after":"5b376613e95d123b4878881fb913b0289473b4a0","ref":"refs/heads/scan-attribute","pushedAt":"2023-11-02T16:51:33.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/scan: add support for scan attribute","shortMessageHtmlLink":"hrpc/scan: add support for scan attribute"}},{"before":null,"after":"7def64c1c02c02211fd5a8ffbed575cb34545525","ref":"refs/heads/scan-attribute","pushedAt":"2023-11-02T16:38:04.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc/scan: add support for scan attribute","shortMessageHtmlLink":"hrpc/scan: add support for scan attribute"}},{"before":"f750f625b712169785f30ff96b6ab5c17ed1cd6d","after":"75354d5aa6462585e1b8f7e1efc944e64fd96edd","ref":"refs/heads/master","pushedAt":"2023-10-23T20:35:52.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"aaronbee","name":"Aaron Beitch","path":"/aaronbee","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/199899?s=80&v=4"},"commit":{"message":"SendBatch: Retry retryable errors\n\nTo match the behavior of SendRPC, SendBatch should retry RPCs that hit\nretryable errors: region.RetryableError, region.ServerError, and\nregion.NotServingRegionError.\n\nSendBatch will now retry each RPC that hits a retryable error. What\nused to be a single step through of assigning regions to RPCs,\ngrouping them by region server and then dispatching the RPCs to their\nrespective servers, is now done in a loop. The first iteration of\nthe loop operates on the entire batch. Later iterations operate on the\nset of RPCs that failed with retryable errors in the previous batch.","shortMessageHtmlLink":"SendBatch: Retry retryable errors"}},{"before":"21191da8374da2e0ccf2daa171018d0e05fcdfd8","after":null,"ref":"refs/heads/table-attributes","pushedAt":"2023-09-21T10:23:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"}},{"before":"6b4fbf6f67538507e9c20a88122b5bf53dc13f91","after":"f750f625b712169785f30ff96b6ab5c17ed1cd6d","ref":"refs/heads/master","pushedAt":"2023-09-21T10:23:48.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc: allow table creation with table attributes (#234)\n\nCloses #161","shortMessageHtmlLink":"hrpc: allow table creation with table attributes (#234)"}},{"before":"701886eaf7fb3f27d2297e6c729d2f7d5c708ad6","after":"6b4fbf6f67538507e9c20a88122b5bf53dc13f91","ref":"refs/heads/master","pushedAt":"2023-09-15T16:06:27.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"aaronbee","name":"Aaron Beitch","path":"/aaronbee","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/199899?s=80&v=4"},"commit":{"message":"SendBatch: Add histogram metric for RegionServers per Batch","shortMessageHtmlLink":"SendBatch: Add histogram metric for RegionServers per Batch"}},{"before":"14a99889708a3818f65a7974c7961df8868485a6","after":"21191da8374da2e0ccf2daa171018d0e05fcdfd8","ref":"refs/heads/table-attributes","pushedAt":"2023-09-04T22:57:31.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc: allow table creation with table attributes\n\nCloses #161","shortMessageHtmlLink":"hrpc: allow table creation with table attributes"}},{"before":"b05522d1e48b1eba9187fec33892b6a258cb317d","after":"14a99889708a3818f65a7974c7961df8868485a6","ref":"refs/heads/table-attributes","pushedAt":"2023-09-04T22:44:57.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrpc: allow table creation with table attributes\n\nCloses #161","shortMessageHtmlLink":"hrpc: allow table creation with table attributes"}},{"before":null,"after":"b05522d1e48b1eba9187fec33892b6a258cb317d","ref":"refs/heads/table-attributes","pushedAt":"2023-09-04T22:41:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"hrcp: allow table creation with table attributes\n\nCloses #161","shortMessageHtmlLink":"hrcp: allow table creation with table attributes"}},{"before":"63a20027395be605e927ac5cfcde427d4e8f5e4d","after":null,"ref":"refs/heads/revert-231-looptimer","pushedAt":"2023-08-25T15:13:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"}},{"before":"086c5c9acbe2a7ffb4de088ddab4c6948bb62bb3","after":"701886eaf7fb3f27d2297e6c729d2f7d5c708ad6","ref":"refs/heads/master","pushedAt":"2023-08-25T15:12:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dethi","name":"Thibault Deutsch","path":"/dethi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1011520?s=80&v=4"},"commit":{"message":"Revert \"region: Reimplement processRPCs batching loop\" (#233)\n\nThis reverts commit 086c5c9acbe2a7ffb4de088ddab4c6948bb62bb3.","shortMessageHtmlLink":"Revert \"region: Reimplement processRPCs batching loop\" (#233)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAERO3VHwA","startCursor":null,"endCursor":null}},"title":"Activity · tsuna/gohbase"}