BUCK 649 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725
  1. # This file @generated by:
  2. #$ python3 buckifier/buckify_rocksdb.py
  3. # --> DO NOT EDIT MANUALLY <--
  4. # This file is a Facebook-specific integration for buck builds, so can
  5. # only be validated by Facebook employees.
  6. load("//rocks/buckifier:defs.bzl", "cpp_library_wrapper","rocks_cpp_library_wrapper","cpp_binary_wrapper","cpp_unittest_wrapper","fancy_bench_wrapper","add_c_test_wrapper")
  7. load("@fbcode_macros//build_defs:export_files.bzl", "export_file")
  8. cpp_library_wrapper(name="rocksdb_lib", srcs=[
  9. "cache/cache.cc",
  10. "cache/cache_entry_roles.cc",
  11. "cache/cache_helpers.cc",
  12. "cache/cache_key.cc",
  13. "cache/cache_reservation_manager.cc",
  14. "cache/charged_cache.cc",
  15. "cache/clock_cache.cc",
  16. "cache/compressed_secondary_cache.cc",
  17. "cache/lru_cache.cc",
  18. "cache/secondary_cache.cc",
  19. "cache/secondary_cache_adapter.cc",
  20. "cache/sharded_cache.cc",
  21. "cache/tiered_secondary_cache.cc",
  22. "db/arena_wrapped_db_iter.cc",
  23. "db/attribute_group_iterator_impl.cc",
  24. "db/blob/blob_contents.cc",
  25. "db/blob/blob_fetcher.cc",
  26. "db/blob/blob_file_addition.cc",
  27. "db/blob/blob_file_builder.cc",
  28. "db/blob/blob_file_cache.cc",
  29. "db/blob/blob_file_garbage.cc",
  30. "db/blob/blob_file_meta.cc",
  31. "db/blob/blob_file_reader.cc",
  32. "db/blob/blob_garbage_meter.cc",
  33. "db/blob/blob_log_format.cc",
  34. "db/blob/blob_log_sequential_reader.cc",
  35. "db/blob/blob_log_writer.cc",
  36. "db/blob/blob_source.cc",
  37. "db/blob/prefetch_buffer_collection.cc",
  38. "db/builder.cc",
  39. "db/c.cc",
  40. "db/coalescing_iterator.cc",
  41. "db/column_family.cc",
  42. "db/compaction/compaction.cc",
  43. "db/compaction/compaction_iterator.cc",
  44. "db/compaction/compaction_job.cc",
  45. "db/compaction/compaction_outputs.cc",
  46. "db/compaction/compaction_picker.cc",
  47. "db/compaction/compaction_picker_fifo.cc",
  48. "db/compaction/compaction_picker_level.cc",
  49. "db/compaction/compaction_picker_universal.cc",
  50. "db/compaction/compaction_service_job.cc",
  51. "db/compaction/compaction_state.cc",
  52. "db/compaction/sst_partitioner.cc",
  53. "db/compaction/subcompaction_state.cc",
  54. "db/convenience.cc",
  55. "db/db_filesnapshot.cc",
  56. "db/db_impl/compacted_db_impl.cc",
  57. "db/db_impl/db_impl.cc",
  58. "db/db_impl/db_impl_compaction_flush.cc",
  59. "db/db_impl/db_impl_debug.cc",
  60. "db/db_impl/db_impl_experimental.cc",
  61. "db/db_impl/db_impl_files.cc",
  62. "db/db_impl/db_impl_follower.cc",
  63. "db/db_impl/db_impl_open.cc",
  64. "db/db_impl/db_impl_readonly.cc",
  65. "db/db_impl/db_impl_secondary.cc",
  66. "db/db_impl/db_impl_write.cc",
  67. "db/db_info_dumper.cc",
  68. "db/db_iter.cc",
  69. "db/dbformat.cc",
  70. "db/error_handler.cc",
  71. "db/event_helpers.cc",
  72. "db/experimental.cc",
  73. "db/external_sst_file_ingestion_job.cc",
  74. "db/file_indexer.cc",
  75. "db/flush_job.cc",
  76. "db/flush_scheduler.cc",
  77. "db/forward_iterator.cc",
  78. "db/import_column_family_job.cc",
  79. "db/internal_stats.cc",
  80. "db/log_reader.cc",
  81. "db/log_writer.cc",
  82. "db/logs_with_prep_tracker.cc",
  83. "db/malloc_stats.cc",
  84. "db/manifest_ops.cc",
  85. "db/memtable.cc",
  86. "db/memtable_list.cc",
  87. "db/merge_helper.cc",
  88. "db/merge_operator.cc",
  89. "db/multi_scan.cc",
  90. "db/output_validator.cc",
  91. "db/periodic_task_scheduler.cc",
  92. "db/range_del_aggregator.cc",
  93. "db/range_tombstone_fragmenter.cc",
  94. "db/repair.cc",
  95. "db/seqno_to_time_mapping.cc",
  96. "db/snapshot_impl.cc",
  97. "db/table_cache.cc",
  98. "db/table_properties_collector.cc",
  99. "db/transaction_log_impl.cc",
  100. "db/trim_history_scheduler.cc",
  101. "db/version_builder.cc",
  102. "db/version_edit.cc",
  103. "db/version_edit_handler.cc",
  104. "db/version_set.cc",
  105. "db/wal_edit.cc",
  106. "db/wal_manager.cc",
  107. "db/wide/wide_column_serialization.cc",
  108. "db/wide/wide_columns.cc",
  109. "db/wide/wide_columns_helper.cc",
  110. "db/write_batch.cc",
  111. "db/write_batch_base.cc",
  112. "db/write_controller.cc",
  113. "db/write_stall_stats.cc",
  114. "db/write_thread.cc",
  115. "db_stress_tool/db_stress_compression_manager.cc",
  116. "env/composite_env.cc",
  117. "env/env.cc",
  118. "env/env_chroot.cc",
  119. "env/env_encryption.cc",
  120. "env/env_posix.cc",
  121. "env/file_system.cc",
  122. "env/file_system_tracer.cc",
  123. "env/fs_on_demand.cc",
  124. "env/fs_posix.cc",
  125. "env/fs_remap.cc",
  126. "env/io_posix.cc",
  127. "env/mock_env.cc",
  128. "env/unique_id_gen.cc",
  129. "file/delete_scheduler.cc",
  130. "file/file_prefetch_buffer.cc",
  131. "file/file_util.cc",
  132. "file/filename.cc",
  133. "file/line_file_reader.cc",
  134. "file/random_access_file_reader.cc",
  135. "file/read_write_util.cc",
  136. "file/readahead_raf.cc",
  137. "file/sequence_file_reader.cc",
  138. "file/sst_file_manager_impl.cc",
  139. "file/writable_file_writer.cc",
  140. "logging/auto_roll_logger.cc",
  141. "logging/event_logger.cc",
  142. "logging/log_buffer.cc",
  143. "memory/arena.cc",
  144. "memory/concurrent_arena.cc",
  145. "memory/jemalloc_nodump_allocator.cc",
  146. "memory/memkind_kmem_allocator.cc",
  147. "memory/memory_allocator.cc",
  148. "memtable/alloc_tracker.cc",
  149. "memtable/hash_linklist_rep.cc",
  150. "memtable/hash_skiplist_rep.cc",
  151. "memtable/skiplistrep.cc",
  152. "memtable/vectorrep.cc",
  153. "memtable/wbwi_memtable.cc",
  154. "memtable/write_buffer_manager.cc",
  155. "monitoring/histogram.cc",
  156. "monitoring/histogram_windowing.cc",
  157. "monitoring/in_memory_stats_history.cc",
  158. "monitoring/instrumented_mutex.cc",
  159. "monitoring/iostats_context.cc",
  160. "monitoring/perf_context.cc",
  161. "monitoring/perf_level.cc",
  162. "monitoring/persistent_stats_history.cc",
  163. "monitoring/statistics.cc",
  164. "monitoring/thread_status_impl.cc",
  165. "monitoring/thread_status_updater.cc",
  166. "monitoring/thread_status_updater_debug.cc",
  167. "monitoring/thread_status_util.cc",
  168. "monitoring/thread_status_util_debug.cc",
  169. "options/cf_options.cc",
  170. "options/configurable.cc",
  171. "options/customizable.cc",
  172. "options/db_options.cc",
  173. "options/offpeak_time_info.cc",
  174. "options/options.cc",
  175. "options/options_helper.cc",
  176. "options/options_parser.cc",
  177. "port/mmap.cc",
  178. "port/port_posix.cc",
  179. "port/stack_trace.cc",
  180. "port/win/env_default.cc",
  181. "port/win/env_win.cc",
  182. "port/win/io_win.cc",
  183. "port/win/port_win.cc",
  184. "port/win/win_logger.cc",
  185. "port/win/win_thread.cc",
  186. "table/adaptive/adaptive_table_factory.cc",
  187. "table/block_based/binary_search_index_reader.cc",
  188. "table/block_based/block.cc",
  189. "table/block_based/block_based_table_builder.cc",
  190. "table/block_based/block_based_table_factory.cc",
  191. "table/block_based/block_based_table_iterator.cc",
  192. "table/block_based/block_based_table_reader.cc",
  193. "table/block_based/block_builder.cc",
  194. "table/block_based/block_cache.cc",
  195. "table/block_based/block_prefetcher.cc",
  196. "table/block_based/block_prefix_index.cc",
  197. "table/block_based/data_block_footer.cc",
  198. "table/block_based/data_block_hash_index.cc",
  199. "table/block_based/filter_block_reader_common.cc",
  200. "table/block_based/filter_policy.cc",
  201. "table/block_based/flush_block_policy.cc",
  202. "table/block_based/full_filter_block.cc",
  203. "table/block_based/hash_index_reader.cc",
  204. "table/block_based/index_builder.cc",
  205. "table/block_based/index_reader_common.cc",
  206. "table/block_based/parsed_full_filter_block.cc",
  207. "table/block_based/partitioned_filter_block.cc",
  208. "table/block_based/partitioned_index_iterator.cc",
  209. "table/block_based/partitioned_index_reader.cc",
  210. "table/block_based/reader_common.cc",
  211. "table/block_based/uncompression_dict_reader.cc",
  212. "table/block_fetcher.cc",
  213. "table/compaction_merging_iterator.cc",
  214. "table/cuckoo/cuckoo_table_builder.cc",
  215. "table/cuckoo/cuckoo_table_factory.cc",
  216. "table/cuckoo/cuckoo_table_reader.cc",
  217. "table/external_table.cc",
  218. "table/format.cc",
  219. "table/get_context.cc",
  220. "table/iterator.cc",
  221. "table/merging_iterator.cc",
  222. "table/meta_blocks.cc",
  223. "table/persistent_cache_helper.cc",
  224. "table/plain/plain_table_bloom.cc",
  225. "table/plain/plain_table_builder.cc",
  226. "table/plain/plain_table_factory.cc",
  227. "table/plain/plain_table_index.cc",
  228. "table/plain/plain_table_key_coding.cc",
  229. "table/plain/plain_table_reader.cc",
  230. "table/sst_file_dumper.cc",
  231. "table/sst_file_reader.cc",
  232. "table/sst_file_writer.cc",
  233. "table/table_factory.cc",
  234. "table/table_properties.cc",
  235. "table/two_level_iterator.cc",
  236. "table/unique_id.cc",
  237. "test_util/sync_point.cc",
  238. "test_util/sync_point_impl.cc",
  239. "test_util/transaction_test_util.cc",
  240. "tools/dump/db_dump_tool.cc",
  241. "tools/io_tracer_parser_tool.cc",
  242. "tools/ldb_cmd.cc",
  243. "tools/ldb_tool.cc",
  244. "tools/sst_dump_tool.cc",
  245. "trace_replay/block_cache_tracer.cc",
  246. "trace_replay/io_tracer.cc",
  247. "trace_replay/trace_record.cc",
  248. "trace_replay/trace_record_handler.cc",
  249. "trace_replay/trace_record_result.cc",
  250. "trace_replay/trace_replay.cc",
  251. "util/async_file_reader.cc",
  252. "util/auto_tune_compressor.cc",
  253. "util/build_version.cc",
  254. "util/cleanable.cc",
  255. "util/coding.cc",
  256. "util/compaction_job_stats_impl.cc",
  257. "util/comparator.cc",
  258. "util/compression.cc",
  259. "util/compression_context_cache.cc",
  260. "util/concurrent_task_limiter_impl.cc",
  261. "util/crc32c.cc",
  262. "util/crc32c_arm64.cc",
  263. "util/data_structure.cc",
  264. "util/dynamic_bloom.cc",
  265. "util/file_checksum_helper.cc",
  266. "util/hash.cc",
  267. "util/murmurhash.cc",
  268. "util/random.cc",
  269. "util/rate_limiter.cc",
  270. "util/ribbon_config.cc",
  271. "util/simple_mixed_compressor.cc",
  272. "util/slice.cc",
  273. "util/status.cc",
  274. "util/stderr_logger.cc",
  275. "util/string_util.cc",
  276. "util/thread_local.cc",
  277. "util/threadpool_imp.cc",
  278. "util/udt_util.cc",
  279. "util/write_batch_util.cc",
  280. "util/xxhash.cc",
  281. "utilities/agg_merge/agg_merge.cc",
  282. "utilities/backup/backup_engine.cc",
  283. "utilities/blob_db/blob_compaction_filter.cc",
  284. "utilities/blob_db/blob_db.cc",
  285. "utilities/blob_db/blob_db_impl.cc",
  286. "utilities/blob_db/blob_db_impl_filesnapshot.cc",
  287. "utilities/blob_db/blob_dump_tool.cc",
  288. "utilities/blob_db/blob_file.cc",
  289. "utilities/cache_dump_load.cc",
  290. "utilities/cache_dump_load_impl.cc",
  291. "utilities/cassandra/cassandra_compaction_filter.cc",
  292. "utilities/cassandra/format.cc",
  293. "utilities/cassandra/merge_operator.cc",
  294. "utilities/checkpoint/checkpoint_impl.cc",
  295. "utilities/compaction_filters.cc",
  296. "utilities/compaction_filters/remove_emptyvalue_compactionfilter.cc",
  297. "utilities/convenience/info_log_finder.cc",
  298. "utilities/counted_fs.cc",
  299. "utilities/debug.cc",
  300. "utilities/env_mirror.cc",
  301. "utilities/env_timed.cc",
  302. "utilities/fault_injection_env.cc",
  303. "utilities/fault_injection_fs.cc",
  304. "utilities/fault_injection_secondary_cache.cc",
  305. "utilities/leveldb_options/leveldb_options.cc",
  306. "utilities/memory/memory_util.cc",
  307. "utilities/merge_operators.cc",
  308. "utilities/merge_operators/bytesxor.cc",
  309. "utilities/merge_operators/max.cc",
  310. "utilities/merge_operators/put.cc",
  311. "utilities/merge_operators/sortlist.cc",
  312. "utilities/merge_operators/string_append/stringappend.cc",
  313. "utilities/merge_operators/string_append/stringappend2.cc",
  314. "utilities/merge_operators/uint64add.cc",
  315. "utilities/object_registry.cc",
  316. "utilities/option_change_migration/option_change_migration.cc",
  317. "utilities/options/options_util.cc",
  318. "utilities/persistent_cache/block_cache_tier.cc",
  319. "utilities/persistent_cache/block_cache_tier_file.cc",
  320. "utilities/persistent_cache/block_cache_tier_metadata.cc",
  321. "utilities/persistent_cache/persistent_cache_tier.cc",
  322. "utilities/persistent_cache/volatile_tier_impl.cc",
  323. "utilities/secondary_index/secondary_index_iterator.cc",
  324. "utilities/secondary_index/simple_secondary_index.cc",
  325. "utilities/simulator_cache/cache_simulator.cc",
  326. "utilities/simulator_cache/sim_cache.cc",
  327. "utilities/table_properties_collectors/compact_for_tiering_collector.cc",
  328. "utilities/table_properties_collectors/compact_on_deletion_collector.cc",
  329. "utilities/trace/file_trace_reader_writer.cc",
  330. "utilities/trace/replayer_impl.cc",
  331. "utilities/transactions/lock/lock_manager.cc",
  332. "utilities/transactions/lock/point/point_lock_manager.cc",
  333. "utilities/transactions/lock/point/point_lock_tracker.cc",
  334. "utilities/transactions/lock/range/range_tree/lib/locktree/concurrent_tree.cc",
  335. "utilities/transactions/lock/range/range_tree/lib/locktree/keyrange.cc",
  336. "utilities/transactions/lock/range/range_tree/lib/locktree/lock_request.cc",
  337. "utilities/transactions/lock/range/range_tree/lib/locktree/locktree.cc",
  338. "utilities/transactions/lock/range/range_tree/lib/locktree/manager.cc",
  339. "utilities/transactions/lock/range/range_tree/lib/locktree/range_buffer.cc",
  340. "utilities/transactions/lock/range/range_tree/lib/locktree/treenode.cc",
  341. "utilities/transactions/lock/range/range_tree/lib/locktree/txnid_set.cc",
  342. "utilities/transactions/lock/range/range_tree/lib/locktree/wfg.cc",
  343. "utilities/transactions/lock/range/range_tree/lib/standalone_port.cc",
  344. "utilities/transactions/lock/range/range_tree/lib/util/dbt.cc",
  345. "utilities/transactions/lock/range/range_tree/lib/util/memarena.cc",
  346. "utilities/transactions/lock/range/range_tree/range_tree_lock_manager.cc",
  347. "utilities/transactions/lock/range/range_tree/range_tree_lock_tracker.cc",
  348. "utilities/transactions/optimistic_transaction.cc",
  349. "utilities/transactions/optimistic_transaction_db_impl.cc",
  350. "utilities/transactions/pessimistic_transaction.cc",
  351. "utilities/transactions/pessimistic_transaction_db.cc",
  352. "utilities/transactions/snapshot_checker.cc",
  353. "utilities/transactions/transaction_base.cc",
  354. "utilities/transactions/transaction_db_mutex_impl.cc",
  355. "utilities/transactions/transaction_util.cc",
  356. "utilities/transactions/write_prepared_txn.cc",
  357. "utilities/transactions/write_prepared_txn_db.cc",
  358. "utilities/transactions/write_unprepared_txn.cc",
  359. "utilities/transactions/write_unprepared_txn_db.cc",
  360. "utilities/ttl/db_ttl_impl.cc",
  361. "utilities/types_util.cc",
  362. "utilities/wal_filter.cc",
  363. "utilities/write_batch_with_index/write_batch_with_index.cc",
  364. "utilities/write_batch_with_index/write_batch_with_index_internal.cc",
  365. ], deps=[
  366. "//folly/container:f14_hash",
  367. "//folly/experimental/coro:blocking_wait",
  368. "//folly/experimental/coro:collect",
  369. "//folly/experimental/coro:coroutine",
  370. "//folly/experimental/coro:task",
  371. "//folly/synchronization:distributed_mutex",
  372. ], headers=glob(["**/*.h"]), link_whole=False, extra_test_libs=False)
  373. cpp_library_wrapper(name="rocksdb_whole_archive_lib", srcs=[], deps=[":rocksdb_lib"], headers=[], link_whole=True, extra_test_libs=False)
  374. cpp_library_wrapper(name="rocksdb_with_faiss_lib", srcs=["utilities/secondary_index/faiss_ivf_index.cc"], deps=[
  375. "//faiss:faiss",
  376. ":rocksdb_lib",
  377. ], headers=[], link_whole=False, extra_test_libs=False)
  378. cpp_library_wrapper(name="rocksdb_test_lib", srcs=[
  379. "db/db_test_util.cc",
  380. "db/db_with_timestamp_test_util.cc",
  381. "table/mock_table.cc",
  382. "test_util/mock_time_env.cc",
  383. "test_util/secondary_cache_test_util.cc",
  384. "test_util/testharness.cc",
  385. "test_util/testutil.cc",
  386. "tools/block_cache_analyzer/block_cache_trace_analyzer.cc",
  387. "tools/trace_analyzer_tool.cc",
  388. "utilities/agg_merge/test_agg_merge.cc",
  389. "utilities/cassandra/test_utils.cc",
  390. ], deps=[":rocksdb_lib"], headers=[], link_whole=False, extra_test_libs=True)
  391. cpp_library_wrapper(name="rocksdb_with_faiss_test_lib", srcs=[
  392. "db/db_test_util.cc",
  393. "db/db_with_timestamp_test_util.cc",
  394. "table/mock_table.cc",
  395. "test_util/mock_time_env.cc",
  396. "test_util/secondary_cache_test_util.cc",
  397. "test_util/testharness.cc",
  398. "test_util/testutil.cc",
  399. "tools/block_cache_analyzer/block_cache_trace_analyzer.cc",
  400. "tools/trace_analyzer_tool.cc",
  401. "utilities/agg_merge/test_agg_merge.cc",
  402. "utilities/cassandra/test_utils.cc",
  403. ], deps=[":rocksdb_with_faiss_lib"], headers=[], link_whole=False, extra_test_libs=True)
  404. cpp_library_wrapper(name="rocksdb_tools_lib", srcs=[
  405. "test_util/testutil.cc",
  406. "tools/block_cache_analyzer/block_cache_trace_analyzer.cc",
  407. "tools/db_bench_tool.cc",
  408. "tools/simulated_hybrid_file_system.cc",
  409. "tools/tool_hooks.cc",
  410. "tools/trace_analyzer_tool.cc",
  411. ], deps=[":rocksdb_lib"], headers=[], link_whole=False, extra_test_libs=False)
  412. cpp_library_wrapper(name="rocksdb_cache_bench_tools_lib", srcs=["cache/cache_bench_tool.cc"], deps=[":rocksdb_lib"], headers=[], link_whole=False, extra_test_libs=False)
  413. cpp_library_wrapper(name="rocksdb_point_lock_bench_tools_lib", srcs=["utilities/transactions/lock/point/point_lock_bench_tool.cc"], deps=[":rocksdb_lib"], headers=[], link_whole=False, extra_test_libs=False)
  414. rocks_cpp_library_wrapper(name="rocksdb_stress_lib", srcs=[
  415. "db_stress_tool/batched_ops_stress.cc",
  416. "db_stress_tool/cf_consistency_stress.cc",
  417. "db_stress_tool/db_stress_common.cc",
  418. "db_stress_tool/db_stress_compaction_service.cc",
  419. "db_stress_tool/db_stress_compression_manager.cc",
  420. "db_stress_tool/db_stress_driver.cc",
  421. "db_stress_tool/db_stress_filters.cc",
  422. "db_stress_tool/db_stress_gflags.cc",
  423. "db_stress_tool/db_stress_listener.cc",
  424. "db_stress_tool/db_stress_shared_state.cc",
  425. "db_stress_tool/db_stress_test_base.cc",
  426. "db_stress_tool/db_stress_tool.cc",
  427. "db_stress_tool/db_stress_wide_merge_operator.cc",
  428. "db_stress_tool/expected_state.cc",
  429. "db_stress_tool/expected_value.cc",
  430. "db_stress_tool/multi_ops_txns_stress.cc",
  431. "db_stress_tool/no_batched_ops_stress.cc",
  432. "test_util/testutil.cc",
  433. "tools/block_cache_analyzer/block_cache_trace_analyzer.cc",
  434. "tools/trace_analyzer_tool.cc",
  435. ], headers=[])
  436. cpp_binary_wrapper(name="ldb", srcs=["tools/ldb.cc"], deps=[":rocksdb_tools_lib"], extra_preprocessor_flags=[], extra_bench_libs=False)
  437. cpp_binary_wrapper(name="db_stress", srcs=["db_stress_tool/db_stress.cc"], deps=[":rocksdb_stress_lib"], extra_preprocessor_flags=[], extra_bench_libs=False)
  438. cpp_binary_wrapper(name="db_bench", srcs=["tools/db_bench.cc"], deps=[":rocksdb_tools_lib"], extra_preprocessor_flags=[], extra_bench_libs=False)
  439. cpp_binary_wrapper(name="cache_bench", srcs=["cache/cache_bench.cc"], deps=[":rocksdb_cache_bench_tools_lib"], extra_preprocessor_flags=[], extra_bench_libs=False)
  440. cpp_binary_wrapper(name="point_lock_bench", srcs=["utilities/transactions/lock/point/point_lock_bench.cc"], deps=[":rocksdb_point_lock_bench_tools_lib"], extra_preprocessor_flags=[], extra_bench_libs=False)
  441. cpp_binary_wrapper(name="ribbon_bench", srcs=["microbench/ribbon_bench.cc"], deps=[], extra_preprocessor_flags=[], extra_bench_libs=True)
  442. cpp_binary_wrapper(name="db_basic_bench", srcs=["microbench/db_basic_bench.cc"], deps=[], extra_preprocessor_flags=[], extra_bench_libs=True)
  443. add_c_test_wrapper()
  444. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_0", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  445. 'get_mean',
  446. 'threads',
  447. 'real_time',
  448. 'cpu_time',
  449. 'neg_qu_pct'],
  450. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  451. 'get_mean',
  452. 'threads',
  453. 'real_time',
  454. 'cpu_time',
  455. 'neg_qu_pct'],
  456. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  457. 'cpu_time',
  458. 'db_size',
  459. 'neg_qu_pct',
  460. 'threads'],
  461. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:51200/threads:8': ['real_time',
  462. 'put_mean',
  463. 'cpu_time',
  464. 'db_size',
  465. 'threads'],
  466. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:51200/threads:8': ['real_time',
  467. 'cpu_time',
  468. 'db_size',
  469. 'threads']},
  470. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  471. 'cpu_time',
  472. 'threads',
  473. 'size'],
  474. 'FilterBuild/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  475. 'cpu_time',
  476. 'threads',
  477. 'size'],
  478. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  479. 'cpu_time',
  480. 'threads',
  481. 'size'],
  482. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  483. 'cpu_time',
  484. 'threads',
  485. 'fp_pct'],
  486. 'FilterQueryPositive/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  487. 'cpu_time',
  488. 'threads'],
  489. 'FilterQueryPositive/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  490. 'cpu_time',
  491. 'threads'],
  492. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  493. 'cpu_time',
  494. 'threads'],
  495. 'FilterQueryPositive/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  496. 'cpu_time',
  497. 'threads']}}, slow=False, expected_runtime=2438, sl_iterations=3, regression_threshold=10)
  498. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_1", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  499. 'get_mean',
  500. 'threads',
  501. 'real_time',
  502. 'cpu_time',
  503. 'neg_qu_pct'],
  504. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  505. 'get_mean',
  506. 'threads',
  507. 'real_time',
  508. 'cpu_time',
  509. 'neg_qu_pct'],
  510. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  511. 'cpu_time',
  512. 'db_size',
  513. 'neg_qu_pct',
  514. 'threads'],
  515. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  516. 'put_mean',
  517. 'cpu_time',
  518. 'db_size',
  519. 'threads'],
  520. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:51200/threads:8': ['real_time',
  521. 'put_mean',
  522. 'cpu_time',
  523. 'db_size',
  524. 'threads']},
  525. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  526. 'cpu_time',
  527. 'threads',
  528. 'size'],
  529. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  530. 'cpu_time',
  531. 'threads',
  532. 'fp_pct'],
  533. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  534. 'cpu_time',
  535. 'threads'],
  536. 'FilterQueryPositive/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  537. 'cpu_time',
  538. 'threads'],
  539. 'FilterQueryPositive/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  540. 'cpu_time',
  541. 'threads'],
  542. 'FilterQueryPositive/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  543. 'cpu_time',
  544. 'threads'],
  545. 'FilterQueryPositive/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  546. 'cpu_time',
  547. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  548. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_2", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  549. 'get_mean',
  550. 'threads',
  551. 'real_time',
  552. 'cpu_time',
  553. 'neg_qu_pct'],
  554. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  555. 'get_mean',
  556. 'threads',
  557. 'real_time',
  558. 'cpu_time',
  559. 'neg_qu_pct'],
  560. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  561. 'cpu_time',
  562. 'db_size',
  563. 'neg_qu_pct',
  564. 'threads'],
  565. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:409600/threads:1': ['real_time',
  566. 'cpu_time',
  567. 'db_size',
  568. 'threads'],
  569. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:409600/threads:1': ['real_time',
  570. 'cpu_time',
  571. 'db_size',
  572. 'threads']}}, slow=False, expected_runtime=2446, sl_iterations=3, regression_threshold=10)
  573. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_3", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  574. 'cpu_time',
  575. 'db_size',
  576. 'neg_qu_pct',
  577. 'threads'],
  578. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  579. 'cpu_time',
  580. 'db_size',
  581. 'neg_qu_pct',
  582. 'threads'],
  583. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  584. 'get_mean',
  585. 'threads',
  586. 'real_time',
  587. 'cpu_time',
  588. 'neg_qu_pct'],
  589. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  590. 'get_mean',
  591. 'threads',
  592. 'real_time',
  593. 'cpu_time',
  594. 'neg_qu_pct'],
  595. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:51200/threads:8': ['real_time',
  596. 'cpu_time',
  597. 'db_size',
  598. 'threads'],
  599. 'DataBlockSeek/iterations:1000000': ['real_time',
  600. 'cpu_time',
  601. 'seek_ns',
  602. 'threads']},
  603. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  604. 'cpu_time',
  605. 'threads',
  606. 'size'],
  607. 'FilterBuild/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  608. 'cpu_time',
  609. 'threads',
  610. 'size'],
  611. 'FilterBuild/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  612. 'cpu_time',
  613. 'threads',
  614. 'size'],
  615. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  616. 'cpu_time',
  617. 'threads',
  618. 'fp_pct'],
  619. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  620. 'cpu_time',
  621. 'threads',
  622. 'fp_pct'],
  623. 'FilterQueryPositive/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  624. 'cpu_time',
  625. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  626. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_4", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  627. 'cpu_time',
  628. 'db_size',
  629. 'neg_qu_pct',
  630. 'threads'],
  631. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  632. 'cpu_time',
  633. 'db_size',
  634. 'neg_qu_pct',
  635. 'threads'],
  636. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  637. 'get_mean',
  638. 'threads',
  639. 'real_time',
  640. 'cpu_time',
  641. 'neg_qu_pct'],
  642. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  643. 'get_mean',
  644. 'threads',
  645. 'real_time',
  646. 'cpu_time',
  647. 'neg_qu_pct'],
  648. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:51200/threads:8': ['real_time',
  649. 'cpu_time',
  650. 'db_size',
  651. 'threads'],
  652. 'RandomAccessFileReaderRead/enable_statistics:1/iterations:1000000': ['real_time',
  653. 'cpu_time',
  654. 'threads']},
  655. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  656. 'cpu_time',
  657. 'threads',
  658. 'size'],
  659. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  660. 'cpu_time',
  661. 'threads',
  662. 'fp_pct'],
  663. 'FilterQueryNegative/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  664. 'cpu_time',
  665. 'threads',
  666. 'fp_pct'],
  667. 'FilterQueryNegative/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  668. 'cpu_time',
  669. 'threads',
  670. 'fp_pct'],
  671. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  672. 'cpu_time',
  673. 'threads',
  674. 'fp_pct'],
  675. 'FilterQueryPositive/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  676. 'cpu_time',
  677. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  678. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_5", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  679. 'cpu_time',
  680. 'db_size',
  681. 'neg_qu_pct',
  682. 'threads'],
  683. 'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  684. 'cpu_time',
  685. 'db_size',
  686. 'neg_qu_pct',
  687. 'threads'],
  688. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  689. 'cpu_time',
  690. 'db_size',
  691. 'neg_qu_pct',
  692. 'threads'],
  693. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  694. 'cpu_time',
  695. 'db_size',
  696. 'neg_qu_pct',
  697. 'threads'],
  698. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:51200/threads:8': ['real_time',
  699. 'cpu_time',
  700. 'db_size',
  701. 'threads']},
  702. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  703. 'cpu_time',
  704. 'threads',
  705. 'size'],
  706. 'FilterQueryNegative/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  707. 'cpu_time',
  708. 'threads',
  709. 'fp_pct'],
  710. 'FilterQueryNegative/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  711. 'cpu_time',
  712. 'threads',
  713. 'fp_pct'],
  714. 'FilterQueryNegative/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  715. 'cpu_time',
  716. 'threads',
  717. 'fp_pct'],
  718. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  719. 'cpu_time',
  720. 'threads'],
  721. 'FilterQueryPositive/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  722. 'cpu_time',
  723. 'threads'],
  724. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  725. 'cpu_time',
  726. 'threads'],
  727. 'FilterQueryPositive/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  728. 'cpu_time',
  729. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  730. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_6", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  731. 'get_mean',
  732. 'threads',
  733. 'real_time',
  734. 'cpu_time',
  735. 'neg_qu_pct'],
  736. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  737. 'cpu_time',
  738. 'db_size',
  739. 'neg_qu_pct',
  740. 'threads'],
  741. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  742. 'cpu_time',
  743. 'db_size',
  744. 'neg_qu_pct',
  745. 'threads'],
  746. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:409600/threads:1': ['real_time',
  747. 'cpu_time',
  748. 'db_size',
  749. 'threads'],
  750. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:51200/threads:8': ['real_time',
  751. 'put_mean',
  752. 'cpu_time',
  753. 'db_size',
  754. 'threads']},
  755. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  756. 'cpu_time',
  757. 'threads',
  758. 'size'],
  759. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  760. 'cpu_time',
  761. 'threads',
  762. 'size'],
  763. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  764. 'cpu_time',
  765. 'threads',
  766. 'fp_pct'],
  767. 'FilterQueryPositive/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  768. 'cpu_time',
  769. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  770. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_7", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  771. 'get_mean',
  772. 'threads',
  773. 'real_time',
  774. 'cpu_time',
  775. 'neg_qu_pct'],
  776. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  777. 'cpu_time',
  778. 'db_size',
  779. 'neg_qu_pct',
  780. 'threads'],
  781. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  782. 'get_mean',
  783. 'threads',
  784. 'real_time',
  785. 'cpu_time',
  786. 'neg_qu_pct'],
  787. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:51200/threads:8': ['real_time',
  788. 'put_mean',
  789. 'cpu_time',
  790. 'db_size',
  791. 'threads'],
  792. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:409600/threads:1': ['real_time',
  793. 'put_mean',
  794. 'cpu_time',
  795. 'db_size',
  796. 'threads'],
  797. 'RandomAccessFileReaderRead/enable_statistics:0/iterations:1000000': ['real_time',
  798. 'cpu_time',
  799. 'threads']},
  800. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  801. 'cpu_time',
  802. 'threads',
  803. 'size'],
  804. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  805. 'cpu_time',
  806. 'threads',
  807. 'size'],
  808. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  809. 'cpu_time',
  810. 'threads',
  811. 'fp_pct'],
  812. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  813. 'cpu_time',
  814. 'threads',
  815. 'fp_pct']}}, slow=False, expected_runtime=2438, sl_iterations=3, regression_threshold=10)
  816. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_8", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  817. 'cpu_time',
  818. 'db_size',
  819. 'neg_qu_pct',
  820. 'threads'],
  821. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  822. 'cpu_time',
  823. 'db_size',
  824. 'neg_qu_pct',
  825. 'threads'],
  826. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  827. 'cpu_time',
  828. 'db_size',
  829. 'neg_qu_pct',
  830. 'threads'],
  831. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:409600/threads:1': ['real_time',
  832. 'cpu_time',
  833. 'db_size',
  834. 'threads'],
  835. 'DBPut/comp_style:2/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:409600/threads:1': ['real_time',
  836. 'put_mean',
  837. 'cpu_time',
  838. 'db_size',
  839. 'threads']},
  840. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  841. 'cpu_time',
  842. 'threads',
  843. 'size'],
  844. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  845. 'cpu_time',
  846. 'threads',
  847. 'size'],
  848. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  849. 'cpu_time',
  850. 'threads',
  851. 'size'],
  852. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  853. 'cpu_time',
  854. 'threads',
  855. 'fp_pct'],
  856. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  857. 'cpu_time',
  858. 'threads',
  859. 'fp_pct'],
  860. 'FilterQueryPositive/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  861. 'cpu_time',
  862. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  863. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_9", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  864. 'cpu_time',
  865. 'db_size',
  866. 'neg_qu_pct',
  867. 'threads'],
  868. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  869. 'cpu_time',
  870. 'db_size',
  871. 'neg_qu_pct',
  872. 'threads'],
  873. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  874. 'get_mean',
  875. 'threads',
  876. 'real_time',
  877. 'cpu_time',
  878. 'neg_qu_pct'],
  879. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:51200/threads:8': ['real_time',
  880. 'cpu_time',
  881. 'db_size',
  882. 'threads'],
  883. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:409600/threads:1': ['real_time',
  884. 'cpu_time',
  885. 'db_size',
  886. 'threads']},
  887. 'ribbon_bench': {'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  888. 'cpu_time',
  889. 'threads',
  890. 'size'],
  891. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  892. 'cpu_time',
  893. 'threads',
  894. 'fp_pct'],
  895. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  896. 'cpu_time',
  897. 'threads',
  898. 'fp_pct'],
  899. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  900. 'cpu_time',
  901. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  902. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_10", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  903. 'get_mean',
  904. 'threads',
  905. 'real_time',
  906. 'cpu_time',
  907. 'neg_qu_pct'],
  908. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  909. 'get_mean',
  910. 'threads',
  911. 'real_time',
  912. 'cpu_time',
  913. 'neg_qu_pct'],
  914. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  915. 'get_mean',
  916. 'threads',
  917. 'real_time',
  918. 'cpu_time',
  919. 'neg_qu_pct'],
  920. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  921. 'cpu_time',
  922. 'db_size',
  923. 'neg_qu_pct',
  924. 'threads'],
  925. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:409600/threads:1': ['real_time',
  926. 'put_mean',
  927. 'cpu_time',
  928. 'db_size',
  929. 'threads']},
  930. 'ribbon_bench': {'FilterBuild/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  931. 'cpu_time',
  932. 'threads',
  933. 'size'],
  934. 'FilterQueryPositive/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  935. 'cpu_time',
  936. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  937. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_11", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  938. 'get_mean',
  939. 'threads',
  940. 'real_time',
  941. 'cpu_time',
  942. 'neg_qu_pct'],
  943. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  944. 'get_mean',
  945. 'threads',
  946. 'real_time',
  947. 'cpu_time',
  948. 'neg_qu_pct'],
  949. 'DBGet/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  950. 'get_mean',
  951. 'threads',
  952. 'real_time',
  953. 'cpu_time',
  954. 'neg_qu_pct'],
  955. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  956. 'put_mean',
  957. 'cpu_time',
  958. 'db_size',
  959. 'threads'],
  960. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:51200/threads:8': ['real_time',
  961. 'put_mean',
  962. 'cpu_time',
  963. 'db_size',
  964. 'threads']}}, slow=False, expected_runtime=2446, sl_iterations=3, regression_threshold=10)
  965. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_12", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  966. 'cpu_time',
  967. 'db_size',
  968. 'neg_qu_pct',
  969. 'threads'],
  970. 'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  971. 'get_mean',
  972. 'threads',
  973. 'real_time',
  974. 'cpu_time',
  975. 'neg_qu_pct'],
  976. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  977. 'cpu_time',
  978. 'db_size',
  979. 'neg_qu_pct',
  980. 'threads'],
  981. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['db_size',
  982. 'get_mean',
  983. 'threads',
  984. 'real_time',
  985. 'cpu_time',
  986. 'neg_qu_pct']},
  987. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  988. 'cpu_time',
  989. 'threads',
  990. 'size'],
  991. 'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  992. 'cpu_time',
  993. 'threads',
  994. 'size'],
  995. 'FilterBuild/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  996. 'cpu_time',
  997. 'threads',
  998. 'size'],
  999. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1000. 'cpu_time',
  1001. 'threads',
  1002. 'fp_pct'],
  1003. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1004. 'cpu_time',
  1005. 'threads',
  1006. 'fp_pct'],
  1007. 'FilterQueryNegative/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1008. 'cpu_time',
  1009. 'threads',
  1010. 'fp_pct'],
  1011. 'FilterQueryNegative/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1012. 'cpu_time',
  1013. 'threads',
  1014. 'fp_pct'],
  1015. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1016. 'cpu_time',
  1017. 'threads'],
  1018. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1019. 'cpu_time',
  1020. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  1021. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_13", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1022. 'cpu_time',
  1023. 'db_size',
  1024. 'neg_qu_pct',
  1025. 'threads'],
  1026. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1027. 'cpu_time',
  1028. 'db_size',
  1029. 'neg_qu_pct',
  1030. 'threads'],
  1031. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1032. 'get_mean',
  1033. 'threads',
  1034. 'real_time',
  1035. 'cpu_time',
  1036. 'neg_qu_pct'],
  1037. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:1/iterations:409600/threads:1': ['real_time',
  1038. 'cpu_time',
  1039. 'db_size',
  1040. 'threads'],
  1041. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  1042. 'put_mean',
  1043. 'cpu_time',
  1044. 'db_size',
  1045. 'threads']},
  1046. 'ribbon_bench': {'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1047. 'cpu_time',
  1048. 'threads',
  1049. 'size'],
  1050. 'FilterQueryNegative/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1051. 'cpu_time',
  1052. 'threads',
  1053. 'fp_pct'],
  1054. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1055. 'cpu_time',
  1056. 'threads'],
  1057. 'FilterQueryPositive/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1058. 'cpu_time',
  1059. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  1060. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_14", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1061. 'cpu_time',
  1062. 'db_size',
  1063. 'neg_qu_pct',
  1064. 'threads'],
  1065. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1066. 'cpu_time',
  1067. 'db_size',
  1068. 'neg_qu_pct',
  1069. 'threads'],
  1070. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1071. 'get_mean',
  1072. 'threads',
  1073. 'real_time',
  1074. 'cpu_time',
  1075. 'neg_qu_pct'],
  1076. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:0/wal:0/iterations:51200/threads:8': ['real_time',
  1077. 'cpu_time',
  1078. 'db_size',
  1079. 'threads'],
  1080. 'DBPut/comp_style:0/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:1/iterations:51200/threads:8': ['real_time',
  1081. 'put_mean',
  1082. 'cpu_time',
  1083. 'db_size',
  1084. 'threads']},
  1085. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1086. 'cpu_time',
  1087. 'threads',
  1088. 'size'],
  1089. 'FilterBuild/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1090. 'cpu_time',
  1091. 'threads',
  1092. 'size'],
  1093. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1094. 'cpu_time',
  1095. 'threads',
  1096. 'fp_pct'],
  1097. 'FilterQueryPositive/filter_impl:0/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1098. 'cpu_time',
  1099. 'threads']}}, slow=False, expected_runtime=2437, sl_iterations=3, regression_threshold=10)
  1100. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_0_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1101. 'cpu_time',
  1102. 'db_size',
  1103. 'neg_qu_pct',
  1104. 'threads'],
  1105. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1106. 'get_mean',
  1107. 'threads',
  1108. 'real_time',
  1109. 'cpu_time',
  1110. 'neg_qu_pct'],
  1111. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1112. 'cpu_time',
  1113. 'db_size',
  1114. 'neg_qu_pct',
  1115. 'threads'],
  1116. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1117. 'get_mean',
  1118. 'threads',
  1119. 'real_time',
  1120. 'cpu_time',
  1121. 'neg_qu_pct'],
  1122. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1123. 'cpu_time',
  1124. 'db_size',
  1125. 'neg_qu_pct',
  1126. 'threads'],
  1127. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1128. 'get_mean',
  1129. 'threads',
  1130. 'real_time',
  1131. 'cpu_time',
  1132. 'neg_qu_pct'],
  1133. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1134. 'get_mean',
  1135. 'threads',
  1136. 'real_time',
  1137. 'cpu_time',
  1138. 'neg_qu_pct'],
  1139. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1140. 'cpu_time',
  1141. 'db_size',
  1142. 'neg_qu_pct',
  1143. 'threads'],
  1144. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1145. 'cpu_time',
  1146. 'db_size',
  1147. 'neg_qu_pct',
  1148. 'threads'],
  1149. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1150. 'get_mean',
  1151. 'threads',
  1152. 'real_time',
  1153. 'cpu_time',
  1154. 'neg_qu_pct'],
  1155. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1156. 'cpu_time',
  1157. 'db_size',
  1158. 'neg_qu_pct',
  1159. 'threads'],
  1160. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1161. 'cpu_time',
  1162. 'db_size',
  1163. 'neg_qu_pct',
  1164. 'threads'],
  1165. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1166. 'get_mean',
  1167. 'threads',
  1168. 'real_time',
  1169. 'cpu_time',
  1170. 'neg_qu_pct'],
  1171. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1172. 'get_mean',
  1173. 'threads',
  1174. 'real_time',
  1175. 'cpu_time',
  1176. 'neg_qu_pct'],
  1177. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  1178. 'put_mean',
  1179. 'cpu_time',
  1180. 'db_size',
  1181. 'threads'],
  1182. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1183. 'cpu_time',
  1184. 'db_size',
  1185. 'threads'],
  1186. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1187. 'cpu_time',
  1188. 'db_size',
  1189. 'threads'],
  1190. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1191. 'cpu_time',
  1192. 'db_size',
  1193. 'threads'],
  1194. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1195. 'cpu_time',
  1196. 'db_size',
  1197. 'threads'],
  1198. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1199. 'cpu_time',
  1200. 'db_size',
  1201. 'threads'],
  1202. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1203. 'cpu_time',
  1204. 'db_size',
  1205. 'threads'],
  1206. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1207. 'cpu_time',
  1208. 'db_size',
  1209. 'threads'],
  1210. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1211. 'cpu_time',
  1212. 'db_size',
  1213. 'threads'],
  1214. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1215. 'cpu_time',
  1216. 'db_size',
  1217. 'threads'],
  1218. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1219. 'cpu_time',
  1220. 'db_size',
  1221. 'threads'],
  1222. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1223. 'cpu_time',
  1224. 'db_size',
  1225. 'threads'],
  1226. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1227. 'cpu_time',
  1228. 'db_size',
  1229. 'threads'],
  1230. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1231. 'cpu_time',
  1232. 'db_size',
  1233. 'threads'],
  1234. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1235. 'cpu_time',
  1236. 'db_size',
  1237. 'threads'],
  1238. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  1239. 'cpu_time',
  1240. 'db_size',
  1241. 'threads'],
  1242. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1243. 'cpu_time',
  1244. 'db_size',
  1245. 'threads'],
  1246. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1247. 'cpu_time',
  1248. 'db_size',
  1249. 'threads'],
  1250. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1251. 'cpu_time',
  1252. 'db_size',
  1253. 'threads'],
  1254. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  1255. 'cpu_time',
  1256. 'db_size',
  1257. 'threads'],
  1258. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1259. 'cpu_time',
  1260. 'db_size',
  1261. 'threads'],
  1262. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1263. 'cpu_time',
  1264. 'db_size',
  1265. 'threads'],
  1266. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1267. 'cpu_time',
  1268. 'db_size',
  1269. 'threads']},
  1270. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1271. 'cpu_time',
  1272. 'threads',
  1273. 'size'],
  1274. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1275. 'cpu_time',
  1276. 'threads',
  1277. 'size'],
  1278. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1279. 'cpu_time',
  1280. 'threads',
  1281. 'size'],
  1282. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1283. 'cpu_time',
  1284. 'threads',
  1285. 'size'],
  1286. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1287. 'cpu_time',
  1288. 'threads',
  1289. 'size'],
  1290. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1291. 'cpu_time',
  1292. 'threads',
  1293. 'fp_pct'],
  1294. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1295. 'cpu_time',
  1296. 'threads',
  1297. 'fp_pct'],
  1298. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1299. 'cpu_time',
  1300. 'threads',
  1301. 'fp_pct'],
  1302. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1303. 'cpu_time',
  1304. 'threads',
  1305. 'fp_pct'],
  1306. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1307. 'cpu_time',
  1308. 'threads',
  1309. 'fp_pct'],
  1310. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1311. 'cpu_time',
  1312. 'threads'],
  1313. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1314. 'cpu_time',
  1315. 'threads'],
  1316. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1317. 'cpu_time',
  1318. 'threads']}}, slow=True, expected_runtime=88891, sl_iterations=3, regression_threshold=10)
  1319. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_1_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1320. 'cpu_time',
  1321. 'db_size',
  1322. 'neg_qu_pct',
  1323. 'threads'],
  1324. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1325. 'get_mean',
  1326. 'threads',
  1327. 'real_time',
  1328. 'cpu_time',
  1329. 'neg_qu_pct'],
  1330. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1331. 'cpu_time',
  1332. 'db_size',
  1333. 'neg_qu_pct',
  1334. 'threads'],
  1335. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1336. 'get_mean',
  1337. 'threads',
  1338. 'real_time',
  1339. 'cpu_time',
  1340. 'neg_qu_pct'],
  1341. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1342. 'cpu_time',
  1343. 'db_size',
  1344. 'neg_qu_pct',
  1345. 'threads'],
  1346. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1347. 'get_mean',
  1348. 'threads',
  1349. 'real_time',
  1350. 'cpu_time',
  1351. 'neg_qu_pct'],
  1352. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1353. 'get_mean',
  1354. 'threads',
  1355. 'real_time',
  1356. 'cpu_time',
  1357. 'neg_qu_pct'],
  1358. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1359. 'cpu_time',
  1360. 'db_size',
  1361. 'neg_qu_pct',
  1362. 'threads'],
  1363. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1364. 'cpu_time',
  1365. 'db_size',
  1366. 'neg_qu_pct',
  1367. 'threads'],
  1368. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1369. 'get_mean',
  1370. 'threads',
  1371. 'real_time',
  1372. 'cpu_time',
  1373. 'neg_qu_pct'],
  1374. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1375. 'cpu_time',
  1376. 'db_size',
  1377. 'neg_qu_pct',
  1378. 'threads'],
  1379. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1380. 'cpu_time',
  1381. 'db_size',
  1382. 'neg_qu_pct',
  1383. 'threads'],
  1384. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1385. 'get_mean',
  1386. 'threads',
  1387. 'real_time',
  1388. 'cpu_time',
  1389. 'neg_qu_pct'],
  1390. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1391. 'get_mean',
  1392. 'threads',
  1393. 'real_time',
  1394. 'cpu_time',
  1395. 'neg_qu_pct'],
  1396. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  1397. 'put_mean',
  1398. 'cpu_time',
  1399. 'db_size',
  1400. 'threads'],
  1401. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1402. 'cpu_time',
  1403. 'db_size',
  1404. 'threads'],
  1405. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1406. 'cpu_time',
  1407. 'db_size',
  1408. 'threads'],
  1409. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1410. 'cpu_time',
  1411. 'db_size',
  1412. 'threads'],
  1413. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1414. 'cpu_time',
  1415. 'db_size',
  1416. 'threads'],
  1417. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1418. 'cpu_time',
  1419. 'db_size',
  1420. 'threads'],
  1421. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1422. 'cpu_time',
  1423. 'db_size',
  1424. 'threads'],
  1425. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1426. 'cpu_time',
  1427. 'db_size',
  1428. 'threads'],
  1429. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1430. 'cpu_time',
  1431. 'db_size',
  1432. 'threads'],
  1433. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1434. 'cpu_time',
  1435. 'db_size',
  1436. 'threads'],
  1437. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1438. 'cpu_time',
  1439. 'db_size',
  1440. 'threads'],
  1441. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1442. 'cpu_time',
  1443. 'db_size',
  1444. 'threads'],
  1445. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1446. 'cpu_time',
  1447. 'db_size',
  1448. 'threads'],
  1449. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1450. 'cpu_time',
  1451. 'db_size',
  1452. 'threads'],
  1453. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1454. 'cpu_time',
  1455. 'db_size',
  1456. 'threads'],
  1457. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  1458. 'cpu_time',
  1459. 'db_size',
  1460. 'threads'],
  1461. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1462. 'cpu_time',
  1463. 'db_size',
  1464. 'threads'],
  1465. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1466. 'cpu_time',
  1467. 'db_size',
  1468. 'threads'],
  1469. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1470. 'cpu_time',
  1471. 'db_size',
  1472. 'threads'],
  1473. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  1474. 'cpu_time',
  1475. 'db_size',
  1476. 'threads'],
  1477. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1478. 'cpu_time',
  1479. 'db_size',
  1480. 'threads'],
  1481. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1482. 'cpu_time',
  1483. 'db_size',
  1484. 'threads'],
  1485. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1486. 'cpu_time',
  1487. 'db_size',
  1488. 'threads']},
  1489. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1490. 'cpu_time',
  1491. 'threads',
  1492. 'size'],
  1493. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1494. 'cpu_time',
  1495. 'threads',
  1496. 'size'],
  1497. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1498. 'cpu_time',
  1499. 'threads',
  1500. 'size'],
  1501. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1502. 'cpu_time',
  1503. 'threads',
  1504. 'size'],
  1505. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1506. 'cpu_time',
  1507. 'threads',
  1508. 'size'],
  1509. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1510. 'cpu_time',
  1511. 'threads',
  1512. 'fp_pct'],
  1513. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1514. 'cpu_time',
  1515. 'threads',
  1516. 'fp_pct'],
  1517. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1518. 'cpu_time',
  1519. 'threads',
  1520. 'fp_pct'],
  1521. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1522. 'cpu_time',
  1523. 'threads',
  1524. 'fp_pct'],
  1525. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1526. 'cpu_time',
  1527. 'threads',
  1528. 'fp_pct'],
  1529. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1530. 'cpu_time',
  1531. 'threads'],
  1532. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1533. 'cpu_time',
  1534. 'threads'],
  1535. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1536. 'cpu_time',
  1537. 'threads']}}, slow=True, expected_runtime=88804, sl_iterations=3, regression_threshold=10)
  1538. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_2_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1539. 'cpu_time',
  1540. 'db_size',
  1541. 'neg_qu_pct',
  1542. 'threads'],
  1543. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1544. 'get_mean',
  1545. 'threads',
  1546. 'real_time',
  1547. 'cpu_time',
  1548. 'neg_qu_pct'],
  1549. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1550. 'cpu_time',
  1551. 'db_size',
  1552. 'neg_qu_pct',
  1553. 'threads'],
  1554. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1555. 'get_mean',
  1556. 'threads',
  1557. 'real_time',
  1558. 'cpu_time',
  1559. 'neg_qu_pct'],
  1560. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1561. 'cpu_time',
  1562. 'db_size',
  1563. 'neg_qu_pct',
  1564. 'threads'],
  1565. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1566. 'get_mean',
  1567. 'threads',
  1568. 'real_time',
  1569. 'cpu_time',
  1570. 'neg_qu_pct'],
  1571. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1572. 'get_mean',
  1573. 'threads',
  1574. 'real_time',
  1575. 'cpu_time',
  1576. 'neg_qu_pct'],
  1577. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1578. 'cpu_time',
  1579. 'db_size',
  1580. 'neg_qu_pct',
  1581. 'threads'],
  1582. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1583. 'cpu_time',
  1584. 'db_size',
  1585. 'neg_qu_pct',
  1586. 'threads'],
  1587. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1588. 'get_mean',
  1589. 'threads',
  1590. 'real_time',
  1591. 'cpu_time',
  1592. 'neg_qu_pct'],
  1593. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1594. 'cpu_time',
  1595. 'db_size',
  1596. 'neg_qu_pct',
  1597. 'threads'],
  1598. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1599. 'cpu_time',
  1600. 'db_size',
  1601. 'neg_qu_pct',
  1602. 'threads'],
  1603. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1604. 'get_mean',
  1605. 'threads',
  1606. 'real_time',
  1607. 'cpu_time',
  1608. 'neg_qu_pct'],
  1609. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1610. 'get_mean',
  1611. 'threads',
  1612. 'real_time',
  1613. 'cpu_time',
  1614. 'neg_qu_pct'],
  1615. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  1616. 'put_mean',
  1617. 'cpu_time',
  1618. 'db_size',
  1619. 'threads'],
  1620. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1621. 'cpu_time',
  1622. 'db_size',
  1623. 'threads'],
  1624. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1625. 'cpu_time',
  1626. 'db_size',
  1627. 'threads'],
  1628. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1629. 'cpu_time',
  1630. 'db_size',
  1631. 'threads'],
  1632. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1633. 'cpu_time',
  1634. 'db_size',
  1635. 'threads'],
  1636. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1637. 'cpu_time',
  1638. 'db_size',
  1639. 'threads'],
  1640. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1641. 'cpu_time',
  1642. 'db_size',
  1643. 'threads'],
  1644. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1645. 'cpu_time',
  1646. 'db_size',
  1647. 'threads'],
  1648. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1649. 'cpu_time',
  1650. 'db_size',
  1651. 'threads'],
  1652. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1653. 'cpu_time',
  1654. 'db_size',
  1655. 'threads'],
  1656. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1657. 'cpu_time',
  1658. 'db_size',
  1659. 'threads'],
  1660. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1661. 'cpu_time',
  1662. 'db_size',
  1663. 'threads'],
  1664. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1665. 'cpu_time',
  1666. 'db_size',
  1667. 'threads'],
  1668. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1669. 'cpu_time',
  1670. 'db_size',
  1671. 'threads'],
  1672. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1673. 'cpu_time',
  1674. 'db_size',
  1675. 'threads'],
  1676. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  1677. 'cpu_time',
  1678. 'db_size',
  1679. 'threads'],
  1680. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1681. 'cpu_time',
  1682. 'db_size',
  1683. 'threads'],
  1684. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1685. 'cpu_time',
  1686. 'db_size',
  1687. 'threads'],
  1688. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1689. 'cpu_time',
  1690. 'db_size',
  1691. 'threads'],
  1692. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  1693. 'cpu_time',
  1694. 'db_size',
  1695. 'threads'],
  1696. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1697. 'cpu_time',
  1698. 'db_size',
  1699. 'threads'],
  1700. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1701. 'cpu_time',
  1702. 'db_size',
  1703. 'threads'],
  1704. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1705. 'cpu_time',
  1706. 'db_size',
  1707. 'threads']},
  1708. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1709. 'cpu_time',
  1710. 'threads',
  1711. 'size'],
  1712. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1713. 'cpu_time',
  1714. 'threads',
  1715. 'size'],
  1716. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1717. 'cpu_time',
  1718. 'threads',
  1719. 'size'],
  1720. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1721. 'cpu_time',
  1722. 'threads',
  1723. 'size'],
  1724. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1725. 'cpu_time',
  1726. 'threads',
  1727. 'size'],
  1728. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1729. 'cpu_time',
  1730. 'threads',
  1731. 'fp_pct'],
  1732. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1733. 'cpu_time',
  1734. 'threads',
  1735. 'fp_pct'],
  1736. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1737. 'cpu_time',
  1738. 'threads',
  1739. 'fp_pct'],
  1740. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1741. 'cpu_time',
  1742. 'threads',
  1743. 'fp_pct'],
  1744. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1745. 'cpu_time',
  1746. 'threads',
  1747. 'fp_pct'],
  1748. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1749. 'cpu_time',
  1750. 'threads'],
  1751. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1752. 'cpu_time',
  1753. 'threads'],
  1754. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1755. 'cpu_time',
  1756. 'threads']}}, slow=True, expected_runtime=88803, sl_iterations=3, regression_threshold=10)
  1757. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_3_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1758. 'cpu_time',
  1759. 'db_size',
  1760. 'neg_qu_pct',
  1761. 'threads'],
  1762. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1763. 'get_mean',
  1764. 'threads',
  1765. 'real_time',
  1766. 'cpu_time',
  1767. 'neg_qu_pct'],
  1768. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1769. 'cpu_time',
  1770. 'db_size',
  1771. 'neg_qu_pct',
  1772. 'threads'],
  1773. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1774. 'get_mean',
  1775. 'threads',
  1776. 'real_time',
  1777. 'cpu_time',
  1778. 'neg_qu_pct'],
  1779. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1780. 'cpu_time',
  1781. 'db_size',
  1782. 'neg_qu_pct',
  1783. 'threads'],
  1784. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  1785. 'get_mean',
  1786. 'threads',
  1787. 'real_time',
  1788. 'cpu_time',
  1789. 'neg_qu_pct'],
  1790. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1791. 'get_mean',
  1792. 'threads',
  1793. 'real_time',
  1794. 'cpu_time',
  1795. 'neg_qu_pct'],
  1796. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1797. 'cpu_time',
  1798. 'db_size',
  1799. 'neg_qu_pct',
  1800. 'threads'],
  1801. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1802. 'cpu_time',
  1803. 'db_size',
  1804. 'neg_qu_pct',
  1805. 'threads'],
  1806. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1807. 'get_mean',
  1808. 'threads',
  1809. 'real_time',
  1810. 'cpu_time',
  1811. 'neg_qu_pct'],
  1812. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1813. 'cpu_time',
  1814. 'db_size',
  1815. 'neg_qu_pct',
  1816. 'threads'],
  1817. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1818. 'cpu_time',
  1819. 'db_size',
  1820. 'neg_qu_pct',
  1821. 'threads'],
  1822. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  1823. 'get_mean',
  1824. 'threads',
  1825. 'real_time',
  1826. 'cpu_time',
  1827. 'neg_qu_pct'],
  1828. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1829. 'get_mean',
  1830. 'threads',
  1831. 'real_time',
  1832. 'cpu_time',
  1833. 'neg_qu_pct'],
  1834. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  1835. 'put_mean',
  1836. 'cpu_time',
  1837. 'db_size',
  1838. 'threads'],
  1839. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1840. 'cpu_time',
  1841. 'db_size',
  1842. 'threads'],
  1843. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  1844. 'cpu_time',
  1845. 'db_size',
  1846. 'threads'],
  1847. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1848. 'cpu_time',
  1849. 'db_size',
  1850. 'threads'],
  1851. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1852. 'cpu_time',
  1853. 'db_size',
  1854. 'threads'],
  1855. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1856. 'cpu_time',
  1857. 'db_size',
  1858. 'threads'],
  1859. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1860. 'cpu_time',
  1861. 'db_size',
  1862. 'threads'],
  1863. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1864. 'cpu_time',
  1865. 'db_size',
  1866. 'threads'],
  1867. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1868. 'cpu_time',
  1869. 'db_size',
  1870. 'threads'],
  1871. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1872. 'cpu_time',
  1873. 'db_size',
  1874. 'threads'],
  1875. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1876. 'cpu_time',
  1877. 'db_size',
  1878. 'threads'],
  1879. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1880. 'cpu_time',
  1881. 'db_size',
  1882. 'threads'],
  1883. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1884. 'cpu_time',
  1885. 'db_size',
  1886. 'threads'],
  1887. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1888. 'cpu_time',
  1889. 'db_size',
  1890. 'threads'],
  1891. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1892. 'cpu_time',
  1893. 'db_size',
  1894. 'threads'],
  1895. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  1896. 'cpu_time',
  1897. 'db_size',
  1898. 'threads'],
  1899. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  1900. 'cpu_time',
  1901. 'db_size',
  1902. 'threads'],
  1903. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1904. 'cpu_time',
  1905. 'db_size',
  1906. 'threads'],
  1907. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1908. 'cpu_time',
  1909. 'db_size',
  1910. 'threads'],
  1911. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  1912. 'cpu_time',
  1913. 'db_size',
  1914. 'threads'],
  1915. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1916. 'cpu_time',
  1917. 'db_size',
  1918. 'threads'],
  1919. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1920. 'cpu_time',
  1921. 'db_size',
  1922. 'threads'],
  1923. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  1924. 'cpu_time',
  1925. 'db_size',
  1926. 'threads']},
  1927. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  1928. 'cpu_time',
  1929. 'threads',
  1930. 'size'],
  1931. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1932. 'cpu_time',
  1933. 'threads',
  1934. 'size'],
  1935. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  1936. 'cpu_time',
  1937. 'threads',
  1938. 'size'],
  1939. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  1940. 'cpu_time',
  1941. 'threads',
  1942. 'size'],
  1943. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1944. 'cpu_time',
  1945. 'threads',
  1946. 'size'],
  1947. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1948. 'cpu_time',
  1949. 'threads',
  1950. 'fp_pct'],
  1951. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  1952. 'cpu_time',
  1953. 'threads',
  1954. 'fp_pct'],
  1955. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  1956. 'cpu_time',
  1957. 'threads',
  1958. 'fp_pct'],
  1959. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  1960. 'cpu_time',
  1961. 'threads',
  1962. 'fp_pct'],
  1963. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1964. 'cpu_time',
  1965. 'threads',
  1966. 'fp_pct'],
  1967. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  1968. 'cpu_time',
  1969. 'threads'],
  1970. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1971. 'cpu_time',
  1972. 'threads'],
  1973. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  1974. 'cpu_time',
  1975. 'threads']}}, slow=True, expected_runtime=88891, sl_iterations=3, regression_threshold=10)
  1976. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_4_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  1977. 'cpu_time',
  1978. 'db_size',
  1979. 'neg_qu_pct',
  1980. 'threads'],
  1981. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  1982. 'get_mean',
  1983. 'threads',
  1984. 'real_time',
  1985. 'cpu_time',
  1986. 'neg_qu_pct'],
  1987. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  1988. 'cpu_time',
  1989. 'db_size',
  1990. 'neg_qu_pct',
  1991. 'threads'],
  1992. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  1993. 'get_mean',
  1994. 'threads',
  1995. 'real_time',
  1996. 'cpu_time',
  1997. 'neg_qu_pct'],
  1998. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  1999. 'cpu_time',
  2000. 'db_size',
  2001. 'neg_qu_pct',
  2002. 'threads'],
  2003. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  2004. 'get_mean',
  2005. 'threads',
  2006. 'real_time',
  2007. 'cpu_time',
  2008. 'neg_qu_pct'],
  2009. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2010. 'get_mean',
  2011. 'threads',
  2012. 'real_time',
  2013. 'cpu_time',
  2014. 'neg_qu_pct'],
  2015. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2016. 'cpu_time',
  2017. 'db_size',
  2018. 'neg_qu_pct',
  2019. 'threads'],
  2020. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2021. 'cpu_time',
  2022. 'db_size',
  2023. 'neg_qu_pct',
  2024. 'threads'],
  2025. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2026. 'get_mean',
  2027. 'threads',
  2028. 'real_time',
  2029. 'cpu_time',
  2030. 'neg_qu_pct'],
  2031. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2032. 'cpu_time',
  2033. 'db_size',
  2034. 'neg_qu_pct',
  2035. 'threads'],
  2036. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2037. 'cpu_time',
  2038. 'db_size',
  2039. 'neg_qu_pct',
  2040. 'threads'],
  2041. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2042. 'get_mean',
  2043. 'threads',
  2044. 'real_time',
  2045. 'cpu_time',
  2046. 'neg_qu_pct'],
  2047. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2048. 'get_mean',
  2049. 'threads',
  2050. 'real_time',
  2051. 'cpu_time',
  2052. 'neg_qu_pct'],
  2053. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  2054. 'put_mean',
  2055. 'cpu_time',
  2056. 'db_size',
  2057. 'threads'],
  2058. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2059. 'cpu_time',
  2060. 'db_size',
  2061. 'threads'],
  2062. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2063. 'cpu_time',
  2064. 'db_size',
  2065. 'threads'],
  2066. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2067. 'cpu_time',
  2068. 'db_size',
  2069. 'threads'],
  2070. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2071. 'cpu_time',
  2072. 'db_size',
  2073. 'threads'],
  2074. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2075. 'cpu_time',
  2076. 'db_size',
  2077. 'threads'],
  2078. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2079. 'cpu_time',
  2080. 'db_size',
  2081. 'threads'],
  2082. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2083. 'cpu_time',
  2084. 'db_size',
  2085. 'threads'],
  2086. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2087. 'cpu_time',
  2088. 'db_size',
  2089. 'threads'],
  2090. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2091. 'cpu_time',
  2092. 'db_size',
  2093. 'threads'],
  2094. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2095. 'cpu_time',
  2096. 'db_size',
  2097. 'threads'],
  2098. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2099. 'cpu_time',
  2100. 'db_size',
  2101. 'threads'],
  2102. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2103. 'cpu_time',
  2104. 'db_size',
  2105. 'threads'],
  2106. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2107. 'cpu_time',
  2108. 'db_size',
  2109. 'threads'],
  2110. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2111. 'cpu_time',
  2112. 'db_size',
  2113. 'threads'],
  2114. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  2115. 'cpu_time',
  2116. 'db_size',
  2117. 'threads'],
  2118. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2119. 'cpu_time',
  2120. 'db_size',
  2121. 'threads'],
  2122. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2123. 'cpu_time',
  2124. 'db_size',
  2125. 'threads'],
  2126. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2127. 'cpu_time',
  2128. 'db_size',
  2129. 'threads'],
  2130. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  2131. 'cpu_time',
  2132. 'db_size',
  2133. 'threads'],
  2134. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2135. 'cpu_time',
  2136. 'db_size',
  2137. 'threads'],
  2138. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2139. 'cpu_time',
  2140. 'db_size',
  2141. 'threads'],
  2142. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2143. 'cpu_time',
  2144. 'db_size',
  2145. 'threads']},
  2146. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  2147. 'cpu_time',
  2148. 'threads',
  2149. 'size'],
  2150. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2151. 'cpu_time',
  2152. 'threads',
  2153. 'size'],
  2154. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  2155. 'cpu_time',
  2156. 'threads',
  2157. 'size'],
  2158. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  2159. 'cpu_time',
  2160. 'threads',
  2161. 'size'],
  2162. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2163. 'cpu_time',
  2164. 'threads',
  2165. 'size'],
  2166. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2167. 'cpu_time',
  2168. 'threads',
  2169. 'fp_pct'],
  2170. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  2171. 'cpu_time',
  2172. 'threads',
  2173. 'fp_pct'],
  2174. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2175. 'cpu_time',
  2176. 'threads',
  2177. 'fp_pct'],
  2178. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2179. 'cpu_time',
  2180. 'threads',
  2181. 'fp_pct'],
  2182. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2183. 'cpu_time',
  2184. 'threads',
  2185. 'fp_pct'],
  2186. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2187. 'cpu_time',
  2188. 'threads'],
  2189. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2190. 'cpu_time',
  2191. 'threads'],
  2192. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2193. 'cpu_time',
  2194. 'threads']}}, slow=True, expected_runtime=88809, sl_iterations=3, regression_threshold=10)
  2195. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_5_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2196. 'cpu_time',
  2197. 'db_size',
  2198. 'neg_qu_pct',
  2199. 'threads'],
  2200. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2201. 'get_mean',
  2202. 'threads',
  2203. 'real_time',
  2204. 'cpu_time',
  2205. 'neg_qu_pct'],
  2206. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2207. 'cpu_time',
  2208. 'db_size',
  2209. 'neg_qu_pct',
  2210. 'threads'],
  2211. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2212. 'get_mean',
  2213. 'threads',
  2214. 'real_time',
  2215. 'cpu_time',
  2216. 'neg_qu_pct'],
  2217. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2218. 'cpu_time',
  2219. 'db_size',
  2220. 'neg_qu_pct',
  2221. 'threads'],
  2222. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  2223. 'get_mean',
  2224. 'threads',
  2225. 'real_time',
  2226. 'cpu_time',
  2227. 'neg_qu_pct'],
  2228. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2229. 'get_mean',
  2230. 'threads',
  2231. 'real_time',
  2232. 'cpu_time',
  2233. 'neg_qu_pct'],
  2234. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2235. 'cpu_time',
  2236. 'db_size',
  2237. 'neg_qu_pct',
  2238. 'threads'],
  2239. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2240. 'cpu_time',
  2241. 'db_size',
  2242. 'neg_qu_pct',
  2243. 'threads'],
  2244. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2245. 'get_mean',
  2246. 'threads',
  2247. 'real_time',
  2248. 'cpu_time',
  2249. 'neg_qu_pct'],
  2250. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2251. 'cpu_time',
  2252. 'db_size',
  2253. 'neg_qu_pct',
  2254. 'threads'],
  2255. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2256. 'cpu_time',
  2257. 'db_size',
  2258. 'neg_qu_pct',
  2259. 'threads'],
  2260. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2261. 'get_mean',
  2262. 'threads',
  2263. 'real_time',
  2264. 'cpu_time',
  2265. 'neg_qu_pct'],
  2266. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2267. 'get_mean',
  2268. 'threads',
  2269. 'real_time',
  2270. 'cpu_time',
  2271. 'neg_qu_pct'],
  2272. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  2273. 'put_mean',
  2274. 'cpu_time',
  2275. 'db_size',
  2276. 'threads'],
  2277. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2278. 'cpu_time',
  2279. 'db_size',
  2280. 'threads'],
  2281. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2282. 'cpu_time',
  2283. 'db_size',
  2284. 'threads'],
  2285. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2286. 'cpu_time',
  2287. 'db_size',
  2288. 'threads'],
  2289. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2290. 'cpu_time',
  2291. 'db_size',
  2292. 'threads'],
  2293. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2294. 'cpu_time',
  2295. 'db_size',
  2296. 'threads'],
  2297. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2298. 'cpu_time',
  2299. 'db_size',
  2300. 'threads'],
  2301. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2302. 'cpu_time',
  2303. 'db_size',
  2304. 'threads'],
  2305. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2306. 'cpu_time',
  2307. 'db_size',
  2308. 'threads'],
  2309. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2310. 'cpu_time',
  2311. 'db_size',
  2312. 'threads'],
  2313. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2314. 'cpu_time',
  2315. 'db_size',
  2316. 'threads'],
  2317. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2318. 'cpu_time',
  2319. 'db_size',
  2320. 'threads'],
  2321. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2322. 'cpu_time',
  2323. 'db_size',
  2324. 'threads'],
  2325. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2326. 'cpu_time',
  2327. 'db_size',
  2328. 'threads'],
  2329. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2330. 'cpu_time',
  2331. 'db_size',
  2332. 'threads'],
  2333. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  2334. 'cpu_time',
  2335. 'db_size',
  2336. 'threads'],
  2337. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2338. 'cpu_time',
  2339. 'db_size',
  2340. 'threads'],
  2341. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2342. 'cpu_time',
  2343. 'db_size',
  2344. 'threads'],
  2345. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2346. 'cpu_time',
  2347. 'db_size',
  2348. 'threads'],
  2349. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  2350. 'cpu_time',
  2351. 'db_size',
  2352. 'threads'],
  2353. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2354. 'cpu_time',
  2355. 'db_size',
  2356. 'threads'],
  2357. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2358. 'cpu_time',
  2359. 'db_size',
  2360. 'threads'],
  2361. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2362. 'cpu_time',
  2363. 'db_size',
  2364. 'threads']},
  2365. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  2366. 'cpu_time',
  2367. 'threads',
  2368. 'size'],
  2369. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2370. 'cpu_time',
  2371. 'threads',
  2372. 'size'],
  2373. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  2374. 'cpu_time',
  2375. 'threads',
  2376. 'size'],
  2377. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  2378. 'cpu_time',
  2379. 'threads',
  2380. 'size'],
  2381. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2382. 'cpu_time',
  2383. 'threads',
  2384. 'size'],
  2385. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2386. 'cpu_time',
  2387. 'threads',
  2388. 'fp_pct'],
  2389. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  2390. 'cpu_time',
  2391. 'threads',
  2392. 'fp_pct'],
  2393. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2394. 'cpu_time',
  2395. 'threads',
  2396. 'fp_pct'],
  2397. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2398. 'cpu_time',
  2399. 'threads',
  2400. 'fp_pct'],
  2401. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2402. 'cpu_time',
  2403. 'threads',
  2404. 'fp_pct'],
  2405. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2406. 'cpu_time',
  2407. 'threads'],
  2408. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2409. 'cpu_time',
  2410. 'threads'],
  2411. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2412. 'cpu_time',
  2413. 'threads']}}, slow=True, expected_runtime=88803, sl_iterations=3, regression_threshold=10)
  2414. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_6_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2415. 'cpu_time',
  2416. 'db_size',
  2417. 'neg_qu_pct',
  2418. 'threads'],
  2419. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2420. 'get_mean',
  2421. 'threads',
  2422. 'real_time',
  2423. 'cpu_time',
  2424. 'neg_qu_pct'],
  2425. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2426. 'cpu_time',
  2427. 'db_size',
  2428. 'neg_qu_pct',
  2429. 'threads'],
  2430. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2431. 'get_mean',
  2432. 'threads',
  2433. 'real_time',
  2434. 'cpu_time',
  2435. 'neg_qu_pct'],
  2436. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2437. 'cpu_time',
  2438. 'db_size',
  2439. 'neg_qu_pct',
  2440. 'threads'],
  2441. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  2442. 'get_mean',
  2443. 'threads',
  2444. 'real_time',
  2445. 'cpu_time',
  2446. 'neg_qu_pct'],
  2447. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2448. 'get_mean',
  2449. 'threads',
  2450. 'real_time',
  2451. 'cpu_time',
  2452. 'neg_qu_pct'],
  2453. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2454. 'cpu_time',
  2455. 'db_size',
  2456. 'neg_qu_pct',
  2457. 'threads'],
  2458. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2459. 'cpu_time',
  2460. 'db_size',
  2461. 'neg_qu_pct',
  2462. 'threads'],
  2463. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2464. 'get_mean',
  2465. 'threads',
  2466. 'real_time',
  2467. 'cpu_time',
  2468. 'neg_qu_pct'],
  2469. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2470. 'cpu_time',
  2471. 'db_size',
  2472. 'neg_qu_pct',
  2473. 'threads'],
  2474. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2475. 'cpu_time',
  2476. 'db_size',
  2477. 'neg_qu_pct',
  2478. 'threads'],
  2479. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2480. 'get_mean',
  2481. 'threads',
  2482. 'real_time',
  2483. 'cpu_time',
  2484. 'neg_qu_pct'],
  2485. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2486. 'get_mean',
  2487. 'threads',
  2488. 'real_time',
  2489. 'cpu_time',
  2490. 'neg_qu_pct'],
  2491. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  2492. 'put_mean',
  2493. 'cpu_time',
  2494. 'db_size',
  2495. 'threads'],
  2496. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2497. 'cpu_time',
  2498. 'db_size',
  2499. 'threads'],
  2500. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2501. 'cpu_time',
  2502. 'db_size',
  2503. 'threads'],
  2504. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2505. 'cpu_time',
  2506. 'db_size',
  2507. 'threads'],
  2508. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2509. 'cpu_time',
  2510. 'db_size',
  2511. 'threads'],
  2512. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2513. 'cpu_time',
  2514. 'db_size',
  2515. 'threads'],
  2516. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2517. 'cpu_time',
  2518. 'db_size',
  2519. 'threads'],
  2520. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2521. 'cpu_time',
  2522. 'db_size',
  2523. 'threads'],
  2524. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2525. 'cpu_time',
  2526. 'db_size',
  2527. 'threads'],
  2528. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2529. 'cpu_time',
  2530. 'db_size',
  2531. 'threads'],
  2532. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2533. 'cpu_time',
  2534. 'db_size',
  2535. 'threads'],
  2536. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2537. 'cpu_time',
  2538. 'db_size',
  2539. 'threads'],
  2540. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2541. 'cpu_time',
  2542. 'db_size',
  2543. 'threads'],
  2544. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2545. 'cpu_time',
  2546. 'db_size',
  2547. 'threads'],
  2548. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2549. 'cpu_time',
  2550. 'db_size',
  2551. 'threads'],
  2552. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  2553. 'cpu_time',
  2554. 'db_size',
  2555. 'threads'],
  2556. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2557. 'cpu_time',
  2558. 'db_size',
  2559. 'threads'],
  2560. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2561. 'cpu_time',
  2562. 'db_size',
  2563. 'threads'],
  2564. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2565. 'cpu_time',
  2566. 'db_size',
  2567. 'threads'],
  2568. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  2569. 'cpu_time',
  2570. 'db_size',
  2571. 'threads'],
  2572. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2573. 'cpu_time',
  2574. 'db_size',
  2575. 'threads'],
  2576. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2577. 'cpu_time',
  2578. 'db_size',
  2579. 'threads'],
  2580. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2581. 'cpu_time',
  2582. 'db_size',
  2583. 'threads']},
  2584. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  2585. 'cpu_time',
  2586. 'threads',
  2587. 'size'],
  2588. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2589. 'cpu_time',
  2590. 'threads',
  2591. 'size'],
  2592. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  2593. 'cpu_time',
  2594. 'threads',
  2595. 'size'],
  2596. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  2597. 'cpu_time',
  2598. 'threads',
  2599. 'size'],
  2600. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2601. 'cpu_time',
  2602. 'threads',
  2603. 'size'],
  2604. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2605. 'cpu_time',
  2606. 'threads',
  2607. 'fp_pct'],
  2608. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  2609. 'cpu_time',
  2610. 'threads',
  2611. 'fp_pct'],
  2612. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2613. 'cpu_time',
  2614. 'threads',
  2615. 'fp_pct'],
  2616. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2617. 'cpu_time',
  2618. 'threads',
  2619. 'fp_pct'],
  2620. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2621. 'cpu_time',
  2622. 'threads',
  2623. 'fp_pct'],
  2624. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2625. 'cpu_time',
  2626. 'threads'],
  2627. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2628. 'cpu_time',
  2629. 'threads'],
  2630. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2631. 'cpu_time',
  2632. 'threads']}}, slow=True, expected_runtime=88813, sl_iterations=3, regression_threshold=10)
  2633. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_7_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2634. 'cpu_time',
  2635. 'db_size',
  2636. 'neg_qu_pct',
  2637. 'threads'],
  2638. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2639. 'get_mean',
  2640. 'threads',
  2641. 'real_time',
  2642. 'cpu_time',
  2643. 'neg_qu_pct'],
  2644. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2645. 'cpu_time',
  2646. 'db_size',
  2647. 'neg_qu_pct',
  2648. 'threads'],
  2649. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2650. 'get_mean',
  2651. 'threads',
  2652. 'real_time',
  2653. 'cpu_time',
  2654. 'neg_qu_pct'],
  2655. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2656. 'cpu_time',
  2657. 'db_size',
  2658. 'neg_qu_pct',
  2659. 'threads'],
  2660. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  2661. 'get_mean',
  2662. 'threads',
  2663. 'real_time',
  2664. 'cpu_time',
  2665. 'neg_qu_pct'],
  2666. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2667. 'get_mean',
  2668. 'threads',
  2669. 'real_time',
  2670. 'cpu_time',
  2671. 'neg_qu_pct'],
  2672. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2673. 'cpu_time',
  2674. 'db_size',
  2675. 'neg_qu_pct',
  2676. 'threads'],
  2677. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2678. 'cpu_time',
  2679. 'db_size',
  2680. 'neg_qu_pct',
  2681. 'threads'],
  2682. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2683. 'get_mean',
  2684. 'threads',
  2685. 'real_time',
  2686. 'cpu_time',
  2687. 'neg_qu_pct'],
  2688. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2689. 'cpu_time',
  2690. 'db_size',
  2691. 'neg_qu_pct',
  2692. 'threads'],
  2693. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2694. 'cpu_time',
  2695. 'db_size',
  2696. 'neg_qu_pct',
  2697. 'threads'],
  2698. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2699. 'get_mean',
  2700. 'threads',
  2701. 'real_time',
  2702. 'cpu_time',
  2703. 'neg_qu_pct'],
  2704. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2705. 'get_mean',
  2706. 'threads',
  2707. 'real_time',
  2708. 'cpu_time',
  2709. 'neg_qu_pct'],
  2710. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  2711. 'put_mean',
  2712. 'cpu_time',
  2713. 'db_size',
  2714. 'threads'],
  2715. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2716. 'cpu_time',
  2717. 'db_size',
  2718. 'threads'],
  2719. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2720. 'cpu_time',
  2721. 'db_size',
  2722. 'threads'],
  2723. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2724. 'cpu_time',
  2725. 'db_size',
  2726. 'threads'],
  2727. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2728. 'cpu_time',
  2729. 'db_size',
  2730. 'threads'],
  2731. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2732. 'cpu_time',
  2733. 'db_size',
  2734. 'threads'],
  2735. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2736. 'cpu_time',
  2737. 'db_size',
  2738. 'threads'],
  2739. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2740. 'cpu_time',
  2741. 'db_size',
  2742. 'threads'],
  2743. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2744. 'cpu_time',
  2745. 'db_size',
  2746. 'threads'],
  2747. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2748. 'cpu_time',
  2749. 'db_size',
  2750. 'threads'],
  2751. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2752. 'cpu_time',
  2753. 'db_size',
  2754. 'threads'],
  2755. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2756. 'cpu_time',
  2757. 'db_size',
  2758. 'threads'],
  2759. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2760. 'cpu_time',
  2761. 'db_size',
  2762. 'threads'],
  2763. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2764. 'cpu_time',
  2765. 'db_size',
  2766. 'threads'],
  2767. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2768. 'cpu_time',
  2769. 'db_size',
  2770. 'threads'],
  2771. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  2772. 'cpu_time',
  2773. 'db_size',
  2774. 'threads'],
  2775. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2776. 'cpu_time',
  2777. 'db_size',
  2778. 'threads'],
  2779. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2780. 'cpu_time',
  2781. 'db_size',
  2782. 'threads'],
  2783. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2784. 'cpu_time',
  2785. 'db_size',
  2786. 'threads'],
  2787. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  2788. 'cpu_time',
  2789. 'db_size',
  2790. 'threads'],
  2791. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2792. 'cpu_time',
  2793. 'db_size',
  2794. 'threads'],
  2795. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2796. 'cpu_time',
  2797. 'db_size',
  2798. 'threads'],
  2799. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  2800. 'cpu_time',
  2801. 'db_size',
  2802. 'threads']},
  2803. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  2804. 'cpu_time',
  2805. 'threads',
  2806. 'size'],
  2807. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2808. 'cpu_time',
  2809. 'threads',
  2810. 'size'],
  2811. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  2812. 'cpu_time',
  2813. 'threads',
  2814. 'size'],
  2815. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  2816. 'cpu_time',
  2817. 'threads',
  2818. 'size'],
  2819. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2820. 'cpu_time',
  2821. 'threads',
  2822. 'size'],
  2823. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2824. 'cpu_time',
  2825. 'threads',
  2826. 'fp_pct'],
  2827. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  2828. 'cpu_time',
  2829. 'threads',
  2830. 'fp_pct'],
  2831. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  2832. 'cpu_time',
  2833. 'threads',
  2834. 'fp_pct'],
  2835. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  2836. 'cpu_time',
  2837. 'threads',
  2838. 'fp_pct'],
  2839. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2840. 'cpu_time',
  2841. 'threads',
  2842. 'fp_pct'],
  2843. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  2844. 'cpu_time',
  2845. 'threads'],
  2846. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2847. 'cpu_time',
  2848. 'threads'],
  2849. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  2850. 'cpu_time',
  2851. 'threads']}}, slow=True, expected_runtime=88813, sl_iterations=3, regression_threshold=10)
  2852. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_8_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2853. 'cpu_time',
  2854. 'db_size',
  2855. 'neg_qu_pct',
  2856. 'threads'],
  2857. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2858. 'get_mean',
  2859. 'threads',
  2860. 'real_time',
  2861. 'cpu_time',
  2862. 'neg_qu_pct'],
  2863. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2864. 'cpu_time',
  2865. 'db_size',
  2866. 'neg_qu_pct',
  2867. 'threads'],
  2868. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2869. 'get_mean',
  2870. 'threads',
  2871. 'real_time',
  2872. 'cpu_time',
  2873. 'neg_qu_pct'],
  2874. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2875. 'cpu_time',
  2876. 'db_size',
  2877. 'neg_qu_pct',
  2878. 'threads'],
  2879. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  2880. 'get_mean',
  2881. 'threads',
  2882. 'real_time',
  2883. 'cpu_time',
  2884. 'neg_qu_pct'],
  2885. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2886. 'get_mean',
  2887. 'threads',
  2888. 'real_time',
  2889. 'cpu_time',
  2890. 'neg_qu_pct'],
  2891. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2892. 'cpu_time',
  2893. 'db_size',
  2894. 'neg_qu_pct',
  2895. 'threads'],
  2896. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2897. 'cpu_time',
  2898. 'db_size',
  2899. 'neg_qu_pct',
  2900. 'threads'],
  2901. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  2902. 'get_mean',
  2903. 'threads',
  2904. 'real_time',
  2905. 'cpu_time',
  2906. 'neg_qu_pct'],
  2907. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2908. 'cpu_time',
  2909. 'db_size',
  2910. 'neg_qu_pct',
  2911. 'threads'],
  2912. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2913. 'cpu_time',
  2914. 'db_size',
  2915. 'neg_qu_pct',
  2916. 'threads'],
  2917. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  2918. 'get_mean',
  2919. 'threads',
  2920. 'real_time',
  2921. 'cpu_time',
  2922. 'neg_qu_pct'],
  2923. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  2924. 'get_mean',
  2925. 'threads',
  2926. 'real_time',
  2927. 'cpu_time',
  2928. 'neg_qu_pct'],
  2929. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  2930. 'put_mean',
  2931. 'cpu_time',
  2932. 'db_size',
  2933. 'threads'],
  2934. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2935. 'cpu_time',
  2936. 'db_size',
  2937. 'threads'],
  2938. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  2939. 'cpu_time',
  2940. 'db_size',
  2941. 'threads'],
  2942. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2943. 'cpu_time',
  2944. 'db_size',
  2945. 'threads'],
  2946. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2947. 'cpu_time',
  2948. 'db_size',
  2949. 'threads'],
  2950. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2951. 'cpu_time',
  2952. 'db_size',
  2953. 'threads'],
  2954. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2955. 'cpu_time',
  2956. 'db_size',
  2957. 'threads'],
  2958. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2959. 'cpu_time',
  2960. 'db_size',
  2961. 'threads'],
  2962. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2963. 'cpu_time',
  2964. 'db_size',
  2965. 'threads'],
  2966. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2967. 'cpu_time',
  2968. 'db_size',
  2969. 'threads'],
  2970. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2971. 'cpu_time',
  2972. 'db_size',
  2973. 'threads'],
  2974. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2975. 'cpu_time',
  2976. 'db_size',
  2977. 'threads'],
  2978. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  2979. 'cpu_time',
  2980. 'db_size',
  2981. 'threads'],
  2982. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2983. 'cpu_time',
  2984. 'db_size',
  2985. 'threads'],
  2986. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  2987. 'cpu_time',
  2988. 'db_size',
  2989. 'threads'],
  2990. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  2991. 'cpu_time',
  2992. 'db_size',
  2993. 'threads'],
  2994. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  2995. 'cpu_time',
  2996. 'db_size',
  2997. 'threads'],
  2998. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  2999. 'cpu_time',
  3000. 'db_size',
  3001. 'threads'],
  3002. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3003. 'cpu_time',
  3004. 'db_size',
  3005. 'threads'],
  3006. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  3007. 'cpu_time',
  3008. 'db_size',
  3009. 'threads'],
  3010. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3011. 'cpu_time',
  3012. 'db_size',
  3013. 'threads'],
  3014. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3015. 'cpu_time',
  3016. 'db_size',
  3017. 'threads'],
  3018. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3019. 'cpu_time',
  3020. 'db_size',
  3021. 'threads']},
  3022. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  3023. 'cpu_time',
  3024. 'threads',
  3025. 'size'],
  3026. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3027. 'cpu_time',
  3028. 'threads',
  3029. 'size'],
  3030. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  3031. 'cpu_time',
  3032. 'threads',
  3033. 'size'],
  3034. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  3035. 'cpu_time',
  3036. 'threads',
  3037. 'size'],
  3038. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3039. 'cpu_time',
  3040. 'threads',
  3041. 'size'],
  3042. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3043. 'cpu_time',
  3044. 'threads',
  3045. 'fp_pct'],
  3046. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  3047. 'cpu_time',
  3048. 'threads',
  3049. 'fp_pct'],
  3050. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3051. 'cpu_time',
  3052. 'threads',
  3053. 'fp_pct'],
  3054. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3055. 'cpu_time',
  3056. 'threads',
  3057. 'fp_pct'],
  3058. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3059. 'cpu_time',
  3060. 'threads',
  3061. 'fp_pct'],
  3062. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3063. 'cpu_time',
  3064. 'threads'],
  3065. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3066. 'cpu_time',
  3067. 'threads'],
  3068. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3069. 'cpu_time',
  3070. 'threads']}}, slow=True, expected_runtime=88709, sl_iterations=3, regression_threshold=10)
  3071. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_9_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3072. 'cpu_time',
  3073. 'db_size',
  3074. 'neg_qu_pct',
  3075. 'threads'],
  3076. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3077. 'get_mean',
  3078. 'threads',
  3079. 'real_time',
  3080. 'cpu_time',
  3081. 'neg_qu_pct'],
  3082. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3083. 'cpu_time',
  3084. 'db_size',
  3085. 'neg_qu_pct',
  3086. 'threads'],
  3087. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3088. 'get_mean',
  3089. 'threads',
  3090. 'real_time',
  3091. 'cpu_time',
  3092. 'neg_qu_pct'],
  3093. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3094. 'cpu_time',
  3095. 'db_size',
  3096. 'neg_qu_pct',
  3097. 'threads'],
  3098. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  3099. 'get_mean',
  3100. 'threads',
  3101. 'real_time',
  3102. 'cpu_time',
  3103. 'neg_qu_pct'],
  3104. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3105. 'get_mean',
  3106. 'threads',
  3107. 'real_time',
  3108. 'cpu_time',
  3109. 'neg_qu_pct'],
  3110. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3111. 'cpu_time',
  3112. 'db_size',
  3113. 'neg_qu_pct',
  3114. 'threads'],
  3115. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3116. 'cpu_time',
  3117. 'db_size',
  3118. 'neg_qu_pct',
  3119. 'threads'],
  3120. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3121. 'get_mean',
  3122. 'threads',
  3123. 'real_time',
  3124. 'cpu_time',
  3125. 'neg_qu_pct'],
  3126. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3127. 'cpu_time',
  3128. 'db_size',
  3129. 'neg_qu_pct',
  3130. 'threads'],
  3131. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3132. 'cpu_time',
  3133. 'db_size',
  3134. 'neg_qu_pct',
  3135. 'threads'],
  3136. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3137. 'get_mean',
  3138. 'threads',
  3139. 'real_time',
  3140. 'cpu_time',
  3141. 'neg_qu_pct'],
  3142. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3143. 'get_mean',
  3144. 'threads',
  3145. 'real_time',
  3146. 'cpu_time',
  3147. 'neg_qu_pct'],
  3148. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  3149. 'put_mean',
  3150. 'cpu_time',
  3151. 'db_size',
  3152. 'threads'],
  3153. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3154. 'cpu_time',
  3155. 'db_size',
  3156. 'threads'],
  3157. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3158. 'cpu_time',
  3159. 'db_size',
  3160. 'threads'],
  3161. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3162. 'cpu_time',
  3163. 'db_size',
  3164. 'threads'],
  3165. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3166. 'cpu_time',
  3167. 'db_size',
  3168. 'threads'],
  3169. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3170. 'cpu_time',
  3171. 'db_size',
  3172. 'threads'],
  3173. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3174. 'cpu_time',
  3175. 'db_size',
  3176. 'threads'],
  3177. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3178. 'cpu_time',
  3179. 'db_size',
  3180. 'threads'],
  3181. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3182. 'cpu_time',
  3183. 'db_size',
  3184. 'threads'],
  3185. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3186. 'cpu_time',
  3187. 'db_size',
  3188. 'threads'],
  3189. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3190. 'cpu_time',
  3191. 'db_size',
  3192. 'threads'],
  3193. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3194. 'cpu_time',
  3195. 'db_size',
  3196. 'threads'],
  3197. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3198. 'cpu_time',
  3199. 'db_size',
  3200. 'threads'],
  3201. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3202. 'cpu_time',
  3203. 'db_size',
  3204. 'threads'],
  3205. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3206. 'cpu_time',
  3207. 'db_size',
  3208. 'threads'],
  3209. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  3210. 'cpu_time',
  3211. 'db_size',
  3212. 'threads'],
  3213. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3214. 'cpu_time',
  3215. 'db_size',
  3216. 'threads'],
  3217. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3218. 'cpu_time',
  3219. 'db_size',
  3220. 'threads'],
  3221. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3222. 'cpu_time',
  3223. 'db_size',
  3224. 'threads'],
  3225. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  3226. 'cpu_time',
  3227. 'db_size',
  3228. 'threads'],
  3229. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3230. 'cpu_time',
  3231. 'db_size',
  3232. 'threads'],
  3233. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3234. 'cpu_time',
  3235. 'db_size',
  3236. 'threads'],
  3237. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3238. 'cpu_time',
  3239. 'db_size',
  3240. 'threads']},
  3241. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  3242. 'cpu_time',
  3243. 'threads',
  3244. 'size'],
  3245. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3246. 'cpu_time',
  3247. 'threads',
  3248. 'size'],
  3249. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  3250. 'cpu_time',
  3251. 'threads',
  3252. 'size'],
  3253. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  3254. 'cpu_time',
  3255. 'threads',
  3256. 'size'],
  3257. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3258. 'cpu_time',
  3259. 'threads',
  3260. 'size'],
  3261. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3262. 'cpu_time',
  3263. 'threads',
  3264. 'fp_pct'],
  3265. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  3266. 'cpu_time',
  3267. 'threads',
  3268. 'fp_pct'],
  3269. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3270. 'cpu_time',
  3271. 'threads',
  3272. 'fp_pct'],
  3273. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3274. 'cpu_time',
  3275. 'threads',
  3276. 'fp_pct'],
  3277. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3278. 'cpu_time',
  3279. 'threads',
  3280. 'fp_pct'],
  3281. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3282. 'cpu_time',
  3283. 'threads'],
  3284. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3285. 'cpu_time',
  3286. 'threads'],
  3287. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3288. 'cpu_time',
  3289. 'threads']}}, slow=True, expected_runtime=88711, sl_iterations=3, regression_threshold=10)
  3290. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_10_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3291. 'cpu_time',
  3292. 'db_size',
  3293. 'neg_qu_pct',
  3294. 'threads'],
  3295. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3296. 'get_mean',
  3297. 'threads',
  3298. 'real_time',
  3299. 'cpu_time',
  3300. 'neg_qu_pct'],
  3301. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3302. 'cpu_time',
  3303. 'db_size',
  3304. 'neg_qu_pct',
  3305. 'threads'],
  3306. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3307. 'get_mean',
  3308. 'threads',
  3309. 'real_time',
  3310. 'cpu_time',
  3311. 'neg_qu_pct'],
  3312. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3313. 'cpu_time',
  3314. 'db_size',
  3315. 'neg_qu_pct',
  3316. 'threads'],
  3317. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  3318. 'get_mean',
  3319. 'threads',
  3320. 'real_time',
  3321. 'cpu_time',
  3322. 'neg_qu_pct'],
  3323. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3324. 'get_mean',
  3325. 'threads',
  3326. 'real_time',
  3327. 'cpu_time',
  3328. 'neg_qu_pct'],
  3329. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3330. 'cpu_time',
  3331. 'db_size',
  3332. 'neg_qu_pct',
  3333. 'threads'],
  3334. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3335. 'cpu_time',
  3336. 'db_size',
  3337. 'neg_qu_pct',
  3338. 'threads'],
  3339. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3340. 'get_mean',
  3341. 'threads',
  3342. 'real_time',
  3343. 'cpu_time',
  3344. 'neg_qu_pct'],
  3345. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3346. 'cpu_time',
  3347. 'db_size',
  3348. 'neg_qu_pct',
  3349. 'threads'],
  3350. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3351. 'cpu_time',
  3352. 'db_size',
  3353. 'neg_qu_pct',
  3354. 'threads'],
  3355. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3356. 'get_mean',
  3357. 'threads',
  3358. 'real_time',
  3359. 'cpu_time',
  3360. 'neg_qu_pct'],
  3361. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3362. 'get_mean',
  3363. 'threads',
  3364. 'real_time',
  3365. 'cpu_time',
  3366. 'neg_qu_pct'],
  3367. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  3368. 'put_mean',
  3369. 'cpu_time',
  3370. 'db_size',
  3371. 'threads'],
  3372. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3373. 'cpu_time',
  3374. 'db_size',
  3375. 'threads'],
  3376. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3377. 'cpu_time',
  3378. 'db_size',
  3379. 'threads'],
  3380. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3381. 'cpu_time',
  3382. 'db_size',
  3383. 'threads'],
  3384. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3385. 'cpu_time',
  3386. 'db_size',
  3387. 'threads'],
  3388. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3389. 'cpu_time',
  3390. 'db_size',
  3391. 'threads'],
  3392. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3393. 'cpu_time',
  3394. 'db_size',
  3395. 'threads'],
  3396. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3397. 'cpu_time',
  3398. 'db_size',
  3399. 'threads'],
  3400. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3401. 'cpu_time',
  3402. 'db_size',
  3403. 'threads'],
  3404. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3405. 'cpu_time',
  3406. 'db_size',
  3407. 'threads'],
  3408. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3409. 'cpu_time',
  3410. 'db_size',
  3411. 'threads'],
  3412. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3413. 'cpu_time',
  3414. 'db_size',
  3415. 'threads'],
  3416. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3417. 'cpu_time',
  3418. 'db_size',
  3419. 'threads'],
  3420. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3421. 'cpu_time',
  3422. 'db_size',
  3423. 'threads'],
  3424. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3425. 'cpu_time',
  3426. 'db_size',
  3427. 'threads'],
  3428. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  3429. 'cpu_time',
  3430. 'db_size',
  3431. 'threads'],
  3432. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3433. 'cpu_time',
  3434. 'db_size',
  3435. 'threads'],
  3436. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3437. 'cpu_time',
  3438. 'db_size',
  3439. 'threads'],
  3440. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3441. 'cpu_time',
  3442. 'db_size',
  3443. 'threads'],
  3444. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  3445. 'cpu_time',
  3446. 'db_size',
  3447. 'threads'],
  3448. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3449. 'cpu_time',
  3450. 'db_size',
  3451. 'threads'],
  3452. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3453. 'cpu_time',
  3454. 'db_size',
  3455. 'threads'],
  3456. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3457. 'cpu_time',
  3458. 'db_size',
  3459. 'threads']},
  3460. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  3461. 'cpu_time',
  3462. 'threads',
  3463. 'size'],
  3464. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3465. 'cpu_time',
  3466. 'threads',
  3467. 'size'],
  3468. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  3469. 'cpu_time',
  3470. 'threads',
  3471. 'size'],
  3472. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  3473. 'cpu_time',
  3474. 'threads',
  3475. 'size'],
  3476. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3477. 'cpu_time',
  3478. 'threads',
  3479. 'size'],
  3480. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3481. 'cpu_time',
  3482. 'threads',
  3483. 'fp_pct'],
  3484. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  3485. 'cpu_time',
  3486. 'threads',
  3487. 'fp_pct'],
  3488. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3489. 'cpu_time',
  3490. 'threads',
  3491. 'fp_pct'],
  3492. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3493. 'cpu_time',
  3494. 'threads',
  3495. 'fp_pct'],
  3496. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3497. 'cpu_time',
  3498. 'threads',
  3499. 'fp_pct'],
  3500. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3501. 'cpu_time',
  3502. 'threads'],
  3503. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3504. 'cpu_time',
  3505. 'threads'],
  3506. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3507. 'cpu_time',
  3508. 'threads']}}, slow=True, expected_runtime=88819, sl_iterations=3, regression_threshold=10)
  3509. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_11_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3510. 'cpu_time',
  3511. 'db_size',
  3512. 'neg_qu_pct',
  3513. 'threads'],
  3514. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3515. 'get_mean',
  3516. 'threads',
  3517. 'real_time',
  3518. 'cpu_time',
  3519. 'neg_qu_pct'],
  3520. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3521. 'cpu_time',
  3522. 'db_size',
  3523. 'neg_qu_pct',
  3524. 'threads'],
  3525. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3526. 'get_mean',
  3527. 'threads',
  3528. 'real_time',
  3529. 'cpu_time',
  3530. 'neg_qu_pct'],
  3531. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3532. 'cpu_time',
  3533. 'db_size',
  3534. 'neg_qu_pct',
  3535. 'threads'],
  3536. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  3537. 'get_mean',
  3538. 'threads',
  3539. 'real_time',
  3540. 'cpu_time',
  3541. 'neg_qu_pct'],
  3542. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3543. 'get_mean',
  3544. 'threads',
  3545. 'real_time',
  3546. 'cpu_time',
  3547. 'neg_qu_pct'],
  3548. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3549. 'cpu_time',
  3550. 'db_size',
  3551. 'neg_qu_pct',
  3552. 'threads'],
  3553. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3554. 'cpu_time',
  3555. 'db_size',
  3556. 'neg_qu_pct',
  3557. 'threads'],
  3558. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3559. 'get_mean',
  3560. 'threads',
  3561. 'real_time',
  3562. 'cpu_time',
  3563. 'neg_qu_pct'],
  3564. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3565. 'cpu_time',
  3566. 'db_size',
  3567. 'neg_qu_pct',
  3568. 'threads'],
  3569. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3570. 'cpu_time',
  3571. 'db_size',
  3572. 'neg_qu_pct',
  3573. 'threads'],
  3574. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3575. 'get_mean',
  3576. 'threads',
  3577. 'real_time',
  3578. 'cpu_time',
  3579. 'neg_qu_pct'],
  3580. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3581. 'get_mean',
  3582. 'threads',
  3583. 'real_time',
  3584. 'cpu_time',
  3585. 'neg_qu_pct'],
  3586. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  3587. 'put_mean',
  3588. 'cpu_time',
  3589. 'db_size',
  3590. 'threads'],
  3591. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3592. 'cpu_time',
  3593. 'db_size',
  3594. 'threads'],
  3595. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3596. 'cpu_time',
  3597. 'db_size',
  3598. 'threads'],
  3599. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3600. 'cpu_time',
  3601. 'db_size',
  3602. 'threads'],
  3603. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3604. 'cpu_time',
  3605. 'db_size',
  3606. 'threads'],
  3607. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3608. 'cpu_time',
  3609. 'db_size',
  3610. 'threads'],
  3611. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3612. 'cpu_time',
  3613. 'db_size',
  3614. 'threads'],
  3615. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3616. 'cpu_time',
  3617. 'db_size',
  3618. 'threads'],
  3619. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3620. 'cpu_time',
  3621. 'db_size',
  3622. 'threads'],
  3623. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3624. 'cpu_time',
  3625. 'db_size',
  3626. 'threads'],
  3627. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3628. 'cpu_time',
  3629. 'db_size',
  3630. 'threads'],
  3631. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3632. 'cpu_time',
  3633. 'db_size',
  3634. 'threads'],
  3635. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3636. 'cpu_time',
  3637. 'db_size',
  3638. 'threads'],
  3639. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3640. 'cpu_time',
  3641. 'db_size',
  3642. 'threads'],
  3643. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3644. 'cpu_time',
  3645. 'db_size',
  3646. 'threads'],
  3647. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  3648. 'cpu_time',
  3649. 'db_size',
  3650. 'threads'],
  3651. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3652. 'cpu_time',
  3653. 'db_size',
  3654. 'threads'],
  3655. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3656. 'cpu_time',
  3657. 'db_size',
  3658. 'threads'],
  3659. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3660. 'cpu_time',
  3661. 'db_size',
  3662. 'threads'],
  3663. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  3664. 'cpu_time',
  3665. 'db_size',
  3666. 'threads'],
  3667. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3668. 'cpu_time',
  3669. 'db_size',
  3670. 'threads'],
  3671. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3672. 'cpu_time',
  3673. 'db_size',
  3674. 'threads'],
  3675. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3676. 'cpu_time',
  3677. 'db_size',
  3678. 'threads']},
  3679. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  3680. 'cpu_time',
  3681. 'threads',
  3682. 'size'],
  3683. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3684. 'cpu_time',
  3685. 'threads',
  3686. 'size'],
  3687. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  3688. 'cpu_time',
  3689. 'threads',
  3690. 'size'],
  3691. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  3692. 'cpu_time',
  3693. 'threads',
  3694. 'size'],
  3695. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3696. 'cpu_time',
  3697. 'threads',
  3698. 'size'],
  3699. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3700. 'cpu_time',
  3701. 'threads',
  3702. 'fp_pct'],
  3703. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  3704. 'cpu_time',
  3705. 'threads',
  3706. 'fp_pct'],
  3707. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3708. 'cpu_time',
  3709. 'threads',
  3710. 'fp_pct'],
  3711. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3712. 'cpu_time',
  3713. 'threads',
  3714. 'fp_pct'],
  3715. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3716. 'cpu_time',
  3717. 'threads',
  3718. 'fp_pct'],
  3719. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3720. 'cpu_time',
  3721. 'threads'],
  3722. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3723. 'cpu_time',
  3724. 'threads'],
  3725. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3726. 'cpu_time',
  3727. 'threads']}}, slow=True, expected_runtime=88711, sl_iterations=3, regression_threshold=10)
  3728. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_12_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3729. 'cpu_time',
  3730. 'db_size',
  3731. 'neg_qu_pct',
  3732. 'threads'],
  3733. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3734. 'get_mean',
  3735. 'threads',
  3736. 'real_time',
  3737. 'cpu_time',
  3738. 'neg_qu_pct'],
  3739. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3740. 'cpu_time',
  3741. 'db_size',
  3742. 'neg_qu_pct',
  3743. 'threads'],
  3744. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3745. 'get_mean',
  3746. 'threads',
  3747. 'real_time',
  3748. 'cpu_time',
  3749. 'neg_qu_pct'],
  3750. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3751. 'cpu_time',
  3752. 'db_size',
  3753. 'neg_qu_pct',
  3754. 'threads'],
  3755. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  3756. 'get_mean',
  3757. 'threads',
  3758. 'real_time',
  3759. 'cpu_time',
  3760. 'neg_qu_pct'],
  3761. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3762. 'get_mean',
  3763. 'threads',
  3764. 'real_time',
  3765. 'cpu_time',
  3766. 'neg_qu_pct'],
  3767. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3768. 'cpu_time',
  3769. 'db_size',
  3770. 'neg_qu_pct',
  3771. 'threads'],
  3772. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3773. 'cpu_time',
  3774. 'db_size',
  3775. 'neg_qu_pct',
  3776. 'threads'],
  3777. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3778. 'get_mean',
  3779. 'threads',
  3780. 'real_time',
  3781. 'cpu_time',
  3782. 'neg_qu_pct'],
  3783. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3784. 'cpu_time',
  3785. 'db_size',
  3786. 'neg_qu_pct',
  3787. 'threads'],
  3788. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3789. 'cpu_time',
  3790. 'db_size',
  3791. 'neg_qu_pct',
  3792. 'threads'],
  3793. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3794. 'get_mean',
  3795. 'threads',
  3796. 'real_time',
  3797. 'cpu_time',
  3798. 'neg_qu_pct'],
  3799. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3800. 'get_mean',
  3801. 'threads',
  3802. 'real_time',
  3803. 'cpu_time',
  3804. 'neg_qu_pct'],
  3805. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  3806. 'put_mean',
  3807. 'cpu_time',
  3808. 'db_size',
  3809. 'threads'],
  3810. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3811. 'cpu_time',
  3812. 'db_size',
  3813. 'threads'],
  3814. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  3815. 'cpu_time',
  3816. 'db_size',
  3817. 'threads'],
  3818. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3819. 'cpu_time',
  3820. 'db_size',
  3821. 'threads'],
  3822. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3823. 'cpu_time',
  3824. 'db_size',
  3825. 'threads'],
  3826. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3827. 'cpu_time',
  3828. 'db_size',
  3829. 'threads'],
  3830. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3831. 'cpu_time',
  3832. 'db_size',
  3833. 'threads'],
  3834. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3835. 'cpu_time',
  3836. 'db_size',
  3837. 'threads'],
  3838. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3839. 'cpu_time',
  3840. 'db_size',
  3841. 'threads'],
  3842. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3843. 'cpu_time',
  3844. 'db_size',
  3845. 'threads'],
  3846. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3847. 'cpu_time',
  3848. 'db_size',
  3849. 'threads'],
  3850. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3851. 'cpu_time',
  3852. 'db_size',
  3853. 'threads'],
  3854. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3855. 'cpu_time',
  3856. 'db_size',
  3857. 'threads'],
  3858. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3859. 'cpu_time',
  3860. 'db_size',
  3861. 'threads'],
  3862. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3863. 'cpu_time',
  3864. 'db_size',
  3865. 'threads'],
  3866. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  3867. 'cpu_time',
  3868. 'db_size',
  3869. 'threads'],
  3870. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  3871. 'cpu_time',
  3872. 'db_size',
  3873. 'threads'],
  3874. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3875. 'cpu_time',
  3876. 'db_size',
  3877. 'threads'],
  3878. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3879. 'cpu_time',
  3880. 'db_size',
  3881. 'threads'],
  3882. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  3883. 'cpu_time',
  3884. 'db_size',
  3885. 'threads'],
  3886. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3887. 'cpu_time',
  3888. 'db_size',
  3889. 'threads'],
  3890. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3891. 'cpu_time',
  3892. 'db_size',
  3893. 'threads'],
  3894. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  3895. 'cpu_time',
  3896. 'db_size',
  3897. 'threads']},
  3898. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  3899. 'cpu_time',
  3900. 'threads',
  3901. 'size'],
  3902. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3903. 'cpu_time',
  3904. 'threads',
  3905. 'size'],
  3906. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  3907. 'cpu_time',
  3908. 'threads',
  3909. 'size'],
  3910. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  3911. 'cpu_time',
  3912. 'threads',
  3913. 'size'],
  3914. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3915. 'cpu_time',
  3916. 'threads',
  3917. 'size'],
  3918. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3919. 'cpu_time',
  3920. 'threads',
  3921. 'fp_pct'],
  3922. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  3923. 'cpu_time',
  3924. 'threads',
  3925. 'fp_pct'],
  3926. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  3927. 'cpu_time',
  3928. 'threads',
  3929. 'fp_pct'],
  3930. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  3931. 'cpu_time',
  3932. 'threads',
  3933. 'fp_pct'],
  3934. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3935. 'cpu_time',
  3936. 'threads',
  3937. 'fp_pct'],
  3938. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  3939. 'cpu_time',
  3940. 'threads'],
  3941. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3942. 'cpu_time',
  3943. 'threads'],
  3944. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  3945. 'cpu_time',
  3946. 'threads']}}, slow=True, expected_runtime=88709, sl_iterations=3, regression_threshold=10)
  3947. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_13_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  3948. 'cpu_time',
  3949. 'db_size',
  3950. 'neg_qu_pct',
  3951. 'threads'],
  3952. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  3953. 'get_mean',
  3954. 'threads',
  3955. 'real_time',
  3956. 'cpu_time',
  3957. 'neg_qu_pct'],
  3958. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3959. 'cpu_time',
  3960. 'db_size',
  3961. 'neg_qu_pct',
  3962. 'threads'],
  3963. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3964. 'get_mean',
  3965. 'threads',
  3966. 'real_time',
  3967. 'cpu_time',
  3968. 'neg_qu_pct'],
  3969. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3970. 'cpu_time',
  3971. 'db_size',
  3972. 'neg_qu_pct',
  3973. 'threads'],
  3974. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  3975. 'get_mean',
  3976. 'threads',
  3977. 'real_time',
  3978. 'cpu_time',
  3979. 'neg_qu_pct'],
  3980. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  3981. 'get_mean',
  3982. 'threads',
  3983. 'real_time',
  3984. 'cpu_time',
  3985. 'neg_qu_pct'],
  3986. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  3987. 'cpu_time',
  3988. 'db_size',
  3989. 'neg_qu_pct',
  3990. 'threads'],
  3991. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  3992. 'cpu_time',
  3993. 'db_size',
  3994. 'neg_qu_pct',
  3995. 'threads'],
  3996. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  3997. 'get_mean',
  3998. 'threads',
  3999. 'real_time',
  4000. 'cpu_time',
  4001. 'neg_qu_pct'],
  4002. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4003. 'cpu_time',
  4004. 'db_size',
  4005. 'neg_qu_pct',
  4006. 'threads'],
  4007. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4008. 'cpu_time',
  4009. 'db_size',
  4010. 'neg_qu_pct',
  4011. 'threads'],
  4012. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  4013. 'get_mean',
  4014. 'threads',
  4015. 'real_time',
  4016. 'cpu_time',
  4017. 'neg_qu_pct'],
  4018. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  4019. 'get_mean',
  4020. 'threads',
  4021. 'real_time',
  4022. 'cpu_time',
  4023. 'neg_qu_pct'],
  4024. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  4025. 'put_mean',
  4026. 'cpu_time',
  4027. 'db_size',
  4028. 'threads'],
  4029. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  4030. 'cpu_time',
  4031. 'db_size',
  4032. 'threads'],
  4033. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  4034. 'cpu_time',
  4035. 'db_size',
  4036. 'threads'],
  4037. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4038. 'cpu_time',
  4039. 'db_size',
  4040. 'threads'],
  4041. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4042. 'cpu_time',
  4043. 'db_size',
  4044. 'threads'],
  4045. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4046. 'cpu_time',
  4047. 'db_size',
  4048. 'threads'],
  4049. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4050. 'cpu_time',
  4051. 'db_size',
  4052. 'threads'],
  4053. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4054. 'cpu_time',
  4055. 'db_size',
  4056. 'threads'],
  4057. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4058. 'cpu_time',
  4059. 'db_size',
  4060. 'threads'],
  4061. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4062. 'cpu_time',
  4063. 'db_size',
  4064. 'threads'],
  4065. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4066. 'cpu_time',
  4067. 'db_size',
  4068. 'threads'],
  4069. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4070. 'cpu_time',
  4071. 'db_size',
  4072. 'threads'],
  4073. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4074. 'cpu_time',
  4075. 'db_size',
  4076. 'threads'],
  4077. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4078. 'cpu_time',
  4079. 'db_size',
  4080. 'threads'],
  4081. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4082. 'cpu_time',
  4083. 'db_size',
  4084. 'threads'],
  4085. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  4086. 'cpu_time',
  4087. 'db_size',
  4088. 'threads'],
  4089. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4090. 'cpu_time',
  4091. 'db_size',
  4092. 'threads'],
  4093. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4094. 'cpu_time',
  4095. 'db_size',
  4096. 'threads'],
  4097. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4098. 'cpu_time',
  4099. 'db_size',
  4100. 'threads'],
  4101. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  4102. 'cpu_time',
  4103. 'db_size',
  4104. 'threads'],
  4105. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4106. 'cpu_time',
  4107. 'db_size',
  4108. 'threads'],
  4109. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4110. 'cpu_time',
  4111. 'db_size',
  4112. 'threads'],
  4113. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4114. 'cpu_time',
  4115. 'db_size',
  4116. 'threads']},
  4117. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  4118. 'cpu_time',
  4119. 'threads',
  4120. 'size'],
  4121. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4122. 'cpu_time',
  4123. 'threads',
  4124. 'size'],
  4125. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  4126. 'cpu_time',
  4127. 'threads',
  4128. 'size'],
  4129. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  4130. 'cpu_time',
  4131. 'threads',
  4132. 'size'],
  4133. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  4134. 'cpu_time',
  4135. 'threads',
  4136. 'size'],
  4137. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  4138. 'cpu_time',
  4139. 'threads',
  4140. 'fp_pct'],
  4141. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  4142. 'cpu_time',
  4143. 'threads',
  4144. 'fp_pct'],
  4145. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  4146. 'cpu_time',
  4147. 'threads',
  4148. 'fp_pct'],
  4149. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  4150. 'cpu_time',
  4151. 'threads',
  4152. 'fp_pct'],
  4153. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4154. 'cpu_time',
  4155. 'threads',
  4156. 'fp_pct'],
  4157. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4158. 'cpu_time',
  4159. 'threads'],
  4160. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  4161. 'cpu_time',
  4162. 'threads'],
  4163. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  4164. 'cpu_time',
  4165. 'threads']}}, slow=True, expected_runtime=88709, sl_iterations=3, regression_threshold=10)
  4166. fancy_bench_wrapper(suite_name="rocksdb_microbench_suite_14_slow", binary_to_bench_to_metric_list_map={'db_basic_bench': {'DBGet/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4167. 'cpu_time',
  4168. 'db_size',
  4169. 'neg_qu_pct',
  4170. 'threads'],
  4171. 'DBGet/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  4172. 'get_mean',
  4173. 'threads',
  4174. 'real_time',
  4175. 'cpu_time',
  4176. 'neg_qu_pct'],
  4177. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4178. 'cpu_time',
  4179. 'db_size',
  4180. 'neg_qu_pct',
  4181. 'threads'],
  4182. 'DBGet/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  4183. 'get_mean',
  4184. 'threads',
  4185. 'real_time',
  4186. 'cpu_time',
  4187. 'neg_qu_pct'],
  4188. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4189. 'cpu_time',
  4190. 'db_size',
  4191. 'neg_qu_pct',
  4192. 'threads'],
  4193. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['db_size',
  4194. 'get_mean',
  4195. 'threads',
  4196. 'real_time',
  4197. 'cpu_time',
  4198. 'neg_qu_pct'],
  4199. 'DBGet/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  4200. 'get_mean',
  4201. 'threads',
  4202. 'real_time',
  4203. 'cpu_time',
  4204. 'neg_qu_pct'],
  4205. 'DBGet/comp_style:1/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4206. 'cpu_time',
  4207. 'db_size',
  4208. 'neg_qu_pct',
  4209. 'threads'],
  4210. 'DBGet/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4211. 'cpu_time',
  4212. 'db_size',
  4213. 'neg_qu_pct',
  4214. 'threads'],
  4215. 'DBGet/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['db_size',
  4216. 'get_mean',
  4217. 'threads',
  4218. 'real_time',
  4219. 'cpu_time',
  4220. 'neg_qu_pct'],
  4221. 'DBGet/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4222. 'cpu_time',
  4223. 'db_size',
  4224. 'neg_qu_pct',
  4225. 'threads'],
  4226. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:1/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4227. 'cpu_time',
  4228. 'db_size',
  4229. 'neg_qu_pct',
  4230. 'threads'],
  4231. 'DBGet/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['db_size',
  4232. 'get_mean',
  4233. 'threads',
  4234. 'real_time',
  4235. 'cpu_time',
  4236. 'neg_qu_pct'],
  4237. 'DBGet/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['db_size',
  4238. 'get_mean',
  4239. 'threads',
  4240. 'real_time',
  4241. 'cpu_time',
  4242. 'neg_qu_pct'],
  4243. 'DBPut/comp_style:1/max_data:107374182400/per_key_size:256/enable_statistics:1/wal:0/iterations:409600/threads:1': ['real_time',
  4244. 'put_mean',
  4245. 'cpu_time',
  4246. 'db_size',
  4247. 'threads'],
  4248. 'IteratorPrev/comp_style:1/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  4249. 'cpu_time',
  4250. 'db_size',
  4251. 'threads'],
  4252. 'IteratorPrev/comp_style:2/max_data:536870912/per_key_size:256/iterations:10240': ['real_time',
  4253. 'cpu_time',
  4254. 'db_size',
  4255. 'threads'],
  4256. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4257. 'cpu_time',
  4258. 'db_size',
  4259. 'threads'],
  4260. 'IteratorSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4261. 'cpu_time',
  4262. 'db_size',
  4263. 'threads'],
  4264. 'IteratorSeek/comp_style:0/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4265. 'cpu_time',
  4266. 'db_size',
  4267. 'threads'],
  4268. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4269. 'cpu_time',
  4270. 'db_size',
  4271. 'threads'],
  4272. 'IteratorSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4273. 'cpu_time',
  4274. 'db_size',
  4275. 'threads'],
  4276. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4277. 'cpu_time',
  4278. 'db_size',
  4279. 'threads'],
  4280. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4281. 'cpu_time',
  4282. 'db_size',
  4283. 'threads'],
  4284. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:0/negative_query:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4285. 'cpu_time',
  4286. 'db_size',
  4287. 'threads'],
  4288. 'IteratorSeek/comp_style:2/max_data:134217728/per_key_size:256/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4289. 'cpu_time',
  4290. 'db_size',
  4291. 'threads'],
  4292. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/negative_query:0/enable_filter:0/iterations:10240/threads:1': ['real_time',
  4293. 'cpu_time',
  4294. 'db_size',
  4295. 'threads'],
  4296. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:1/negative_query:1/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4297. 'cpu_time',
  4298. 'db_size',
  4299. 'threads'],
  4300. 'IteratorSeek/comp_style:2/max_data:536870912/per_key_size:256/enable_statistics:1/negative_query:0/enable_filter:1/iterations:10240/threads:1': ['real_time',
  4301. 'cpu_time',
  4302. 'db_size',
  4303. 'threads'],
  4304. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:0/iterations:10240': ['real_time',
  4305. 'cpu_time',
  4306. 'db_size',
  4307. 'threads'],
  4308. 'PrefixSeek/comp_style:0/max_data:134217728/per_key_size:256/enable_statistics:0/enable_filter:0/iterations:1280/threads:8': ['real_time',
  4309. 'cpu_time',
  4310. 'db_size',
  4311. 'threads'],
  4312. 'PrefixSeek/comp_style:0/max_data:536870912/per_key_size:256/enable_statistics:1/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4313. 'cpu_time',
  4314. 'db_size',
  4315. 'threads'],
  4316. 'PrefixSeek/comp_style:1/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4317. 'cpu_time',
  4318. 'db_size',
  4319. 'threads'],
  4320. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:1024/enable_statistics:1/enable_filter:0/iterations:10240': ['real_time',
  4321. 'cpu_time',
  4322. 'db_size',
  4323. 'threads'],
  4324. 'PrefixSeek/comp_style:1/max_data:536870912/per_key_size:256/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4325. 'cpu_time',
  4326. 'db_size',
  4327. 'threads'],
  4328. 'PrefixSeek/comp_style:2/max_data:134217728/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:1280/threads:8': ['real_time',
  4329. 'cpu_time',
  4330. 'db_size',
  4331. 'threads'],
  4332. 'PrefixSeek/comp_style:2/max_data:536870912/per_key_size:1024/enable_statistics:0/enable_filter:1/iterations:10240': ['real_time',
  4333. 'cpu_time',
  4334. 'db_size',
  4335. 'threads']},
  4336. 'ribbon_bench': {'FilterBuild/filter_impl:0/bits_per_key:20/key_len_avg:10/entry_num:1024': ['real_time',
  4337. 'cpu_time',
  4338. 'threads',
  4339. 'size'],
  4340. 'FilterBuild/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4341. 'cpu_time',
  4342. 'threads',
  4343. 'size'],
  4344. 'FilterBuild/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1048576': ['real_time',
  4345. 'cpu_time',
  4346. 'threads',
  4347. 'size'],
  4348. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:10/entry_num:1048576': ['real_time',
  4349. 'cpu_time',
  4350. 'threads',
  4351. 'size'],
  4352. 'FilterBuild/filter_impl:3/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  4353. 'cpu_time',
  4354. 'threads',
  4355. 'size'],
  4356. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  4357. 'cpu_time',
  4358. 'threads',
  4359. 'fp_pct'],
  4360. 'FilterQueryNegative/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1024': ['real_time',
  4361. 'cpu_time',
  4362. 'threads',
  4363. 'fp_pct'],
  4364. 'FilterQueryNegative/filter_impl:2/bits_per_key:10/key_len_avg:10/entry_num:1024': ['real_time',
  4365. 'cpu_time',
  4366. 'threads',
  4367. 'fp_pct'],
  4368. 'FilterQueryNegative/filter_impl:2/bits_per_key:20/key_len_avg:100/entry_num:1024': ['real_time',
  4369. 'cpu_time',
  4370. 'threads',
  4371. 'fp_pct'],
  4372. 'FilterQueryNegative/filter_impl:3/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4373. 'cpu_time',
  4374. 'threads',
  4375. 'fp_pct'],
  4376. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:10/entry_num:1048576': ['real_time',
  4377. 'cpu_time',
  4378. 'threads'],
  4379. 'FilterQueryPositive/filter_impl:0/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  4380. 'cpu_time',
  4381. 'threads'],
  4382. 'FilterQueryPositive/filter_impl:3/bits_per_key:10/key_len_avg:100/entry_num:1048576': ['real_time',
  4383. 'cpu_time',
  4384. 'threads']}}, slow=True, expected_runtime=88711, sl_iterations=3, regression_threshold=10)
  4385. # Generate a test rule for each entry in ROCKS_TESTS
  4386. # Do not build the tests in opt mode, since SyncPoint and other test code
  4387. # will not be included.
  4388. cpp_unittest_wrapper(name="agg_merge_test",
  4389. srcs=["utilities/agg_merge/agg_merge_test.cc"],
  4390. deps=[":rocksdb_test_lib"],
  4391. extra_compiler_flags=[])
  4392. cpp_unittest_wrapper(name="arena_test",
  4393. srcs=["memory/arena_test.cc"],
  4394. deps=[":rocksdb_test_lib"],
  4395. extra_compiler_flags=[])
  4396. cpp_unittest_wrapper(name="auto_roll_logger_test",
  4397. srcs=["logging/auto_roll_logger_test.cc"],
  4398. deps=[":rocksdb_test_lib"],
  4399. extra_compiler_flags=[])
  4400. cpp_unittest_wrapper(name="autovector_test",
  4401. srcs=["util/autovector_test.cc"],
  4402. deps=[":rocksdb_test_lib"],
  4403. extra_compiler_flags=[])
  4404. cpp_unittest_wrapper(name="backup_engine_test",
  4405. srcs=["utilities/backup/backup_engine_test.cc"],
  4406. deps=[":rocksdb_test_lib"],
  4407. extra_compiler_flags=[])
  4408. cpp_unittest_wrapper(name="blob_counting_iterator_test",
  4409. srcs=["db/blob/blob_counting_iterator_test.cc"],
  4410. deps=[":rocksdb_test_lib"],
  4411. extra_compiler_flags=[])
  4412. cpp_unittest_wrapper(name="blob_db_test",
  4413. srcs=["utilities/blob_db/blob_db_test.cc"],
  4414. deps=[":rocksdb_test_lib"],
  4415. extra_compiler_flags=[])
  4416. cpp_unittest_wrapper(name="blob_file_addition_test",
  4417. srcs=["db/blob/blob_file_addition_test.cc"],
  4418. deps=[":rocksdb_test_lib"],
  4419. extra_compiler_flags=[])
  4420. cpp_unittest_wrapper(name="blob_file_builder_test",
  4421. srcs=["db/blob/blob_file_builder_test.cc"],
  4422. deps=[":rocksdb_test_lib"],
  4423. extra_compiler_flags=[])
  4424. cpp_unittest_wrapper(name="blob_file_cache_test",
  4425. srcs=["db/blob/blob_file_cache_test.cc"],
  4426. deps=[":rocksdb_test_lib"],
  4427. extra_compiler_flags=[])
  4428. cpp_unittest_wrapper(name="blob_file_garbage_test",
  4429. srcs=["db/blob/blob_file_garbage_test.cc"],
  4430. deps=[":rocksdb_test_lib"],
  4431. extra_compiler_flags=[])
  4432. cpp_unittest_wrapper(name="blob_file_reader_test",
  4433. srcs=["db/blob/blob_file_reader_test.cc"],
  4434. deps=[":rocksdb_test_lib"],
  4435. extra_compiler_flags=[])
  4436. cpp_unittest_wrapper(name="blob_garbage_meter_test",
  4437. srcs=["db/blob/blob_garbage_meter_test.cc"],
  4438. deps=[":rocksdb_test_lib"],
  4439. extra_compiler_flags=[])
  4440. cpp_unittest_wrapper(name="blob_source_test",
  4441. srcs=["db/blob/blob_source_test.cc"],
  4442. deps=[":rocksdb_test_lib"],
  4443. extra_compiler_flags=[])
  4444. cpp_unittest_wrapper(name="block_based_table_reader_test",
  4445. srcs=["table/block_based/block_based_table_reader_test.cc"],
  4446. deps=[":rocksdb_test_lib"],
  4447. extra_compiler_flags=[])
  4448. cpp_unittest_wrapper(name="block_cache_trace_analyzer_test",
  4449. srcs=["tools/block_cache_analyzer/block_cache_trace_analyzer_test.cc"],
  4450. deps=[":rocksdb_test_lib"],
  4451. extra_compiler_flags=[])
  4452. cpp_unittest_wrapper(name="block_cache_tracer_test",
  4453. srcs=["trace_replay/block_cache_tracer_test.cc"],
  4454. deps=[":rocksdb_test_lib"],
  4455. extra_compiler_flags=[])
  4456. cpp_unittest_wrapper(name="block_fetcher_test",
  4457. srcs=["table/block_fetcher_test.cc"],
  4458. deps=[":rocksdb_test_lib"],
  4459. extra_compiler_flags=[])
  4460. cpp_unittest_wrapper(name="block_test",
  4461. srcs=["table/block_based/block_test.cc"],
  4462. deps=[":rocksdb_test_lib"],
  4463. extra_compiler_flags=[])
  4464. cpp_unittest_wrapper(name="bloom_test",
  4465. srcs=["util/bloom_test.cc"],
  4466. deps=[":rocksdb_test_lib"],
  4467. extra_compiler_flags=[])
  4468. cpp_unittest_wrapper(name="cache_reservation_manager_test",
  4469. srcs=["cache/cache_reservation_manager_test.cc"],
  4470. deps=[":rocksdb_test_lib"],
  4471. extra_compiler_flags=[])
  4472. cpp_unittest_wrapper(name="cache_simulator_test",
  4473. srcs=["utilities/simulator_cache/cache_simulator_test.cc"],
  4474. deps=[":rocksdb_test_lib"],
  4475. extra_compiler_flags=[])
  4476. cpp_unittest_wrapper(name="cache_test",
  4477. srcs=["cache/cache_test.cc"],
  4478. deps=[":rocksdb_test_lib"],
  4479. extra_compiler_flags=[])
  4480. cpp_unittest_wrapper(name="cassandra_format_test",
  4481. srcs=["utilities/cassandra/cassandra_format_test.cc"],
  4482. deps=[":rocksdb_test_lib"],
  4483. extra_compiler_flags=[])
  4484. cpp_unittest_wrapper(name="cassandra_functional_test",
  4485. srcs=["utilities/cassandra/cassandra_functional_test.cc"],
  4486. deps=[":rocksdb_test_lib"],
  4487. extra_compiler_flags=[])
  4488. cpp_unittest_wrapper(name="cassandra_row_merge_test",
  4489. srcs=["utilities/cassandra/cassandra_row_merge_test.cc"],
  4490. deps=[":rocksdb_test_lib"],
  4491. extra_compiler_flags=[])
  4492. cpp_unittest_wrapper(name="cassandra_serialize_test",
  4493. srcs=["utilities/cassandra/cassandra_serialize_test.cc"],
  4494. deps=[":rocksdb_test_lib"],
  4495. extra_compiler_flags=[])
  4496. cpp_unittest_wrapper(name="checkpoint_test",
  4497. srcs=["utilities/checkpoint/checkpoint_test.cc"],
  4498. deps=[":rocksdb_test_lib"],
  4499. extra_compiler_flags=[])
  4500. cpp_unittest_wrapper(name="cleanable_test",
  4501. srcs=["table/cleanable_test.cc"],
  4502. deps=[":rocksdb_test_lib"],
  4503. extra_compiler_flags=[])
  4504. cpp_unittest_wrapper(name="clipping_iterator_test",
  4505. srcs=["db/compaction/clipping_iterator_test.cc"],
  4506. deps=[":rocksdb_test_lib"],
  4507. extra_compiler_flags=[])
  4508. cpp_unittest_wrapper(name="coding_test",
  4509. srcs=["util/coding_test.cc"],
  4510. deps=[":rocksdb_test_lib"],
  4511. extra_compiler_flags=[])
  4512. cpp_unittest_wrapper(name="column_family_test",
  4513. srcs=["db/column_family_test.cc"],
  4514. deps=[":rocksdb_test_lib"],
  4515. extra_compiler_flags=[])
  4516. cpp_unittest_wrapper(name="compact_files_test",
  4517. srcs=["db/compact_files_test.cc"],
  4518. deps=[":rocksdb_test_lib"],
  4519. extra_compiler_flags=[])
  4520. cpp_unittest_wrapper(name="compact_for_tiering_collector_test",
  4521. srcs=["utilities/table_properties_collectors/compact_for_tiering_collector_test.cc"],
  4522. deps=[":rocksdb_test_lib"],
  4523. extra_compiler_flags=[])
  4524. cpp_unittest_wrapper(name="compact_on_deletion_collector_test",
  4525. srcs=["utilities/table_properties_collectors/compact_on_deletion_collector_test.cc"],
  4526. deps=[":rocksdb_test_lib"],
  4527. extra_compiler_flags=[])
  4528. cpp_unittest_wrapper(name="compaction_iterator_test",
  4529. srcs=["db/compaction/compaction_iterator_test.cc"],
  4530. deps=[":rocksdb_test_lib"],
  4531. extra_compiler_flags=[])
  4532. cpp_unittest_wrapper(name="compaction_job_stats_test",
  4533. srcs=["db/compaction/compaction_job_stats_test.cc"],
  4534. deps=[":rocksdb_test_lib"],
  4535. extra_compiler_flags=[])
  4536. cpp_unittest_wrapper(name="compaction_job_test",
  4537. srcs=["db/compaction/compaction_job_test.cc"],
  4538. deps=[":rocksdb_test_lib"],
  4539. extra_compiler_flags=[])
  4540. cpp_unittest_wrapper(name="compaction_picker_test",
  4541. srcs=["db/compaction/compaction_picker_test.cc"],
  4542. deps=[":rocksdb_test_lib"],
  4543. extra_compiler_flags=[])
  4544. cpp_unittest_wrapper(name="compaction_service_test",
  4545. srcs=["db/compaction/compaction_service_test.cc"],
  4546. deps=[":rocksdb_test_lib"],
  4547. extra_compiler_flags=[])
  4548. cpp_unittest_wrapper(name="comparator_db_test",
  4549. srcs=["db/comparator_db_test.cc"],
  4550. deps=[":rocksdb_test_lib"],
  4551. extra_compiler_flags=[])
  4552. cpp_unittest_wrapper(name="compressed_secondary_cache_test",
  4553. srcs=["cache/compressed_secondary_cache_test.cc"],
  4554. deps=[":rocksdb_test_lib"],
  4555. extra_compiler_flags=[])
  4556. cpp_unittest_wrapper(name="compression_test",
  4557. srcs=["util/compression_test.cc"],
  4558. deps=[":rocksdb_test_lib"],
  4559. extra_compiler_flags=[])
  4560. cpp_unittest_wrapper(name="configurable_test",
  4561. srcs=["options/configurable_test.cc"],
  4562. deps=[":rocksdb_test_lib"],
  4563. extra_compiler_flags=[])
  4564. cpp_unittest_wrapper(name="corruption_test",
  4565. srcs=["db/corruption_test.cc"],
  4566. deps=[":rocksdb_test_lib"],
  4567. extra_compiler_flags=[])
  4568. cpp_unittest_wrapper(name="crc32c_test",
  4569. srcs=["util/crc32c_test.cc"],
  4570. deps=[":rocksdb_test_lib"],
  4571. extra_compiler_flags=[])
  4572. cpp_unittest_wrapper(name="cuckoo_table_builder_test",
  4573. srcs=["table/cuckoo/cuckoo_table_builder_test.cc"],
  4574. deps=[":rocksdb_test_lib"],
  4575. extra_compiler_flags=[])
  4576. cpp_unittest_wrapper(name="cuckoo_table_db_test",
  4577. srcs=["db/cuckoo_table_db_test.cc"],
  4578. deps=[":rocksdb_test_lib"],
  4579. extra_compiler_flags=[])
  4580. cpp_unittest_wrapper(name="cuckoo_table_reader_test",
  4581. srcs=["table/cuckoo/cuckoo_table_reader_test.cc"],
  4582. deps=[":rocksdb_test_lib"],
  4583. extra_compiler_flags=[])
  4584. cpp_unittest_wrapper(name="customizable_test",
  4585. srcs=["options/customizable_test.cc"],
  4586. deps=[":rocksdb_test_lib"],
  4587. extra_compiler_flags=[])
  4588. cpp_unittest_wrapper(name="data_block_hash_index_test",
  4589. srcs=["table/block_based/data_block_hash_index_test.cc"],
  4590. deps=[":rocksdb_test_lib"],
  4591. extra_compiler_flags=[])
  4592. cpp_unittest_wrapper(name="db_basic_test",
  4593. srcs=["db/db_basic_test.cc"],
  4594. deps=[":rocksdb_test_lib"],
  4595. extra_compiler_flags=[])
  4596. cpp_unittest_wrapper(name="db_blob_basic_test",
  4597. srcs=["db/blob/db_blob_basic_test.cc"],
  4598. deps=[":rocksdb_test_lib"],
  4599. extra_compiler_flags=[])
  4600. cpp_unittest_wrapper(name="db_blob_compaction_test",
  4601. srcs=["db/blob/db_blob_compaction_test.cc"],
  4602. deps=[":rocksdb_test_lib"],
  4603. extra_compiler_flags=[])
  4604. cpp_unittest_wrapper(name="db_blob_corruption_test",
  4605. srcs=["db/blob/db_blob_corruption_test.cc"],
  4606. deps=[":rocksdb_test_lib"],
  4607. extra_compiler_flags=[])
  4608. cpp_unittest_wrapper(name="db_blob_index_test",
  4609. srcs=["db/blob/db_blob_index_test.cc"],
  4610. deps=[":rocksdb_test_lib"],
  4611. extra_compiler_flags=[])
  4612. cpp_unittest_wrapper(name="db_block_cache_test",
  4613. srcs=["db/db_block_cache_test.cc"],
  4614. deps=[":rocksdb_test_lib"],
  4615. extra_compiler_flags=[])
  4616. cpp_unittest_wrapper(name="db_bloom_filter_test",
  4617. srcs=["db/db_bloom_filter_test.cc"],
  4618. deps=[":rocksdb_test_lib"],
  4619. extra_compiler_flags=[])
  4620. cpp_unittest_wrapper(name="db_clip_test",
  4621. srcs=["db/db_clip_test.cc"],
  4622. deps=[":rocksdb_test_lib"],
  4623. extra_compiler_flags=[])
  4624. cpp_unittest_wrapper(name="db_compaction_filter_test",
  4625. srcs=["db/db_compaction_filter_test.cc"],
  4626. deps=[":rocksdb_test_lib"],
  4627. extra_compiler_flags=[])
  4628. cpp_unittest_wrapper(name="db_compaction_test",
  4629. srcs=["db/db_compaction_test.cc"],
  4630. deps=[":rocksdb_test_lib"],
  4631. extra_compiler_flags=[])
  4632. cpp_unittest_wrapper(name="db_dynamic_level_test",
  4633. srcs=["db/db_dynamic_level_test.cc"],
  4634. deps=[":rocksdb_test_lib"],
  4635. extra_compiler_flags=[])
  4636. cpp_unittest_wrapper(name="db_encryption_test",
  4637. srcs=["db/db_encryption_test.cc"],
  4638. deps=[":rocksdb_test_lib"],
  4639. extra_compiler_flags=[])
  4640. cpp_unittest_wrapper(name="db_flush_test",
  4641. srcs=["db/db_flush_test.cc"],
  4642. deps=[":rocksdb_test_lib"],
  4643. extra_compiler_flags=[])
  4644. cpp_unittest_wrapper(name="db_follower_test",
  4645. srcs=["db/db_follower_test.cc"],
  4646. deps=[":rocksdb_test_lib"],
  4647. extra_compiler_flags=[])
  4648. cpp_unittest_wrapper(name="db_inplace_update_test",
  4649. srcs=["db/db_inplace_update_test.cc"],
  4650. deps=[":rocksdb_test_lib"],
  4651. extra_compiler_flags=[])
  4652. cpp_unittest_wrapper(name="db_io_failure_test",
  4653. srcs=["db/db_io_failure_test.cc"],
  4654. deps=[":rocksdb_test_lib"],
  4655. extra_compiler_flags=[])
  4656. cpp_unittest_wrapper(name="db_iter_stress_test",
  4657. srcs=["db/db_iter_stress_test.cc"],
  4658. deps=[":rocksdb_test_lib"],
  4659. extra_compiler_flags=[])
  4660. cpp_unittest_wrapper(name="db_iter_test",
  4661. srcs=["db/db_iter_test.cc"],
  4662. deps=[":rocksdb_test_lib"],
  4663. extra_compiler_flags=[])
  4664. cpp_unittest_wrapper(name="db_iterator_test",
  4665. srcs=["db/db_iterator_test.cc"],
  4666. deps=[":rocksdb_test_lib"],
  4667. extra_compiler_flags=[])
  4668. cpp_unittest_wrapper(name="db_kv_checksum_test",
  4669. srcs=["db/db_kv_checksum_test.cc"],
  4670. deps=[":rocksdb_test_lib"],
  4671. extra_compiler_flags=[])
  4672. cpp_unittest_wrapper(name="db_log_iter_test",
  4673. srcs=["db/db_log_iter_test.cc"],
  4674. deps=[":rocksdb_test_lib"],
  4675. extra_compiler_flags=[])
  4676. cpp_unittest_wrapper(name="db_logical_block_size_cache_test",
  4677. srcs=["db/db_logical_block_size_cache_test.cc"],
  4678. deps=[":rocksdb_test_lib"],
  4679. extra_compiler_flags=[])
  4680. cpp_unittest_wrapper(name="db_memtable_test",
  4681. srcs=["db/db_memtable_test.cc"],
  4682. deps=[":rocksdb_test_lib"],
  4683. extra_compiler_flags=[])
  4684. cpp_unittest_wrapper(name="db_merge_operand_test",
  4685. srcs=["db/db_merge_operand_test.cc"],
  4686. deps=[":rocksdb_test_lib"],
  4687. extra_compiler_flags=[])
  4688. cpp_unittest_wrapper(name="db_merge_operator_test",
  4689. srcs=["db/db_merge_operator_test.cc"],
  4690. deps=[":rocksdb_test_lib"],
  4691. extra_compiler_flags=[])
  4692. cpp_unittest_wrapper(name="db_options_test",
  4693. srcs=["db/db_options_test.cc"],
  4694. deps=[":rocksdb_test_lib"],
  4695. extra_compiler_flags=[])
  4696. cpp_unittest_wrapper(name="db_properties_test",
  4697. srcs=["db/db_properties_test.cc"],
  4698. deps=[":rocksdb_test_lib"],
  4699. extra_compiler_flags=[])
  4700. cpp_unittest_wrapper(name="db_range_del_test",
  4701. srcs=["db/db_range_del_test.cc"],
  4702. deps=[":rocksdb_test_lib"],
  4703. extra_compiler_flags=[])
  4704. cpp_unittest_wrapper(name="db_rate_limiter_test",
  4705. srcs=["db/db_rate_limiter_test.cc"],
  4706. deps=[":rocksdb_test_lib"],
  4707. extra_compiler_flags=[])
  4708. cpp_unittest_wrapper(name="db_readonly_with_timestamp_test",
  4709. srcs=["db/db_readonly_with_timestamp_test.cc"],
  4710. deps=[":rocksdb_test_lib"],
  4711. extra_compiler_flags=[])
  4712. cpp_unittest_wrapper(name="db_secondary_test",
  4713. srcs=["db/db_secondary_test.cc"],
  4714. deps=[":rocksdb_test_lib"],
  4715. extra_compiler_flags=[])
  4716. cpp_unittest_wrapper(name="db_sst_test",
  4717. srcs=["db/db_sst_test.cc"],
  4718. deps=[":rocksdb_test_lib"],
  4719. extra_compiler_flags=[])
  4720. cpp_unittest_wrapper(name="db_statistics_test",
  4721. srcs=["db/db_statistics_test.cc"],
  4722. deps=[":rocksdb_test_lib"],
  4723. extra_compiler_flags=[])
  4724. cpp_unittest_wrapper(name="db_table_properties_test",
  4725. srcs=["db/db_table_properties_test.cc"],
  4726. deps=[":rocksdb_test_lib"],
  4727. extra_compiler_flags=[])
  4728. cpp_unittest_wrapper(name="db_tailing_iter_test",
  4729. srcs=["db/db_tailing_iter_test.cc"],
  4730. deps=[":rocksdb_test_lib"],
  4731. extra_compiler_flags=[])
  4732. cpp_unittest_wrapper(name="db_test",
  4733. srcs=["db/db_test.cc"],
  4734. deps=[":rocksdb_test_lib"],
  4735. extra_compiler_flags=[])
  4736. cpp_unittest_wrapper(name="db_test2",
  4737. srcs=["db/db_test2.cc"],
  4738. deps=[":rocksdb_test_lib"],
  4739. extra_compiler_flags=[])
  4740. cpp_unittest_wrapper(name="db_universal_compaction_test",
  4741. srcs=["db/db_universal_compaction_test.cc"],
  4742. deps=[":rocksdb_test_lib"],
  4743. extra_compiler_flags=[])
  4744. cpp_unittest_wrapper(name="db_wal_test",
  4745. srcs=["db/db_wal_test.cc"],
  4746. deps=[":rocksdb_test_lib"],
  4747. extra_compiler_flags=[])
  4748. cpp_unittest_wrapper(name="db_wide_basic_test",
  4749. srcs=["db/wide/db_wide_basic_test.cc"],
  4750. deps=[":rocksdb_test_lib"],
  4751. extra_compiler_flags=[])
  4752. cpp_unittest_wrapper(name="db_with_timestamp_basic_test",
  4753. srcs=["db/db_with_timestamp_basic_test.cc"],
  4754. deps=[":rocksdb_test_lib"],
  4755. extra_compiler_flags=[])
  4756. cpp_unittest_wrapper(name="db_with_timestamp_compaction_test",
  4757. srcs=["db/db_with_timestamp_compaction_test.cc"],
  4758. deps=[":rocksdb_test_lib"],
  4759. extra_compiler_flags=[])
  4760. cpp_unittest_wrapper(name="db_write_buffer_manager_test",
  4761. srcs=["db/db_write_buffer_manager_test.cc"],
  4762. deps=[":rocksdb_test_lib"],
  4763. extra_compiler_flags=[])
  4764. cpp_unittest_wrapper(name="db_write_test",
  4765. srcs=["db/db_write_test.cc"],
  4766. deps=[":rocksdb_test_lib"],
  4767. extra_compiler_flags=[])
  4768. cpp_unittest_wrapper(name="dbformat_test",
  4769. srcs=["db/dbformat_test.cc"],
  4770. deps=[":rocksdb_test_lib"],
  4771. extra_compiler_flags=[])
  4772. cpp_unittest_wrapper(name="defer_test",
  4773. srcs=["util/defer_test.cc"],
  4774. deps=[":rocksdb_test_lib"],
  4775. extra_compiler_flags=[])
  4776. cpp_unittest_wrapper(name="delete_scheduler_test",
  4777. srcs=["file/delete_scheduler_test.cc"],
  4778. deps=[":rocksdb_test_lib"],
  4779. extra_compiler_flags=[])
  4780. cpp_unittest_wrapper(name="deletefile_test",
  4781. srcs=["db/deletefile_test.cc"],
  4782. deps=[":rocksdb_test_lib"],
  4783. extra_compiler_flags=[])
  4784. cpp_unittest_wrapper(name="dynamic_bloom_test",
  4785. srcs=["util/dynamic_bloom_test.cc"],
  4786. deps=[":rocksdb_test_lib"],
  4787. extra_compiler_flags=[])
  4788. cpp_library_wrapper(name="env_basic_test_lib", srcs=["env/env_basic_test.cc"], deps=[":rocksdb_test_lib"], headers=[], link_whole=False, extra_test_libs=True)
  4789. cpp_unittest_wrapper(name="env_basic_test",
  4790. srcs=["env/env_basic_test.cc"],
  4791. deps=[":env_basic_test_lib"],
  4792. extra_compiler_flags=[])
  4793. cpp_unittest_wrapper(name="env_logger_test",
  4794. srcs=["logging/env_logger_test.cc"],
  4795. deps=[":rocksdb_test_lib"],
  4796. extra_compiler_flags=[])
  4797. cpp_unittest_wrapper(name="env_test",
  4798. srcs=["env/env_test.cc"],
  4799. deps=[":rocksdb_test_lib"],
  4800. extra_compiler_flags=[])
  4801. cpp_unittest_wrapper(name="env_timed_test",
  4802. srcs=["utilities/env_timed_test.cc"],
  4803. deps=[":rocksdb_test_lib"],
  4804. extra_compiler_flags=[])
  4805. cpp_unittest_wrapper(name="error_handler_fs_test",
  4806. srcs=["db/error_handler_fs_test.cc"],
  4807. deps=[":rocksdb_test_lib"],
  4808. extra_compiler_flags=[])
  4809. cpp_unittest_wrapper(name="event_logger_test",
  4810. srcs=["logging/event_logger_test.cc"],
  4811. deps=[":rocksdb_test_lib"],
  4812. extra_compiler_flags=[])
  4813. cpp_unittest_wrapper(name="external_sst_file_basic_test",
  4814. srcs=["db/external_sst_file_basic_test.cc"],
  4815. deps=[":rocksdb_test_lib"],
  4816. extra_compiler_flags=[])
  4817. cpp_unittest_wrapper(name="external_sst_file_test",
  4818. srcs=["db/external_sst_file_test.cc"],
  4819. deps=[":rocksdb_test_lib"],
  4820. extra_compiler_flags=[])
  4821. cpp_unittest_wrapper(name="faiss_ivf_index_test",
  4822. srcs=["utilities/secondary_index/faiss_ivf_index_test.cc"],
  4823. deps=[":rocksdb_with_faiss_test_lib"],
  4824. extra_compiler_flags=[])
  4825. cpp_unittest_wrapper(name="fault_injection_test",
  4826. srcs=["db/fault_injection_test.cc"],
  4827. deps=[":rocksdb_test_lib"],
  4828. extra_compiler_flags=[])
  4829. cpp_unittest_wrapper(name="file_indexer_test",
  4830. srcs=["db/file_indexer_test.cc"],
  4831. deps=[":rocksdb_test_lib"],
  4832. extra_compiler_flags=[])
  4833. cpp_unittest_wrapper(name="file_reader_writer_test",
  4834. srcs=["util/file_reader_writer_test.cc"],
  4835. deps=[":rocksdb_test_lib"],
  4836. extra_compiler_flags=[])
  4837. cpp_unittest_wrapper(name="filelock_test",
  4838. srcs=["util/filelock_test.cc"],
  4839. deps=[":rocksdb_test_lib"],
  4840. extra_compiler_flags=[])
  4841. cpp_unittest_wrapper(name="filename_test",
  4842. srcs=["db/filename_test.cc"],
  4843. deps=[":rocksdb_test_lib"],
  4844. extra_compiler_flags=[])
  4845. cpp_unittest_wrapper(name="flush_job_test",
  4846. srcs=["db/flush_job_test.cc"],
  4847. deps=[":rocksdb_test_lib"],
  4848. extra_compiler_flags=[])
  4849. cpp_unittest_wrapper(name="full_filter_block_test",
  4850. srcs=["table/block_based/full_filter_block_test.cc"],
  4851. deps=[":rocksdb_test_lib"],
  4852. extra_compiler_flags=[])
  4853. cpp_unittest_wrapper(name="hash_table_test",
  4854. srcs=["utilities/persistent_cache/hash_table_test.cc"],
  4855. deps=[":rocksdb_test_lib"],
  4856. extra_compiler_flags=[])
  4857. cpp_unittest_wrapper(name="hash_test",
  4858. srcs=["util/hash_test.cc"],
  4859. deps=[":rocksdb_test_lib"],
  4860. extra_compiler_flags=[])
  4861. cpp_unittest_wrapper(name="heap_test",
  4862. srcs=["util/heap_test.cc"],
  4863. deps=[":rocksdb_test_lib"],
  4864. extra_compiler_flags=[])
  4865. cpp_unittest_wrapper(name="histogram_test",
  4866. srcs=["monitoring/histogram_test.cc"],
  4867. deps=[":rocksdb_test_lib"],
  4868. extra_compiler_flags=[])
  4869. cpp_unittest_wrapper(name="import_column_family_test",
  4870. srcs=["db/import_column_family_test.cc"],
  4871. deps=[":rocksdb_test_lib"],
  4872. extra_compiler_flags=[])
  4873. cpp_unittest_wrapper(name="index_builder_test",
  4874. srcs=["table/block_based/index_builder_test.cc"],
  4875. deps=[":rocksdb_test_lib"],
  4876. extra_compiler_flags=[])
  4877. cpp_unittest_wrapper(name="inlineskiplist_test",
  4878. srcs=["memtable/inlineskiplist_test.cc"],
  4879. deps=[":rocksdb_test_lib"],
  4880. extra_compiler_flags=[])
  4881. cpp_unittest_wrapper(name="interval_test",
  4882. srcs=["util/interval_test.cc"],
  4883. deps=[":rocksdb_test_lib"],
  4884. extra_compiler_flags=[])
  4885. cpp_unittest_wrapper(name="io_posix_test",
  4886. srcs=["env/io_posix_test.cc"],
  4887. deps=[":rocksdb_test_lib"],
  4888. extra_compiler_flags=[])
  4889. cpp_unittest_wrapper(name="io_tracer_parser_test",
  4890. srcs=["tools/io_tracer_parser_test.cc"],
  4891. deps=[":rocksdb_test_lib"],
  4892. extra_compiler_flags=[])
  4893. cpp_unittest_wrapper(name="io_tracer_test",
  4894. srcs=["trace_replay/io_tracer_test.cc"],
  4895. deps=[":rocksdb_test_lib"],
  4896. extra_compiler_flags=[])
  4897. cpp_unittest_wrapper(name="iostats_context_test",
  4898. srcs=["monitoring/iostats_context_test.cc"],
  4899. deps=[":rocksdb_test_lib"],
  4900. extra_compiler_flags=[])
  4901. cpp_unittest_wrapper(name="ldb_cmd_test",
  4902. srcs=["tools/ldb_cmd_test.cc"],
  4903. deps=[":rocksdb_test_lib"],
  4904. extra_compiler_flags=[])
  4905. cpp_unittest_wrapper(name="listener_test",
  4906. srcs=["db/listener_test.cc"],
  4907. deps=[":rocksdb_test_lib"],
  4908. extra_compiler_flags=[])
  4909. cpp_unittest_wrapper(name="log_test",
  4910. srcs=["db/log_test.cc"],
  4911. deps=[":rocksdb_test_lib"],
  4912. extra_compiler_flags=[])
  4913. cpp_unittest_wrapper(name="lru_cache_test",
  4914. srcs=["cache/lru_cache_test.cc"],
  4915. deps=[":rocksdb_test_lib"],
  4916. extra_compiler_flags=[])
  4917. cpp_unittest_wrapper(name="manual_compaction_test",
  4918. srcs=["db/manual_compaction_test.cc"],
  4919. deps=[":rocksdb_test_lib"],
  4920. extra_compiler_flags=[])
  4921. cpp_unittest_wrapper(name="memory_allocator_test",
  4922. srcs=["memory/memory_allocator_test.cc"],
  4923. deps=[":rocksdb_test_lib"],
  4924. extra_compiler_flags=[])
  4925. cpp_unittest_wrapper(name="memory_test",
  4926. srcs=["utilities/memory/memory_test.cc"],
  4927. deps=[":rocksdb_test_lib"],
  4928. extra_compiler_flags=[])
  4929. cpp_unittest_wrapper(name="memtable_list_test",
  4930. srcs=["db/memtable_list_test.cc"],
  4931. deps=[":rocksdb_test_lib"],
  4932. extra_compiler_flags=[])
  4933. cpp_unittest_wrapper(name="merge_helper_test",
  4934. srcs=["db/merge_helper_test.cc"],
  4935. deps=[":rocksdb_test_lib"],
  4936. extra_compiler_flags=[])
  4937. cpp_unittest_wrapper(name="merge_test",
  4938. srcs=["db/merge_test.cc"],
  4939. deps=[":rocksdb_test_lib"],
  4940. extra_compiler_flags=[])
  4941. cpp_unittest_wrapper(name="merger_test",
  4942. srcs=["table/merger_test.cc"],
  4943. deps=[":rocksdb_test_lib"],
  4944. extra_compiler_flags=[])
  4945. cpp_unittest_wrapper(name="mock_env_test",
  4946. srcs=["env/mock_env_test.cc"],
  4947. deps=[":rocksdb_test_lib"],
  4948. extra_compiler_flags=[])
  4949. cpp_unittest_wrapper(name="multi_cf_iterator_test",
  4950. srcs=["db/multi_cf_iterator_test.cc"],
  4951. deps=[":rocksdb_test_lib"],
  4952. extra_compiler_flags=[])
  4953. cpp_unittest_wrapper(name="object_registry_test",
  4954. srcs=["utilities/object_registry_test.cc"],
  4955. deps=[":rocksdb_test_lib"],
  4956. extra_compiler_flags=[])
  4957. cpp_unittest_wrapper(name="obsolete_files_test",
  4958. srcs=["db/obsolete_files_test.cc"],
  4959. deps=[":rocksdb_test_lib"],
  4960. extra_compiler_flags=[])
  4961. cpp_unittest_wrapper(name="optimistic_transaction_test",
  4962. srcs=["utilities/transactions/optimistic_transaction_test.cc"],
  4963. deps=[":rocksdb_test_lib"],
  4964. extra_compiler_flags=[])
  4965. cpp_unittest_wrapper(name="option_change_migration_test",
  4966. srcs=["utilities/option_change_migration/option_change_migration_test.cc"],
  4967. deps=[":rocksdb_test_lib"],
  4968. extra_compiler_flags=[])
  4969. cpp_unittest_wrapper(name="options_file_test",
  4970. srcs=["db/options_file_test.cc"],
  4971. deps=[":rocksdb_test_lib"],
  4972. extra_compiler_flags=[])
  4973. cpp_unittest_wrapper(name="options_settable_test",
  4974. srcs=["options/options_settable_test.cc"],
  4975. deps=[":rocksdb_test_lib"],
  4976. extra_compiler_flags=[])
  4977. cpp_unittest_wrapper(name="options_test",
  4978. srcs=["options/options_test.cc"],
  4979. deps=[":rocksdb_test_lib"],
  4980. extra_compiler_flags=[])
  4981. cpp_unittest_wrapper(name="options_util_test",
  4982. srcs=["utilities/options/options_util_test.cc"],
  4983. deps=[":rocksdb_test_lib"],
  4984. extra_compiler_flags=[])
  4985. cpp_unittest_wrapper(name="partitioned_filter_block_test",
  4986. srcs=["table/block_based/partitioned_filter_block_test.cc"],
  4987. deps=[":rocksdb_test_lib"],
  4988. extra_compiler_flags=[])
  4989. cpp_unittest_wrapper(name="perf_context_test",
  4990. srcs=["db/perf_context_test.cc"],
  4991. deps=[":rocksdb_test_lib"],
  4992. extra_compiler_flags=[])
  4993. cpp_unittest_wrapper(name="periodic_task_scheduler_test",
  4994. srcs=["db/periodic_task_scheduler_test.cc"],
  4995. deps=[":rocksdb_test_lib"],
  4996. extra_compiler_flags=[])
  4997. cpp_unittest_wrapper(name="persistent_cache_test",
  4998. srcs=["utilities/persistent_cache/persistent_cache_test.cc"],
  4999. deps=[":rocksdb_test_lib"],
  5000. extra_compiler_flags=[])
  5001. cpp_unittest_wrapper(name="plain_table_db_test",
  5002. srcs=["db/plain_table_db_test.cc"],
  5003. deps=[":rocksdb_test_lib"],
  5004. extra_compiler_flags=[])
  5005. cpp_unittest_wrapper(name="point_lock_manager_stress_test",
  5006. srcs=["utilities/transactions/lock/point/point_lock_manager_stress_test.cc"],
  5007. deps=[":rocksdb_test_lib"],
  5008. extra_compiler_flags=[])
  5009. cpp_unittest_wrapper(name="point_lock_manager_test",
  5010. srcs=["utilities/transactions/lock/point/point_lock_manager_test.cc"],
  5011. deps=[":rocksdb_test_lib"],
  5012. extra_compiler_flags=[])
  5013. cpp_unittest_wrapper(name="prefetch_test",
  5014. srcs=["file/prefetch_test.cc"],
  5015. deps=[":rocksdb_test_lib"],
  5016. extra_compiler_flags=[])
  5017. cpp_unittest_wrapper(name="prefix_test",
  5018. srcs=["db/prefix_test.cc"],
  5019. deps=[":rocksdb_test_lib"],
  5020. extra_compiler_flags=[])
  5021. cpp_unittest_wrapper(name="random_access_file_reader_test",
  5022. srcs=["file/random_access_file_reader_test.cc"],
  5023. deps=[":rocksdb_test_lib"],
  5024. extra_compiler_flags=[])
  5025. cpp_unittest_wrapper(name="random_test",
  5026. srcs=["util/random_test.cc"],
  5027. deps=[":rocksdb_test_lib"],
  5028. extra_compiler_flags=[])
  5029. cpp_unittest_wrapper(name="range_del_aggregator_test",
  5030. srcs=["db/range_del_aggregator_test.cc"],
  5031. deps=[":rocksdb_test_lib"],
  5032. extra_compiler_flags=[])
  5033. cpp_unittest_wrapper(name="range_locking_test",
  5034. srcs=["utilities/transactions/lock/range/range_locking_test.cc"],
  5035. deps=[":rocksdb_test_lib"],
  5036. extra_compiler_flags=[])
  5037. cpp_unittest_wrapper(name="range_tombstone_fragmenter_test",
  5038. srcs=["db/range_tombstone_fragmenter_test.cc"],
  5039. deps=[":rocksdb_test_lib"],
  5040. extra_compiler_flags=[])
  5041. cpp_unittest_wrapper(name="rate_limiter_test",
  5042. srcs=["util/rate_limiter_test.cc"],
  5043. deps=[":rocksdb_test_lib"],
  5044. extra_compiler_flags=[])
  5045. cpp_unittest_wrapper(name="reduce_levels_test",
  5046. srcs=["tools/reduce_levels_test.cc"],
  5047. deps=[":rocksdb_test_lib"],
  5048. extra_compiler_flags=[])
  5049. cpp_unittest_wrapper(name="repair_test",
  5050. srcs=["db/repair_test.cc"],
  5051. deps=[":rocksdb_test_lib"],
  5052. extra_compiler_flags=[])
  5053. cpp_unittest_wrapper(name="repeatable_thread_test",
  5054. srcs=["util/repeatable_thread_test.cc"],
  5055. deps=[":rocksdb_test_lib"],
  5056. extra_compiler_flags=[])
  5057. cpp_unittest_wrapper(name="ribbon_test",
  5058. srcs=["util/ribbon_test.cc"],
  5059. deps=[":rocksdb_test_lib"],
  5060. extra_compiler_flags=[])
  5061. cpp_unittest_wrapper(name="seqno_time_test",
  5062. srcs=["db/seqno_time_test.cc"],
  5063. deps=[":rocksdb_test_lib"],
  5064. extra_compiler_flags=[])
  5065. cpp_unittest_wrapper(name="sim_cache_test",
  5066. srcs=["utilities/simulator_cache/sim_cache_test.cc"],
  5067. deps=[":rocksdb_test_lib"],
  5068. extra_compiler_flags=[])
  5069. cpp_unittest_wrapper(name="skiplist_test",
  5070. srcs=["memtable/skiplist_test.cc"],
  5071. deps=[":rocksdb_test_lib"],
  5072. extra_compiler_flags=[])
  5073. cpp_unittest_wrapper(name="slice_test",
  5074. srcs=["util/slice_test.cc"],
  5075. deps=[":rocksdb_test_lib"],
  5076. extra_compiler_flags=[])
  5077. cpp_unittest_wrapper(name="slice_transform_test",
  5078. srcs=["util/slice_transform_test.cc"],
  5079. deps=[":rocksdb_test_lib"],
  5080. extra_compiler_flags=[])
  5081. cpp_unittest_wrapper(name="sst_dump_test",
  5082. srcs=["tools/sst_dump_test.cc"],
  5083. deps=[":rocksdb_test_lib"],
  5084. extra_compiler_flags=[])
  5085. cpp_unittest_wrapper(name="sst_file_reader_test",
  5086. srcs=["table/sst_file_reader_test.cc"],
  5087. deps=[":rocksdb_test_lib"],
  5088. extra_compiler_flags=[])
  5089. cpp_unittest_wrapper(name="statistics_test",
  5090. srcs=["monitoring/statistics_test.cc"],
  5091. deps=[":rocksdb_test_lib"],
  5092. extra_compiler_flags=[])
  5093. cpp_unittest_wrapper(name="stats_history_test",
  5094. srcs=["monitoring/stats_history_test.cc"],
  5095. deps=[":rocksdb_test_lib"],
  5096. extra_compiler_flags=[])
  5097. cpp_unittest_wrapper(name="stringappend_test",
  5098. srcs=["utilities/merge_operators/string_append/stringappend_test.cc"],
  5099. deps=[":rocksdb_test_lib"],
  5100. extra_compiler_flags=[])
  5101. cpp_unittest_wrapper(name="table_properties_collector_test",
  5102. srcs=["db/table_properties_collector_test.cc"],
  5103. deps=[":rocksdb_test_lib"],
  5104. extra_compiler_flags=[])
  5105. cpp_unittest_wrapper(name="table_test",
  5106. srcs=["table/table_test.cc"],
  5107. deps=[":rocksdb_test_lib"],
  5108. extra_compiler_flags=[])
  5109. cpp_unittest_wrapper(name="testutil_test",
  5110. srcs=["test_util/testutil_test.cc"],
  5111. deps=[":rocksdb_test_lib"],
  5112. extra_compiler_flags=[])
  5113. cpp_unittest_wrapper(name="thread_list_test",
  5114. srcs=["util/thread_list_test.cc"],
  5115. deps=[":rocksdb_test_lib"],
  5116. extra_compiler_flags=[])
  5117. cpp_unittest_wrapper(name="thread_local_test",
  5118. srcs=["util/thread_local_test.cc"],
  5119. deps=[":rocksdb_test_lib"],
  5120. extra_compiler_flags=[])
  5121. cpp_unittest_wrapper(name="tiered_compaction_test",
  5122. srcs=["db/compaction/tiered_compaction_test.cc"],
  5123. deps=[":rocksdb_test_lib"],
  5124. extra_compiler_flags=[])
  5125. cpp_unittest_wrapper(name="tiered_secondary_cache_test",
  5126. srcs=["cache/tiered_secondary_cache_test.cc"],
  5127. deps=[":rocksdb_test_lib"],
  5128. extra_compiler_flags=[])
  5129. cpp_unittest_wrapper(name="timer_queue_test",
  5130. srcs=["util/timer_queue_test.cc"],
  5131. deps=[":rocksdb_test_lib"],
  5132. extra_compiler_flags=[])
  5133. cpp_unittest_wrapper(name="timer_test",
  5134. srcs=["util/timer_test.cc"],
  5135. deps=[":rocksdb_test_lib"],
  5136. extra_compiler_flags=[])
  5137. cpp_unittest_wrapper(name="timestamped_snapshot_test",
  5138. srcs=["utilities/transactions/timestamped_snapshot_test.cc"],
  5139. deps=[":rocksdb_test_lib"],
  5140. extra_compiler_flags=[])
  5141. cpp_unittest_wrapper(name="trace_analyzer_test",
  5142. srcs=["tools/trace_analyzer_test.cc"],
  5143. deps=[":rocksdb_test_lib"],
  5144. extra_compiler_flags=[])
  5145. cpp_unittest_wrapper(name="transaction_test",
  5146. srcs=["utilities/transactions/transaction_test.cc"],
  5147. deps=[":rocksdb_test_lib"],
  5148. extra_compiler_flags=[])
  5149. cpp_unittest_wrapper(name="ttl_test",
  5150. srcs=["utilities/ttl/ttl_test.cc"],
  5151. deps=[":rocksdb_test_lib"],
  5152. extra_compiler_flags=[])
  5153. cpp_unittest_wrapper(name="types_util_test",
  5154. srcs=["utilities/types_util_test.cc"],
  5155. deps=[":rocksdb_test_lib"],
  5156. extra_compiler_flags=[])
  5157. cpp_unittest_wrapper(name="udt_util_test",
  5158. srcs=["util/udt_util_test.cc"],
  5159. deps=[":rocksdb_test_lib"],
  5160. extra_compiler_flags=[])
  5161. cpp_unittest_wrapper(name="util_merge_operators_test",
  5162. srcs=["utilities/util_merge_operators_test.cc"],
  5163. deps=[":rocksdb_test_lib"],
  5164. extra_compiler_flags=[])
  5165. cpp_unittest_wrapper(name="version_builder_test",
  5166. srcs=["db/version_builder_test.cc"],
  5167. deps=[":rocksdb_test_lib"],
  5168. extra_compiler_flags=[])
  5169. cpp_unittest_wrapper(name="version_edit_test",
  5170. srcs=["db/version_edit_test.cc"],
  5171. deps=[":rocksdb_test_lib"],
  5172. extra_compiler_flags=[])
  5173. cpp_unittest_wrapper(name="version_set_test",
  5174. srcs=["db/version_set_test.cc"],
  5175. deps=[":rocksdb_test_lib"],
  5176. extra_compiler_flags=[])
  5177. cpp_unittest_wrapper(name="wal_manager_test",
  5178. srcs=["db/wal_manager_test.cc"],
  5179. deps=[":rocksdb_test_lib"],
  5180. extra_compiler_flags=[])
  5181. cpp_unittest_wrapper(name="wide_column_serialization_test",
  5182. srcs=["db/wide/wide_column_serialization_test.cc"],
  5183. deps=[":rocksdb_test_lib"],
  5184. extra_compiler_flags=[])
  5185. cpp_unittest_wrapper(name="wide_columns_helper_test",
  5186. srcs=["db/wide/wide_columns_helper_test.cc"],
  5187. deps=[":rocksdb_test_lib"],
  5188. extra_compiler_flags=[])
  5189. cpp_unittest_wrapper(name="work_queue_test",
  5190. srcs=["util/work_queue_test.cc"],
  5191. deps=[":rocksdb_test_lib"],
  5192. extra_compiler_flags=[])
  5193. cpp_unittest_wrapper(name="write_batch_test",
  5194. srcs=["db/write_batch_test.cc"],
  5195. deps=[":rocksdb_test_lib"],
  5196. extra_compiler_flags=[])
  5197. cpp_unittest_wrapper(name="write_batch_with_index_test",
  5198. srcs=["utilities/write_batch_with_index/write_batch_with_index_test.cc"],
  5199. deps=[":rocksdb_test_lib"],
  5200. extra_compiler_flags=[])
  5201. cpp_unittest_wrapper(name="write_buffer_manager_test",
  5202. srcs=["memtable/write_buffer_manager_test.cc"],
  5203. deps=[":rocksdb_test_lib"],
  5204. extra_compiler_flags=[])
  5205. cpp_unittest_wrapper(name="write_callback_test",
  5206. srcs=["db/write_callback_test.cc"],
  5207. deps=[":rocksdb_test_lib"],
  5208. extra_compiler_flags=[])
  5209. cpp_unittest_wrapper(name="write_committed_transaction_ts_test",
  5210. srcs=["utilities/transactions/write_committed_transaction_ts_test.cc"],
  5211. deps=[":rocksdb_test_lib"],
  5212. extra_compiler_flags=[])
  5213. cpp_unittest_wrapper(name="write_controller_test",
  5214. srcs=["db/write_controller_test.cc"],
  5215. deps=[":rocksdb_test_lib"],
  5216. extra_compiler_flags=[])
  5217. cpp_unittest_wrapper(name="write_prepared_transaction_test",
  5218. srcs=["utilities/transactions/write_prepared_transaction_test.cc"],
  5219. deps=[":rocksdb_test_lib"],
  5220. extra_compiler_flags=[])
  5221. cpp_unittest_wrapper(name="write_unprepared_transaction_test",
  5222. srcs=["utilities/transactions/write_unprepared_transaction_test.cc"],
  5223. deps=[":rocksdb_test_lib"],
  5224. extra_compiler_flags=[])
  5225. export_file(name = "tools/db_crashtest.py")