SlideShare uma empresa Scribd logo
1 de 48
Baixar para ler offline
Dependency managers
“a dependency manager automates the process of
using and upgrading software libraries in a
consistent manner.”
Finds the libraries you need, based on the libraries you want
A note on dependency
management
It does not have any intrinsic value
But saves some time/effort
It is not interesting (boring)
But sometime takes time (especially debugging)
Useful because it shares a decision you made
ʹI want lib A version 2ʹ
We should update our libraries more often!
So it should be easy to do
Dependency managmenet
‑ the afghan war of the JVM?
Introducing Adept
“a person who is skilled or proficient at
something.”
A dependency manager
Reliable
Fast
Knows what works with what
Only a dependency manager, nothing else
Platform independent
State = identity(time,value)
Identity: the library and the artifacts to be used (jars in junit,
spring, ...)
Value: the version to use (4.11, 3.2.5, ...)
Time: the library as it is ʹright nowʹ (lib A 5.0‑SNAPSHOT
today VS tomorrow)
State: the version of a library at a given time
Reliability
Same result every time
On the JVM, dependency managers are sort of reliable
Will state (the versions of the libraries at any given time)
never change?
Versioned meta‑data
Meta‑data: defines the data (dependencies, names, ...)
We want:
Immutable meta‑data
That is easy to change
Atomically change the entire meta‑data
In other words: Git
Distributed repositories
Download all meta‑data for each repository
Benefits
You are in control of changes (pull)
You can go back in time (checkout)
Speed
Git is supringsly good at compressing
Maven central: 150 mbs of compressed data (once)
No round trips to fetch meta‑data
No ʹinvalidʹ meta‑data cache
Parellel download of artifacts
Artifacts and meta‑data
Artifacts: represents the actual files used (jars)
When you want some libraries...
..the dependency manager looks up the meta‑data
Dependency manager finds the libraries you need...
...based on the meta‑data
The artifacts you must download are therefore...
...defined in the meta‑data ‑ RIGHT?
Artifacts ‑ mark 1
WRONG: Choosing a library in Ivy/Maven
Means a new lookup to some repository (or cache)
Artifact = file that matches the same repository pattern (or
cache)
Artifacts that can be chosen are:
The ones supposed to be used based on some repository
meta‑data
The ones that happens to cached
A new artifact, but using cached meta‑data
A cached artifact, but using new meta‑data
Artifacts ‑ mark 2
Cleanly seperated from meta‑data and repository
Meta‑data points to the SHA‑256s
Artifact lookup files: SHA‑256 and locations
This means:
New artifact means new meta‑data
New meta‑data can safely use new/old artifact
Benfits:
You are sure you got the right one
Easy to reason about
Very easy to cache
Secure
Speed
When I say ʹa8dac15ʹ...
... I do not care where it comes from
Means I can:
Use url to download jar from file server (nothing new)
Check cache if jar is in the cache (nothting new)
Use different urls to download the same jar (in pieces)
Use bittorrent to download one jar
Use bittorrent to download many jars
...
State & Adept
Summary:
You ask for the commit hash of...
The repositories you need...
And the libraries you require
Which points a stable set of SHA‑256
No changes in state:
For a given input, same artifacts every time
QED: Adept is reliable
So...
{Performance, reliabilty} does it really matter?
Why hasnʹt this been fixed before?
A killer feature?
Compatibility matrix
Dependencies maps to a compatibility matrix
Ivy/Maven
Automatically resolves to the ʹhighestʹ/ʹlatestʹ/... version
Compatiblity is not factored in
There is no... matrix
Users must know how libraries work together:
Must specify version(s) (ranges) on how libraries are
compatible
Override/exclude if there is a problem
Programs are good at this
Dos not communicate intent
Authors declares how their
libraries are compatible
Example: sbt plugins
Imagine if sbt:
In addition to ʹversionʹ (0.12.0, 0.12.1, ...)
Defines an extra attribute: ʹbinary‑versionʹ (0.12, ...)
A plugin (e.g. sbteclipse) that requires sbt specifies the
ʹbinary‑versionʹ
stcis vrin10rqie stbnr-eso 01
belpe eso . eurs b iayvrin .2
stcis vrin11rqie stbnr-eso 01
belpe eso . eurs b iayvrin .2
stcis vrin20rqie stbnr-eso 01
belpe eso . eurs b iayvrin .3

