Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1k
PHOENIX-6118: Multi Tenant Workloads using PHERF#878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
ee296b93c5a1719cc199634ffb530fe7cac6003d7b9bdcacdFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.phoenix.pherf.workload.mt.tenantoperation; | ||
yanxinyi marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| import org.apache.phoenix.end2end.ParallelStatsDisabledIT; | ||
| import org.apache.phoenix.pherf.PherfConstants; | ||
| import org.apache.phoenix.pherf.XMLConfigParserTest; | ||
| import org.apache.phoenix.pherf.configuration.DataModel; | ||
| import org.apache.phoenix.pherf.configuration.XMLConfigParser; | ||
| import org.apache.phoenix.pherf.schema.SchemaReader; | ||
| import org.apache.phoenix.pherf.util.PhoenixUtil; | ||
| import org.junit.BeforeClass; | ||
| import java.net.URL; | ||
| import java.nio.file.Path; | ||
| import java.nio.file.Paths; | ||
| import java.util.ArrayList; | ||
| import java.util.List; | ||
| import java.util.Properties; | ||
| import static org.junit.Assert.assertNotNull; | ||
| import static org.junit.Assert.assertTrue; | ||
| public class MultiTenantOperationBaseIT extends ParallelStatsDisabledIT { | ||
| enum TestOperationGroup { | ||
| upsertOp, queryOp1, queryOp2, idleOp, udfOp | ||
| } | ||
| static enum TestTenantGroup { | ||
| tg1, tg2, tg3 | ||
| } | ||
| protected static final String matcherScenario = ".*scenario/.*test_mt_workload.*xml"; | ||
| protected static final String matcherSchema = ".*datamodel/.*test_schema_mt*.*sql"; | ||
| protected static PhoenixUtil util = PhoenixUtil.create(true); | ||
| protected static Properties properties; | ||
| protected static SchemaReader reader; | ||
| protected static XMLConfigParser parser; | ||
| protected static List<Path> resources; | ||
| @BeforeClass public static synchronized void setUp() throws Exception { | ||
| PherfConstants constants = PherfConstants.create(); | ||
| properties = constants.getProperties(PherfConstants.PHERF_PROPERTIES, false); | ||
| PhoenixUtil.setZookeeper("localhost"); | ||
| reader = new SchemaReader(util, matcherSchema); | ||
| parser = new XMLConfigParser(matcherScenario); | ||
| reader.applySchema(); | ||
| resources = new ArrayList<>(reader.getResourceList()); | ||
| assertTrue("Could not pull list of schema files.", resources.size() > 0); | ||
| assertNotNull("Could not read schema file.", reader.resourceToString(resources.get(0))); | ||
| } | ||
| public DataModel readTestDataModel(String resourceName) throws Exception { | ||
| URL scenarioUrl = XMLConfigParserTest.class.getResource(resourceName); | ||
| assertNotNull(scenarioUrl); | ||
| Path p = Paths.get(scenarioUrl.toURI()); | ||
| return XMLConfigParser.readDataModel(p); | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,112 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.phoenix.pherf.workload.mt.tenantoperation; | ||
yanxinyi marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| import org.apache.phoenix.pherf.configuration.DataModel; | ||
| import org.apache.phoenix.pherf.configuration.LoadProfile; | ||
| import org.apache.phoenix.pherf.configuration.Scenario; | ||
| import org.apache.phoenix.pherf.util.PhoenixUtil; | ||
| import org.apache.phoenix.pherf.workload.mt.Operation; | ||
| import org.apache.phoenix.pherf.workload.mt.OperationStats; | ||
| import org.apache.phoenix.thirdparty.com.google.common.base.Function; | ||
| import org.apache.phoenix.thirdparty.com.google.common.base.Supplier; | ||
| import org.junit.Assert; | ||
| import org.junit.Test; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
| import static org.junit.Assert.assertEquals; | ||
| import static org.junit.Assert.assertTrue; | ||
| /** | ||
| * Tests focused on tenant operations and their validations | ||
| */ | ||
| public class TenantOperationIT extends MultiTenantOperationBaseIT { | ||
| private static final Logger LOGGER = LoggerFactory.getLogger(TenantOperationIT.class); | ||
yanxinyi marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| @Test | ||
| public void testVariousOperations() throws Exception { | ||
| int numTenantGroups = 3; | ||
| int numOpGroups = 5; | ||
| int numRuns = 10; | ||
| int numOperations = 10; | ||
| PhoenixUtil pUtil = PhoenixUtil.create(); | ||
| DataModel model = readTestDataModel("/scenario/test_mt_workload.xml"); | ||
| for (Scenario scenario : model.getScenarios()) { | ||
| LOGGER.debug(String.format("Testing %s", scenario.getName())); | ||
| LoadProfile loadProfile = scenario.getLoadProfile(); | ||
| assertEquals("tenant group size is not as expected: ", | ||
| numTenantGroups, loadProfile.getTenantDistribution().size()); | ||
| assertEquals("operation group size is not as expected: ", | ||
| numOpGroups, loadProfile.getOpDistribution().size()); | ||
| TenantOperationFactory opFactory = new TenantOperationFactory(pUtil, model, scenario); | ||
| TenantOperationEventGenerator evtGen = new TenantOperationEventGenerator( | ||
| opFactory.getOperations(), model, scenario); | ||
| assertEquals("operation group size from the factory is not as expected: ", | ||
| numOpGroups, opFactory.getOperations().size()); | ||
| int numRowsInserted = 0; | ||
| for (int i = 0; i < numRuns; i++) { | ||
| int ops = numOperations; | ||
| loadProfile.setNumOperations(ops); | ||
| while (ops-- > 0) { | ||
| TenantOperationInfo info = evtGen.next(); | ||
| Supplier<Function<TenantOperationInfo, OperationStats>> opSupplier = | ||
| opFactory.getOperationSupplier(info); | ||
| OperationStats stats = opSupplier.get().apply(info); | ||
| LOGGER.info(pUtil.getGSON().toJson(stats)); | ||
| if (info.getOperation().getType() == Operation.OperationType.PRE_RUN) continue; | ||
| switch (TestOperationGroup.valueOf(info.getOperationGroupId())) { | ||
| case upsertOp: | ||
| assertTrue(opSupplier.getClass() | ||
| .isAssignableFrom(UpsertOperationSupplier.class)); | ||
| numRowsInserted += stats.getRowCount(); | ||
| break; | ||
| case queryOp1: | ||
| case queryOp2: | ||
| assertTrue(opFactory.getOperationSupplier(info).getClass() | ||
| .isAssignableFrom(QueryOperationSupplier.class)); | ||
| // expected row count == num rows inserted | ||
| assertEquals(numRowsInserted, stats.getRowCount()); | ||
| break; | ||
| case idleOp: | ||
| assertTrue(opFactory.getOperationSupplier(info).getClass() | ||
| .isAssignableFrom(IdleTimeOperationSupplier.class)); | ||
| assertEquals(0, stats.getRowCount()); | ||
| // expected think time (no-op) to be ~50ms | ||
| assertTrue(40 < stats.getDurationInMs() && stats.getDurationInMs() < 60); | ||
| break; | ||
| case udfOp: | ||
| assertTrue(opFactory.getOperationSupplier(info).getClass() | ||
| .isAssignableFrom(UserDefinedOperationSupplier.class)); | ||
| assertEquals(0, stats.getRowCount()); | ||
| break; | ||
| default: | ||
| Assert.fail(); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can you remove this unused import from the next PR. Don't need to fix it now