-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Features * [API breaking change] Rename subkey to hostname. * [Sharding] Add a tool to validate records * [Sharding] Generate shard specific delta files * Add base64 encoding to CSV delta cli tool * Add safe metric definitions * Add unsafe metric definitions * Fully statically link the server binary * Simplified UDF tester. ### Bug Fixes * Add error message when key not found. * Add proxy visibility back to aws_artifacts * allow internal ingress for otlp * Clear errors in driver prior to parsing. * Fix bash script flag for -v * Fully qualify RegisterBenchmark calls. * Package proxify layer on container_image * Remove unused import httpbody.proto * Update visibility target to public target in common repo * Use set for cache key lookups ### GCP: Features * **GCP:** add capability to use existing service_mesh ### Documentation * Add a top level getting_started directory. * Add docs about AWS AMI structure * Add instructions on how to call UDF APIs from C++ WASM. * Update sharding docs with GCP-specific info ### Dependencies * **deps:** Update data-plane-shared to b463f16 * **deps:** Utilize rules_closure deps via data-plane-shared Bug: N/A Change-Id: I131da99f79b6f24613768cfc50485946678b3ee4 GitOrigin-RevId: 3ffac8eae058fb89585fe99d40243b0e17f3c352
- Loading branch information
Showing
399 changed files
with
5,437 additions
and
4,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
bazel-kv-server | ||
tools/wasm_example/ | ||
google_internal/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/bash | ||
|
||
set -o pipefail | ||
set -o errexit | ||
|
||
declare -r -i CLANG_VER=15 | ||
|
||
function apt_update() { | ||
apt-get --quiet -o 'Acquire::https::No-Cache=True' -o 'Acquire::http::No-Cache=True' update | ||
} | ||
|
||
function install_build_tools() { | ||
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y --no-install-recommends \ | ||
gnupg="2.2.*" \ | ||
lsb-release="11.1.*" \ | ||
make="4.*" \ | ||
software-properties-common="0.99.*" \ | ||
wget="1.20.*" | ||
} | ||
|
||
function install_clang() { | ||
ls -l /build | ||
chmod +x /build/llvm.sh | ||
/build/llvm.sh ${CLANG_VER} | ||
apt-get --quiet install -y --no-install-recommends libc++-${CLANG_VER}-dev | ||
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${CLANG_VER} 100 | ||
rm -f llvm.sh | ||
|
||
clang --version | ||
} | ||
|
||
function install_profiler() { | ||
cd /build | ||
tar xz --strip-components 1 -f gperftools.tar.gz | ||
./configure | ||
make libprofiler.la | ||
declare -r ver=0.5.9 | ||
cp .libs/libprofiler.so.${ver} /usr/lib | ||
ls -l /usr/lib/libprofiler* | ||
} | ||
|
||
apt_update | ||
install_build_tools | ||
install_clang | ||
install_profiler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7ecd31d8ca27e17acf475eee1fdf719e60310bf63920974294f2ad8bf87f014c | ||
1feb61b0cf40e2797fc6a3425c3e50ce928ca194f3338d9a7155e51a4917312a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
d8715c569f95b1162afcfbf7892d9d87815063be8b84475e7605f712ffca7461 | ||
a1c165d019f546e1fcad06506da3b274094b61a9add5576bf3fed6e5a45fb8d4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
f4c5ca3eb72c967ec7f2ba8cd4236fc8c7af9b211b99b8a32c3a9656ca04ba29 | ||
a10495fe1e23472aea6770b0c9760e1cdfc011a4883ff5fb3d488774e6995ae6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4b909561789591bd680993312cf708e831da57ffe9d8e764e03b190d30073ce0 | ||
cd3fb189dd23793af3bdfa02d6774ccb35bddbec7059761e25c4f7be4c1e8ca1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bazel-debian |
Oops, something went wrong.