The user/build tool:
I use/am sbt 0.12.0, what are the sbteclipse versions I can
use
(Then chose the ʹbestʹ version)
Attributes
Adept allows resolution based on:
version
binary‑version
But also:
Snapshot/prerelease
QA department ʹseal of approvalʹ
...
Any attribute is a first‑class citizen
Adept values
Ivy/Maven: ʹversionʹ is the ʹvalueʹ of the library
Adept: ʹversionʹ is a common attribute
Variant == value in Adept
Example:
sbt { version 0.12.0, binary‑version 0.12, qa‑tested false }
sbt { version 0.12.0, binary‑version 0.12, qa‑tested true }
Variants
Id

com.typesafe.play/play
Artifacts
Attributes
ʹversion = 2.2.0ʹ
ʹbinary‑version = 2.2ʹ
...
Dependencies
Id
com.typesafe.akka/akka‑actors
Constraints
ʹbinary‑version = 2.2ʹ
...
Adept resolution
3 states
Resolved (only one variant for each library)
Under‑constrained (too many variants)
Over‑constrained (conflicts, or non‑existing Id)
Naive algorithm
Grab Ids of dependencies ...
...and all constraints for Id
...for each resolved: repeat...
Resolved
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: play 2.2.1 + akka 2.2.0 + scala‑library 2.10.3
Over‑constrained
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: play 2.2.1 + akka 2.2.0 + scala‑library 2.9.3
Or: foobar 2.2.1 + akka 2.2.0 + scala‑library 2.10.3
Under‑constrained???
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka223 saa21}
ly .. eed n ak .., cl .0
!!^!!
!
!

Dependencies: akka 2.2.3 + scala‑library 2.10.3 + play (any
version)
Resolves: there is only exactly one possible play version: 2.2.1
Under‑constrained
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: akka 2.2.1 + play 2.2.1 + any 2.10 scala‑library?
Or: akka 2.2.1 + scala‑library 2.10.3 + any 2.2 play?
Architecture: Extensions
Adept does not do much!
Ideal: I declare only binary‑versions and commit,
Build tools gives me the ʹhighestʹ versions compatible
Build tools needs Adept + some extensions
Small core = minimal changes
Different extensions, but consistent resolution
Extensions:
Conventions/attribute names and meaning
Version, binary‑version
Version ordering
Overrides
Exclusions
Imports (Ivy/Maven/...)
...
Overrides/exclusions
Need to resolve ʹbenignʹ conflicts 
(Versions differ, but not binary‑versions)
Creates a new variant with:
Different dependencies
Unique ʹoverridesʹ/ʹexcludesʹ attributes
The social dependency manager?
I can figure how my library is used
Other usecases
Snapshots #1

Use ʹprereleaseʹ/ʹsnapshotʹ/... attribute
Overwrite variant + commit new version
Update meta‑data = new snapshot
Flexible ...
...but you know exactly which artifact/meta‑data that was
used
Other usecases
Snapshots #2

CI & nightlies:
We know which version we used:
Safely update metadata after passing tests
User use same constraints (even when stable is released)
But build tool can give warning
No SNAPSHOTs after a release, and...
...no failures because a ʹversionʹ has been removed
Where are we
at?
What works
Resolution
ʹEqualityʹ constraint
binary‑version 1.0 == 1.0
Extensions:
Overrides, excludes
Version ordering
Ivy imports
Tests (test framework)
Help!
Final design!
Now is the time to set things straight
Handle libraries that defines the same interface
Attribute types & comparable constraints? (types, !=, >, <, ...)
Meta‑data is not (de)serialized
Artifacts files are not (de)serialized
More tests/use cases
Help!!
Git is not implemented
No CLI (useful for testing)
No built tool plugins (we need: sbt, gradle, SBuild, ant,
maven?)
Resolution is concise (but could even more concise?)
Resolution is fast (but could be faster?)
In other words:

