Project

General

Profile

Bug #22804

Updated by John Spray about 6 years ago

 
 <pre> 
 

 <?xml version="1.0" encoding="UTF-8" ?> 
 <workload name="s3-sample" description="sample benchmark for s3"> 

   <storage type="s3" config="accesskey=test1;secretkey=test1;endpoint=http://s3.z1.tt;path_style_access=true" /> 

   <workflow> 

     <workstage name="init">   
       <work type="init" workers="1" config="cprefix=mix01;containers=r(1,2)" /> 
     </workstage> 

     <workstage name="prepare"> 
       <work type="prepare" workers="1"    config="cprefix=mix01;containers=r(1,2);objects=r(1,10);sizes=c(100)KB" /> 
     </workstage> 

     <workstage name="main">   
       <work name="main" workers="100" runtime="30"> 
         <operation type="read" ratio="30" config="cprefix=mix01;containers=u(1,2);objects=u(1,10)" /> 
         <operation type="write" ratio="40" config="cprefix=mix01;containers=u(1,2);objects=u(11,100);sizes=c(100)KB" /> 
		 <operation type="delete" ratio="30" config="cprefix=mix01;containers=u(1,2);objects=u(11,100)" /> 
       </work> 
     </workstage> 

   </workflow> 

 </workload> 

 </pre> 

 


 After the test, there are differences between the objects on both sides. from the log that these objects are `PUT `and `DELETE` at the same time. 

 But if just testing    mix PUT and GET, sync ok. 

Back