Mon.Apr 03, 2023

article thumbnail

Creating Scalable OpenAI GPT Applications in Java

DZone

One of the more notable aspects of ChatGPT is its engine, which not only powers the web-based chatbot but can also be integrated into your Java applications.

Java 357
article thumbnail

Tech Transforms podcast: Navigating complex cloud environments and improving efficiency

Dynatrace

On Episode 52 of the Tech Transforms podcast, Dimitris Perdikou, head of engineering at the UK Home Office , Migration and Borders, joins Carolyn Ford and Mark Senell to discuss the innovative undertakings of one of the largest and most successful cloud platforms in the UK. With the platform hosting more than 3,000 technical users and millions of end users, Dimitris sheds light on his experience with site reliability engineering (SRE), user experience, and service monitoring.

Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Interview on CppCast

Sutter's Mill

A few days ago I recorded CppCast episode 357. Thanks to Timur Doumler and Phil Nash for inviting me on their show – and for continuing CppCast, which was so wonderfully founded by Rob Irving and Jason Turner ! This time, we chatted about news in the C++ world, and then about my Cpp2 and cppfront experimental work. The podcast doesn’t seem to have chapters, but here are a few of my own notes about sections of interest: 00:00 Intro 04:30 News: LLVM 16.0.0, “C++ Initialisation” book, new user grou

C++ 86
article thumbnail

Lost messages are just as bad as lost luggage

Particular Software

You’re standing in the airport, waiting to pick up your bag. Did you ever stop to think about all the software systems involved in tracking your luggage on your journey? From the moment you drop it off at your departure airport to the moment you breathe that sigh of relief as it shows up on the baggage carousel is a complex story of messaging and system integrations.

article thumbnail

PostgreSQL Upgrade: Tricks With OID Columns and Extensions

Percona

We are all aware that PostgreSQL 10 has reached end of support , and there is a need to upgrade to the latest version or any application-compatible PG version. Below are some of the upgrade options available to upgrade to PG11 or above. Pg_dump and pg_restore: We can refer to PostgreSQL Upgrade Using pg_dump/pg_restore on dump/restore methods. Using Logical Method: We can refer to Replication Between PostgreSQL Versions Using Logical Replication on upgrading using a logical replication method.

C++ 107
article thumbnail

MongoDB: How To Convert BSON Documents to a Human-readable Format

Percona

Binary Javascript Object Notation (BSON) is a bin­ary-en­coded seri­al­iz­a­tion of JSON documents. JSON is easier to understand as it is human-readable, but compared to BSON, it supports fewer data types. BSON has been extended to add some optional non-JSON-native data types, like dates and binary data. MongoDB stores data in BSON format both internally and over the network.

Database 104
article thumbnail

Dealing With Chunks That “Lost Weight” in MongoDB

Percona

The life of a jumbo chunk MongoDB marks a chunk as “jumbo” when it grows past the configured maximum chunk size. This value defaults to 128 MB since MongoDB 6.0 (it used to be 64 MB before). The most common reason for jumbo chunks to appear is when the auto-splitter process cannot find a way to split a chunk. This can happen, for example, when all documents in the chunk contain the same shard key.