We NEED you!
Exciting stuff because

We can get it right this
time!
But...

We have to build a new
ecosystem :(
Adepthub
Ideal workflow
1.  Figure the library you want
2.  Choose only version(s) you want to be compatible with
3.  Repeat
Adepthub #1
Online resolution using Adept
Hosts meta‑data
Workflow:
1.  Go to adepthub.com
2.  Search and add new (compatible) libraries
3.  Save (creates a perma link)
4.  User/plugin/build tool downloads one file with:
Perma link, if you want to update
Locations (urls) and some human readable meta‑data
for all artifacts
Adepthub benefits
For you:
Uses Adept and hosts Adept repositories
Search across all repositories using:
Keywords on Id
Project info: github url, author, company, ...
No need to download meta‑data
However, it is possible to do it if you want
Import (meta‑data enhancement)
Resolution is done online...
...but can be consumed by maven, ivy, ...
= no plugins required
Adepthub benefits
For library authors:
Easy to publish
Github interface
Public & private repositories
Can have nice stats:
Who is using version X anyways? Now we know!
Trophies: show your awesomeness
For me:
Easier to build plugins
Read file + download artifacts
Launches:
When it is done, hopefully February/March
Feedback
Is search.maven.org good enough?
Please show support by signing up for beta:
http://adepthub.com/#beta
Interested?
https://github.com/adept‑dm/adept 
(README links to: mailing list/spec)
Thanks
freekh+adept ʹatʹ gmail.com
@ekhfre

Mais conteúdo relacionado

Mais de Skills Matter

Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applicationsSkills Matter
 
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Skills Matter
 
Cukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsCukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsSkills Matter
 
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Skills Matter
 
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Skills Matter
 
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldProgressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldSkills Matter
 
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Skills Matter
 
Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Skills Matter
 
A poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingA poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingSkills Matter
 
Russ miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveRuss miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveSkills Matter
 
Simon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSimon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSkills Matter
 
I went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tI went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tSkills Matter
 
Bootstrapping a-devops-matter
Bootstrapping a-devops-matterBootstrapping a-devops-matter
Bootstrapping a-devops-matterSkills Matter
 
Personal kanban-workshop
Personal kanban-workshopPersonal kanban-workshop
Personal kanban-workshopSkills Matter
 
Agilex retrospectives
Agilex retrospectivesAgilex retrospectives
Agilex retrospectivesSkills Matter
 

Mais de Skills Matter (20)

Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applications
 
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
 
Cukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsCukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.js
 
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
 
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
 
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldProgressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source world
 
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
 
Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#
 
A poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingA poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testing
 
Russ miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveRuss miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-dive
 
Serendipity-neo4j
Serendipity-neo4jSerendipity-neo4j
Serendipity-neo4j
 
Simon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSimon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelism
 
Plug 20110217
Plug   20110217Plug   20110217
Plug 20110217
 
Lug presentation
Lug presentationLug presentation
Lug presentation
 
I went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tI went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_t
 
Plug saiku
Plug   saikuPlug   saiku
Plug saiku
 
Huguk lily
Huguk lilyHuguk lily
Huguk lily
 
Bootstrapping a-devops-matter
Bootstrapping a-devops-matterBootstrapping a-devops-matter
Bootstrapping a-devops-matter
 
Personal kanban-workshop
Personal kanban-workshopPersonal kanban-workshop
Personal kanban-workshop
 
Agilex retrospectives
Agilex retrospectivesAgilex retrospectives
Agilex retrospectives
 

Último

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 

Último (20)

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 

Scala e xchange. fredik ekholdt. introducing adept