This is an automated email from the ASF dual-hosted git repository. mhubail pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit 1e4b8c1477853db695aaa5a6595cd9d5ce2c69fa Author: Savyasach Reddy <[email protected]> AuthorDate: Fri Nov 29 20:50:27 2024 +0530 [NO ISSUE]: Fix AzureBlobStorageExternalDatasetOnePartitionTest - user model changes: no - storage format changes: no - interface changes: no details: - Opening an input stream on empty blobs in azurite throws a null pointer exception in versions > 3.31.0. https://github.com/Azure/Azurite/issues/2458 - Use a less conflicting port for gcs tests Change-Id: Ia6dff5172b91f0d0e8a26c0e69aceff3b74896c2 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/19147 Integration-Tests: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Reviewed-by: Murtadha Hubail <[email protected]> --- asterixdb/asterix-app/pom.xml | 4 ++-- .../org/apache/asterix/test/cloud_storage/CloudStorageGCSTest.java | 2 +- asterixdb/asterix-app/src/test/resources/cc-cloud-storage-gcs.conf | 2 +- asterixdb/asterix-cloud/pom.xml | 2 +- .../src/test/java/org/apache/asterix/cloud/gcs/LSMGCSTest.java | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/asterixdb/asterix-app/pom.xml b/asterixdb/asterix-app/pom.xml index 63bb7da916..950ff4ec49 100644 --- a/asterixdb/asterix-app/pom.xml +++ b/asterixdb/asterix-app/pom.xml @@ -326,7 +326,7 @@ <workingDirectory>${project.build.directory}/fake-gcs-server</workingDirectory> <arguments> <argument>-port</argument> - <argument>4443</argument> + <argument>24443</argument> <argument>-scheme</argument> <argument>http</argument> <argument>-host</argument> @@ -447,7 +447,7 @@ <goal>npm</goal> </goals> <configuration> - <arguments>install azurite</arguments> + <arguments>install [email protected]</arguments> </configuration> </execution> </executions> diff --git a/asterixdb/asterix-app/src/test/java/org/apache/asterix/test/cloud_storage/CloudStorageGCSTest.java b/asterixdb/asterix-app/src/test/java/org/apache/asterix/test/cloud_storage/CloudStorageGCSTest.java index 3a0344558d..a60acb7229 100644 --- a/asterixdb/asterix-app/src/test/java/org/apache/asterix/test/cloud_storage/CloudStorageGCSTest.java +++ b/asterixdb/asterix-app/src/test/java/org/apache/asterix/test/cloud_storage/CloudStorageGCSTest.java @@ -66,7 +66,7 @@ public class CloudStorageGCSTest { private static final String CONFIG_FILE_NAME = "src/test/resources/cc-cloud-storage-gcs.conf"; private static final String DELTA_RESULT_PATH = "results_cloud"; private static final String EXCLUDED_TESTS = "MP"; - public static final String MOCK_SERVER_HOSTNAME = "http://127.0.0.1:4443"; + public static final String MOCK_SERVER_HOSTNAME = "http://127.0.0.1:24443"; private static final String MOCK_SERVER_PROJECT_ID = "asterixdb-gcs-test-project-id"; public CloudStorageGCSTest(TestCaseContext tcCtx) { diff --git a/asterixdb/asterix-app/src/test/resources/cc-cloud-storage-gcs.conf b/asterixdb/asterix-app/src/test/resources/cc-cloud-storage-gcs.conf index 3c883a86c1..55caad6748 100644 --- a/asterixdb/asterix-app/src/test/resources/cc-cloud-storage-gcs.conf +++ b/asterixdb/asterix-app/src/test/resources/cc-cloud-storage-gcs.conf @@ -67,6 +67,6 @@ storage.partitioning=static cloud.storage.scheme=gs cloud.storage.bucket=cloud-storage-container cloud.storage.region=us-west2 -cloud.storage.endpoint=http://127.0.0.1:4443 +cloud.storage.endpoint=http://127.0.0.1:24443 cloud.storage.anonymous.auth=true cloud.storage.cache.policy=selective diff --git a/asterixdb/asterix-cloud/pom.xml b/asterixdb/asterix-cloud/pom.xml index 659a6d79c4..0ab291daa5 100644 --- a/asterixdb/asterix-cloud/pom.xml +++ b/asterixdb/asterix-cloud/pom.xml @@ -117,7 +117,7 @@ <workingDirectory>${project.build.directory}/fake-gcs-server</workingDirectory> <arguments> <argument>-port</argument> - <argument>4443</argument> + <argument>24443</argument> <argument>-scheme</argument> <argument>http</argument> <argument>-host</argument> diff --git a/asterixdb/asterix-cloud/src/test/java/org/apache/asterix/cloud/gcs/LSMGCSTest.java b/asterixdb/asterix-cloud/src/test/java/org/apache/asterix/cloud/gcs/LSMGCSTest.java index 3c62cce7a8..ad14c54b7a 100644 --- a/asterixdb/asterix-cloud/src/test/java/org/apache/asterix/cloud/gcs/LSMGCSTest.java +++ b/asterixdb/asterix-cloud/src/test/java/org/apache/asterix/cloud/gcs/LSMGCSTest.java @@ -34,7 +34,7 @@ import com.google.cloud.storage.StorageOptions; public class LSMGCSTest extends AbstractLSMTest { private static Storage client; - private static final int MOCK_SERVER_PORT = 4443; + private static final int MOCK_SERVER_PORT = 24443; private static final String MOCK_SERVER_HOSTNAME = "http://127.0.0.1:" + MOCK_SERVER_PORT; private static final String MOCK_SERVER_REGION = "us-west2"; // does not matter the value private static final String MOCK_SERVER_PROJECT_ID = "asterixdb-gcs-test-project-id";
