-
May 30, 2024 |
datastax.com | Aaron Ploetz
While many large enterprises have made use of managed databases, several still have significant workloads being served by self-managed solutions (both on-premises and in the cloud) like DataStax Enterprise (DSE) and Apache Cassandra®. Although a significant amount of those workloads will eventually be migrated to managed database services, there are reasons that many of them will stay in a self-managed paradigm.
-
Apr 25, 2024 |
datastax.com | Aaron Ploetz
-
Nov 28, 2023 |
datastax.com | Aaron Ploetz
Technology•November 28, 2023Why You Can't Miss Cassandra SummitClear your calendars for Cassandra Summit and the AI.dev Open Source GenAI & ML Summit Dec. 12 and Dec. 13 in San Jose, Calif.!Aaron PloetzDeveloper Relations, DataStax
-
Oct 31, 2023 |
datastax.com | Aaron Ploetz
from fastapi import FastAPIfrom langserve import add_routesfrom cassandra_entomology_rag import chain as cassandra_entomology_rag_chainapp = FastAPI()add_routes(app, cassandra_entomology_rag_chain, path="/cassandra-entomology-rag")if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=8000)
-
Sep 25, 2023 |
dzone.com | Aaron Ploetz
Vectors and vector search are key components of large language models (LLMs), but they are useful in a host of other applications across many use cases that you might not have considered. How about the most efficient way to deliver retail goods?
-
Sep 21, 2023 |
dzone.com | Aaron Ploetz
With all the buzz about large language models, vectors, and vector search, it's important to take a step back and understand how these artificial intelligence technology advancements translate into results for an organization and, ultimately, its customers. The ProblemToday, we met with the Promotions team. They’re looking for our help in making some smarter decisions about customer advertisements, offers, and coupons. Right now, promotions are mainly based on geographic markets.
-
Sep 5, 2023 |
dzone.com | Aaron Ploetz
The journey to implementing artificial intelligence and machine learning solutions requires solving a lot of common challenges that routinely crop up in digital systems: updating legacy systems, eliminating batch processes, and using innovative technologies that are grounded in AI/ML to improve the customer experience in ways that seemed like science fiction just a few years ago.
-
Aug 11, 2023 |
thenewstack.io | Aaron Ploetz |David Eastman |William Bakst |Alexander Williams
Vectors and vector search are key components of large language models (LLMs), but they are useful in a host of other applications across many use cases that you might not have considered. How about the most efficient way to deliver retail goods? The ProblemWhile we were looking at our options for scaling-down (and ultimately disabling) the recommendation batch job from the first story in this series, we were invited to a meeting with the Transportation Services team.
-
Aug 8, 2023 |
thenewstack.io | Amanda Mitchell |Hannah Culver |Chris Preimesberger |Aaron Ploetz
Will Elon Musk actually destroy Twitter? CSAM poster re-instatement, “absolute free speech,” talent-gutting, massive advertiser exodus … What does it take to kill the bird? Yup. He borked it into a death spiral the instant he signed on as CEO. Essentially, yes. It’ll take a while to descend into its radioactive Xesspool destiny, but it’s inevitable it will join the ranks of 4chan, 8chan, Nchan, Xchan … Please yes, and quickly. I’m just done with all this stupid drama over this stupid little app.
-
Aug 5, 2023 |
thenewstack.io | Jack Wallen |Hannah Culver |Chris Preimesberger |Aaron Ploetz
The Docker Desktop has a number of cool features aimed at making container development more efficient and easier. One such feature is called Dev Environments (still in beta), which allows you to create a configurable development environment using a locally deployed, self-contained container and simplifies the process of sharing code and dependencies with a team and even switching between branches.