use of org.apache.geode.internal.cache.execute.data.Shipment in project geode by apache.
the class PRColocationDUnitTest method putShipmentPartitionedRegion.
public static void putShipmentPartitionedRegion(String partitionedRegionName) {
assertNotNull(basicGetCache());
Region partitionedregion = basicGetCache().getRegion(Region.SEPARATOR + partitionedRegionName);
assertNotNull(partitionedregion);
for (int i = 1; i <= 10; i++) {
CustId custid = new CustId(i);
for (int j = 1; j <= 10; j++) {
int oid = (i * 10) + j;
OrderId orderId = new OrderId(oid, custid);
for (int k = 1; k <= 10; k++) {
int sid = (oid * 10) + k;
ShipmentId shipmentId = new ShipmentId(sid, orderId);
Shipment shipment = new Shipment("Shipment" + sid);
try {
partitionedregion.put(shipmentId, shipment);
assertTrue(partitionedregion.containsKey(shipmentId));
assertEquals(shipment, partitionedregion.get(shipmentId));
} catch (Exception e) {
Assert.fail("putShipmentPartitionedRegion : failed while doing put operation in ShipmentPartitionedRegion ", e);
}
LogWriterUtils.getLogWriter().info("Shipment :- { " + shipmentId + " : " + shipment + " }");
}
}
}
}
use of org.apache.geode.internal.cache.execute.data.Shipment in project geode by apache.
the class FixedPartitioningTestBase method putShipmentPartitionedRegion_Persistence2.
public static void putShipmentPartitionedRegion_Persistence2(String partitionedRegionName) {
assertNotNull(cache);
Region partitionedregion = cache.getRegion(Region.SEPARATOR + partitionedRegionName);
assertNotNull(partitionedregion);
for (int i = 1; i <= 20; i++) {
if (i % 2 == 1) {
CustId custid = new CustId(i);
for (int j = 1; j <= 10; j++) {
int oid = (i * 10) + j;
OrderId orderId = new OrderId(oid, custid);
for (int k = 1; k <= 10; k++) {
int sid = (oid * 10) + k;
ShipmentId shipmentId = new ShipmentId(sid, orderId);
Shipment shipment = new Shipment("Shipment" + sid);
try {
partitionedregion.put(shipmentId, shipment);
} catch (Exception e) {
org.apache.geode.test.dunit.Assert.fail("putShipmentPartitionedRegion : failed while doing put operation in ShipmentPartitionedRegion ", e);
}
LogWriterUtils.getLogWriter().info("Shipment :- { " + shipmentId + " : " + shipment + " }");
}
}
}
}
}
use of org.apache.geode.internal.cache.execute.data.Shipment in project geode by apache.
the class PerfFunction method execute.
public void execute(FunctionContext context) {
RegionFunctionContext ctx = (RegionFunctionContext) context;
Region customerPR = ctx.getDataSet();
Region orderPR = customerPR.getCache().getRegion(PRColocationDUnitTest.OrderPartitionedRegionName);
Region shipmentPR = customerPR.getCache().getRegion(PRColocationDUnitTest.ShipmentPartitionedRegionName);
ArrayList args = (ArrayList) ctx.getArguments();
for (int i = 0; i < args.size() / 4; i++) {
OrderId orderId = (OrderId) args.get(i * 4);
Order order = (Order) args.get(i * 4 + 1);
ShipmentId shipmentId = (ShipmentId) args.get(i * 4 + 2);
Shipment shipment = (Shipment) args.get(i * 4 + 3);
orderPR.put(orderId, order);
shipmentPR.put(shipmentId, shipment);
}
context.getResultSender().lastResult(null);
}
use of org.apache.geode.internal.cache.execute.data.Shipment in project geode by apache.
the class PerfTxFunction method execute.
public void execute(FunctionContext context) {
RegionFunctionContext ctx = (RegionFunctionContext) context;
Region customerPR = ctx.getDataSet();
Region orderPR = customerPR.getCache().getRegion(PRColocationDUnitTest.OrderPartitionedRegionName);
Region shipmentPR = customerPR.getCache().getRegion(PRColocationDUnitTest.ShipmentPartitionedRegionName);
ArrayList args = (ArrayList) ctx.getArguments();
// put the entries
CacheTransactionManager mgr = customerPR.getCache().getCacheTransactionManager();
mgr.begin();
for (int i = 0; i < args.size() / 4; i++) {
OrderId orderId = (OrderId) args.get(i * 4);
Order order = (Order) args.get(i * 4 + 1);
ShipmentId shipmentId = (ShipmentId) args.get(i * 4 + 2);
Shipment shipment = (Shipment) args.get(i * 4 + 3);
orderPR.put(orderId, order);
shipmentPR.put(shipmentId, shipment);
}
mgr.commit();
context.getResultSender().lastResult(null);
}
use of org.apache.geode.internal.cache.execute.data.Shipment in project geode by apache.
the class FixedPartitioningTestBase method putShipmentPartitionedRegion_Persistence.
public static void putShipmentPartitionedRegion_Persistence(String partitionedRegionName) {
assertNotNull(cache);
Region partitionedregion = cache.getRegion(Region.SEPARATOR + partitionedRegionName);
assertNotNull(partitionedregion);
for (int i = 1; i <= 20; i++) {
CustId custid = new CustId(i);
for (int j = 1; j <= 10; j++) {
int oid = (i * 10) + j;
OrderId orderId = new OrderId(oid, custid);
for (int k = 1; k <= 10; k++) {
int sid = (oid * 10) + k;
ShipmentId shipmentId = new ShipmentId(sid, orderId);
Shipment shipment = new Shipment("Shipment" + sid);
try {
partitionedregion.put(shipmentId, shipment);
} catch (Exception e) {
org.apache.geode.test.dunit.Assert.fail("putShipmentPartitionedRegion : failed while doing put operation in ShipmentPartitionedRegion ", e);
}
LogWriterUtils.getLogWriter().info("Shipment :- { " + shipmentId + " : " + shipment + " }");
}
}
}
}
Aggregations