-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support caching of bookkeeping files locally for cloud workspaces/arr…
…ays (#177) * Support caching of bookkeeping files locally for cloud workspaces/arrays * remove azurite for now, needs new certificates * Codecov now needs token even for public repositories * Test TILEDB_CACHE and TILEDB_BOOKKEEPING_STATS flows * Add tests for code coverage * Refactor and expose cache_fragment_metadata() as api (#178) * Add cache_fragment_metadata to TileDBUtils to expose this functionality as api * Don't leak file handles in error conditions * Copyright update
- Loading branch information
1 parent
62a27ad
commit 41f88bb
Showing
16 changed files
with
286 additions
and
149 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 |
---|---|---|
|
@@ -53,7 +53,7 @@ run_azure_tests() { | |
echo "az schema storage buffer test" && | ||
$CMAKE_BUILD_DIR/test/test_storage_buffer --test-dir "az://$AZURE_CONTAINER_NAME@$AZURE_STORAGE_ACCOUNT.blob.core.windows.net/$TEST" && | ||
echo "az schema examples" && | ||
time $GITHUB_WORKSPACE/examples/run_examples.sh "az://$AZURE_CONTAINER_NAME@$AZURE_STORAGE_ACCOUNT.blob.core.windows.net/$TEST" && | ||
TILEDB_CACHE=1 time $GITHUB_WORKSPACE/examples/run_examples.sh "az://$AZURE_CONTAINER_NAME@$AZURE_STORAGE_ACCOUNT.blob.core.windows.net/$TEST" && | ||
echo "az schema small size storage test" && | ||
(TILEDB_MAX_STREAM_SIZE=32 $CMAKE_BUILD_DIR/test/test_azure_blob_storage --test-dir "az://$AZURE_CONTAINER_NAME@$AZURE_STORAGE_ACCOUNT.blob.core.windows.net/$TEST" [read-write-small] || echo "az schema small size storage test failed") && | ||
echo "Running with $1 DONE" && | ||
|
@@ -119,7 +119,8 @@ elif [[ $INSTALL_TYPE == azurite ]]; then | |
$CMAKE_BUILD_DIR/test/test_storage_buffer --test-dir "az://[email protected]/$TEST" && | ||
AZURE_STORAGE_ACCOUNT=$TEMP_VAR | ||
$GITHUB_WORKSPACE/examples/run_examples.sh "az://[email protected]/$TEST" && | ||
$GITHUB_WORKSPACE/examples/run_examples.sh "azb://test/$TEST?account=devstoreaccount1" | ||
$GITHUB_WORKSPACE/examples/run_examples.sh "azb://test/$TEST?account=devstoreaccount1" && | ||
TILEDB_CACHE=1 $GITHUB_WORKSPACE/examples/run_examples.sh "az://test/$TEST?account=devstoreaccount1" | ||
|
||
elif [[ $INSTALL_TYPE == aws ]]; then | ||
TILEDB_BENCHMARK=1 | ||
|
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
Oops, something went wrong.