From 5100c06575d435dc1062c2fc21ae9b0470f0d02f Mon Sep 17 00:00:00 2001 From: sanaz Date: Tue, 26 Mar 2024 08:28:12 -0700 Subject: [PATCH] increases resources, blob ranges, and sequences --- test/e2e/throughput_test.go | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/test/e2e/throughput_test.go b/test/e2e/throughput_test.go index e58900f4e8..ff2621f442 100644 --- a/test/e2e/throughput_test.go +++ b/test/e2e/throughput_test.go @@ -51,15 +51,20 @@ func TestE2EThroughput(t *testing.T) { // obtain the GRPC endpoints of the validators gRPCEndpoints, err := testnet.RemoteGRPCEndpoints() require.NoError(t, err) - t.Log("txsim GRPC endpoint", gRPCEndpoints[:1]) + t.Log("txsim GRPC endpoint", gRPCEndpoints) t.Log("Creating txsim nodes") // create txsim nodes and point them to the validators txsimVersion := "cf79f55" // "65c1a8e" // TODO pull the latest version of txsim if possible - err = testnet.CreateAndSetupTxSimNodes(txsimVersion, seed, 5, - "5000-10000", 3, defaultResources, - gRPCEndpoints[:1]) + err = testnet.CreateAndSetupTxSimNodes(txsimVersion, seed, 10, + "10000-50000", 3, Resources{ + memoryRequest: "400Mi", + memoryLimit: "1Gi", + cpu: "2", + volume: "1Gi", + }, + gRPCEndpoints) require.NoError(t, err) // start the testnet @@ -74,7 +79,7 @@ func TestE2EThroughput(t *testing.T) { require.NoError(t, err) // wait some time for the txsim to submit transactions - time.Sleep(1 * time.Minute) + time.Sleep(2 * time.Minute) t.Log("Reading blockchain") blockchain, err := testnode.ReadBlockchain(context.Background(), testnet.Node(0).AddressRPC())